This documentation is automatically generated by online-judge-tools/verification-helper
// ** 315
// digital clock, horizontal -> vertical
const int DIGIT[10][7] = {{1, 0, 1, 1, 1, 1, 1}, {0, 0, 0, 0, 1, 0, 1},
{1, 1, 1, 0, 1, 1, 0}, {1, 1, 1, 0, 1, 0, 1},
{0, 1, 0, 1, 1, 0, 1}, {1, 1, 1, 1, 0, 0, 1},
{1, 1, 1, 1, 0, 1, 1}, {1, 0, 0, 1, 1, 0, 1},
{1, 1, 1, 1, 1, 1, 1}, {1, 1, 1, 1, 1, 0, 1}};