node_ids
sequencelengths 4
1.4k
| edge_index
sequencelengths 1
2.22k
| text
sequencelengths 4
1.4k
| source
stringlengths 14
427k
|
---|---|---|---|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
2,
13,
2,
17,
17,
0,
13,
2,
2,
13,
17,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
61,
5
],
[
61,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
14,
17
],
[
17,
18
],
[
18,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
24,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
30,
30
],
[
30,
31
],
[
30,
32
],
[
30,
33
],
[
8,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
36,
38
],
[
8,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
41,
43
],
[
8,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
44,
49
],
[
52,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
51,
55
],
[
50,
56
],
[
52,
57
],
[
6,
58
],
[
58,
59
],
[
0,
60
],
[
60,
61
],
[
60,
62
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n\n public static void main(String[] args) {\n final Scanner scanner = new Scanner(System.in);\n int sec = Integer.parseInt(scanner.nextLine());\n int hour = sec / (60 * 60);\n sec -= hour * 60 * 60;\n int min = sec / 60;\n sec -= min * 60;\n\n System.out.println(hour + \":\" + min + \":\" + sec);\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n public static void main(String[] args) {\n final Scanner scanner = new Scanner(System.in);\n int sec = Integer.parseInt(scanner.nextLine());\n int hour = sec / (60 * 60);\n sec -= hour * 60 * 60;\n int min = sec / 60;\n sec -= min * 60;\n\n System.out.println(hour + \":\" + min + \":\" + sec);\n }\n}",
"Main",
"public static void main(String[] args) {\n final Scanner scanner = new Scanner(System.in);\n int sec = Integer.parseInt(scanner.nextLine());\n int hour = sec / (60 * 60);\n sec -= hour * 60 * 60;\n int min = sec / 60;\n sec -= min * 60;\n\n System.out.println(hour + \":\" + min + \":\" + sec);\n }",
"main",
"{\n final Scanner scanner = new Scanner(System.in);\n int sec = Integer.parseInt(scanner.nextLine());\n int hour = sec / (60 * 60);\n sec -= hour * 60 * 60;\n int min = sec / 60;\n sec -= min * 60;\n\n System.out.println(hour + \":\" + min + \":\" + sec);\n }",
"final Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"int sec = Integer.parseInt(scanner.nextLine());",
"sec",
"Integer.parseInt(scanner.nextLine())",
"Integer.parseInt",
"Integer",
"scanner.nextLine()",
"scanner.nextLine",
"scanner",
"int hour = sec / (60 * 60);",
"hour",
"sec / (60 * 60)",
"sec",
"(60 * 60)",
"60",
"60",
"sec -= hour * 60 * 60",
"sec",
"hour * 60 * 60",
"hour * 60 * 60",
"hour",
"60",
"60",
"int min = sec / 60;",
"min",
"sec / 60",
"sec",
"60",
"sec -= min * 60",
"sec",
"min * 60",
"min",
"60",
"System.out.println(hour + \":\" + min + \":\" + sec)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour + \":\" + min + \":\" + sec",
"\":\"",
"min",
"hour + \":\" + min + \":\" + sec",
"hour",
"\":\"",
"min",
"\":\"",
"sec",
"String[] args",
"args",
"public class Main {\n\n public static void main(String[] args) {\n final Scanner scanner = new Scanner(System.in);\n int sec = Integer.parseInt(scanner.nextLine());\n int hour = sec / (60 * 60);\n sec -= hour * 60 * 60;\n int min = sec / 60;\n sec -= min * 60;\n\n System.out.println(hour + \":\" + min + \":\" + sec);\n }\n}",
"public class Main {\n\n public static void main(String[] args) {\n final Scanner scanner = new Scanner(System.in);\n int sec = Integer.parseInt(scanner.nextLine());\n int hour = sec / (60 * 60);\n sec -= hour * 60 * 60;\n int min = sec / 60;\n sec -= min * 60;\n\n System.out.println(hour + \":\" + min + \":\" + sec);\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) {
final Scanner scanner = new Scanner(System.in);
int sec = Integer.parseInt(scanner.nextLine());
int hour = sec / (60 * 60);
sec -= hour * 60 * 60;
int min = sec / 60;
sec -= min * 60;
System.out.println(hour + ":" + min + ":" + sec);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
10,
11
],
[
10,
12
],
[
0,
13
],
[
13,
14
],
[
13,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
18,
20
],
[
17,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
24,
25
],
[
17,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
28,
30
],
[
17,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
33,
35
],
[
17,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
38,
40
],
[
17,
41
],
[
41,
42
],
[
41,
43
],
[
43,
44
],
[
43,
45
],
[
17,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
46,
51
],
[
54,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
52,
58
],
[
54,
59
],
[
15,
60
],
[
60,
61
]
] | [
"import java.awt.*;\nimport java.awt.geom.*;\nimport java.io.*;\n\nimport java.util.*;\nclass Main {\n\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint S = sc.nextInt();\n\t\tint h = S / 3600;\n\t\tS -= h * 3600;\n\t\tint m = S / 60;\n\t\tS -= m * 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + S);\n\t}\n}",
"import java.awt.*;",
"awt.*",
"java",
"import java.awt.geom.*;",
"geom.*",
"java.awt",
"import java.io.*;",
"io.*",
"java",
"import java.util.*;",
"util.*",
"java",
"class Main {\n\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint S = sc.nextInt();\n\t\tint h = S / 3600;\n\t\tS -= h * 3600;\n\t\tint m = S / 60;\n\t\tS -= m * 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + S);\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint S = sc.nextInt();\n\t\tint h = S / 3600;\n\t\tS -= h * 3600;\n\t\tint m = S / 60;\n\t\tS -= m * 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + S);\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint S = sc.nextInt();\n\t\tint h = S / 3600;\n\t\tS -= h * 3600;\n\t\tint m = S / 60;\n\t\tS -= m * 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + S);\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int S = sc.nextInt();",
"S",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int h = S / 3600;",
"h",
"S / 3600",
"S",
"3600",
"S -= h * 3600",
"S",
"h * 3600",
"h",
"3600",
"int m = S / 60;",
"m",
"S / 60",
"S",
"60",
"S -= m * 60",
"S",
"m * 60",
"m",
"60",
"System.out.println(h + \":\" + m + \":\" + S)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + S",
"\":\"",
"m",
"h + \":\" + m + \":\" + S",
"h",
"\":\"",
"m",
"\":\"",
"S",
"String[] args",
"args"
] | import java.awt.*;
import java.awt.geom.*;
import java.io.*;
import java.util.*;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int S = sc.nextInt();
int h = S / 3600;
S -= h * 3600;
int m = S / 60;
S -= m * 60;
System.out.println(h + ":" + m + ":" + S);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
42,
40,
2,
2,
17,
13,
2,
13,
17,
30,
0,
13,
4,
18,
13,
4,
18,
13,
41,
13,
41,
13,
41,
13,
0,
13,
0,
13,
0,
13,
17,
42,
2,
13,
17,
30,
0,
13,
17,
40,
13,
42,
2,
13,
17,
30,
0,
13,
17,
40,
13,
0,
13,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
8,
14
],
[
14,
15
],
[
15,
16
],
[
16,
17
],
[
17,
18
],
[
17,
19
],
[
16,
20
],
[
20,
21
],
[
20,
22
],
[
14,
23
],
[
23,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
27,
28
],
[
26,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
8,
34
],
[
34,
35
],
[
8,
36
],
[
36,
37
],
[
8,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
42,
44
],
[
8,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
45,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
49,
53
],
[
53,
54
],
[
8,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
55,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
59,
63
],
[
63,
64
],
[
8,
65
],
[
65,
66
],
[
65,
67
],
[
8,
68
],
[
68,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
68,
73
],
[
76,
74
],
[
74,
75
],
[
75,
76
],
[
76,
77
],
[
76,
78
],
[
75,
79
],
[
74,
80
],
[
76,
81
],
[
6,
82
],
[
82,
83
]
] | [
"import java.io.*;\n\nclass Main{\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint S;\n\t\tdo{\n\t\t\tS = Integer.parseInt(br.readLine());\n\t\t}while(!(0 <= S && S < 86400));\n\n\t\tint h,m,s;\n\t\th = m = s = 0;\n\t\twhile(S >= 3600){\n\t\t\tS -= 3600;\n\t\t\th++;\n\t\t}\n\t\twhile(S >= 60){\n\t\t\tS -= 60;\n\t\t\tm++;\n\t\t}\n\t\ts = S;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"import java.io.*;",
"io.*",
"java",
"class Main{\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint S;\n\t\tdo{\n\t\t\tS = Integer.parseInt(br.readLine());\n\t\t}while(!(0 <= S && S < 86400));\n\n\t\tint h,m,s;\n\t\th = m = s = 0;\n\t\twhile(S >= 3600){\n\t\t\tS -= 3600;\n\t\t\th++;\n\t\t}\n\t\twhile(S >= 60){\n\t\t\tS -= 60;\n\t\t\tm++;\n\t\t}\n\t\ts = S;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"Main",
"public static void main(String[] args) throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint S;\n\t\tdo{\n\t\t\tS = Integer.parseInt(br.readLine());\n\t\t}while(!(0 <= S && S < 86400));\n\n\t\tint h,m,s;\n\t\th = m = s = 0;\n\t\twhile(S >= 3600){\n\t\t\tS -= 3600;\n\t\t\th++;\n\t\t}\n\t\twhile(S >= 60){\n\t\t\tS -= 60;\n\t\t\tm++;\n\t\t}\n\t\ts = S;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"main",
"{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint S;\n\t\tdo{\n\t\t\tS = Integer.parseInt(br.readLine());\n\t\t}while(!(0 <= S && S < 86400));\n\n\t\tint h,m,s;\n\t\th = m = s = 0;\n\t\twhile(S >= 3600){\n\t\t\tS -= 3600;\n\t\t\th++;\n\t\t}\n\t\twhile(S >= 60){\n\t\t\tS -= 60;\n\t\t\tm++;\n\t\t}\n\t\ts = S;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"int S;",
"S",
"do{\n\t\t\tS = Integer.parseInt(br.readLine());\n\t\t}while(!(0 <= S && S < 86400));",
"!(0 <= S && S < 86400)",
"(0 <= S && S < 86400)",
"0 <= S",
"0",
"S",
"S < 86400",
"S",
"86400",
"{\n\t\t\tS = Integer.parseInt(br.readLine());\n\t\t}",
"S = Integer.parseInt(br.readLine())",
"S",
"Integer.parseInt(br.readLine())",
"Integer.parseInt",
"Integer",
"br.readLine()",
"br.readLine",
"br",
"int h",
"h",
"m",
"m",
"s;",
"s",
"h = m = s = 0",
"h",
"m = s = 0",
"m",
"s = 0",
"s",
"0",
"while(S >= 3600){\n\t\t\tS -= 3600;\n\t\t\th++;\n\t\t}",
"S >= 3600",
"S",
"3600",
"{\n\t\t\tS -= 3600;\n\t\t\th++;\n\t\t}",
"S -= 3600",
"S",
"3600",
"h++",
"h",
"while(S >= 60){\n\t\t\tS -= 60;\n\t\t\tm++;\n\t\t}",
"S >= 60",
"S",
"60",
"{\n\t\t\tS -= 60;\n\t\t\tm++;\n\t\t}",
"S -= 60",
"S",
"60",
"m++",
"m",
"s = S",
"s",
"S",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args"
] | import java.io.*;
class Main{
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int S;
do{
S = Integer.parseInt(br.readLine());
}while(!(0 <= S && S < 86400));
int h,m,s;
h = m = s = 0;
while(S >= 3600){
S -= 3600;
h++;
}
while(S >= 60){
S -= 60;
m++;
}
s = S;
System.out.println(h + ":" + m + ":" + s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
41,
13,
41,
13,
41,
13,
41,
13,
41,
13,
20,
0,
13,
4,
18,
13,
0,
13,
4,
18,
13,
13,
0,
13,
2,
13,
17,
0,
13,
2,
2,
13,
2,
13,
17,
17,
0,
13,
2,
2,
13,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
11,
14
],
[
14,
15
],
[
11,
16
],
[
16,
17
],
[
11,
18
],
[
18,
19
],
[
11,
20
],
[
20,
21
],
[
11,
22
],
[
22,
23
],
[
22,
24
],
[
11,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
28,
29
],
[
11,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
32,
35
],
[
11,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
38,
40
],
[
11,
41
],
[
41,
42
],
[
41,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
46,
47
],
[
46,
48
],
[
43,
49
],
[
11,
50
],
[
50,
51
],
[
50,
52
],
[
52,
53
],
[
53,
54
],
[
53,
55
],
[
55,
56
],
[
55,
57
],
[
52,
58
],
[
11,
59
],
[
59,
60
],
[
60,
61
],
[
61,
62
],
[
61,
63
],
[
59,
64
],
[
67,
65
],
[
65,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
66,
70
],
[
65,
71
],
[
67,
72
],
[
9,
73
],
[
73,
74
]
] | [
"import java.io.*;\nimport java.util.Scanner;\n\nclass Main\n{\n\tpublic static void main (String[] args) throws IOException\n\t{\n\t\tString S;\n\t\tint time,h,m,s;\n\t\t\n\t\tScanner in = new Scanner(System.in);\n\t\t\n\t\tS = in.nextLine();\n\t\t\n\t\ttime = Integer.parseInt(S);\n\t\t\n\t\th = time / 3600;\n\t\tm = (time - h * 3600) / 60;\n\t\ts = (time - h * 3600) % 60;\n\t\t\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"import java.io.*;",
"io.*",
"java",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main\n{\n\tpublic static void main (String[] args) throws IOException\n\t{\n\t\tString S;\n\t\tint time,h,m,s;\n\t\t\n\t\tScanner in = new Scanner(System.in);\n\t\t\n\t\tS = in.nextLine();\n\t\t\n\t\ttime = Integer.parseInt(S);\n\t\t\n\t\th = time / 3600;\n\t\tm = (time - h * 3600) / 60;\n\t\ts = (time - h * 3600) % 60;\n\t\t\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"Main",
"public static void main (String[] args) throws IOException\n\t{\n\t\tString S;\n\t\tint time,h,m,s;\n\t\t\n\t\tScanner in = new Scanner(System.in);\n\t\t\n\t\tS = in.nextLine();\n\t\t\n\t\ttime = Integer.parseInt(S);\n\t\t\n\t\th = time / 3600;\n\t\tm = (time - h * 3600) / 60;\n\t\ts = (time - h * 3600) % 60;\n\t\t\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"main",
"{\n\t\tString S;\n\t\tint time,h,m,s;\n\t\t\n\t\tScanner in = new Scanner(System.in);\n\t\t\n\t\tS = in.nextLine();\n\t\t\n\t\ttime = Integer.parseInt(S);\n\t\t\n\t\th = time / 3600;\n\t\tm = (time - h * 3600) / 60;\n\t\ts = (time - h * 3600) % 60;\n\t\t\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"String S;",
"S",
"int time",
"time",
"h",
"h",
"m",
"m",
"s;",
"s",
"Scanner in = new Scanner(System.in);",
"in",
"new Scanner(System.in)",
"S = in.nextLine()",
"S",
"in.nextLine()",
"in.nextLine",
"in",
"time = Integer.parseInt(S)",
"time",
"Integer.parseInt(S)",
"Integer.parseInt",
"Integer",
"S",
"h = time / 3600",
"h",
"time / 3600",
"time",
"3600",
"m = (time - h * 3600) / 60",
"m",
"(time - h * 3600) / 60",
"(time - h * 3600)",
"time",
"h * 3600",
"h",
"3600",
"60",
"s = (time - h * 3600) % 60",
"s",
"(time - h * 3600) % 60",
"(time - h * 3600)",
"time",
"h * 3600",
"h",
"3600",
"60",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args"
] | import java.io.*;
import java.util.Scanner;
class Main
{
public static void main (String[] args) throws IOException
{
String S;
int time,h,m,s;
Scanner in = new Scanner(System.in);
S = in.nextLine();
time = Integer.parseInt(S);
h = time / 3600;
m = (time - h * 3600) / 60;
s = (time - h * 3600) % 60;
System.out.println(h + ":" + m + ":" + s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
2,
13,
17,
17,
41,
13,
2,
2,
13,
2,
13,
17,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
71,
11
],
[
71,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
14,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
26,
27
],
[
25,
28
],
[
14,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
31,
33
],
[
14,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
39,
41
],
[
36,
42
],
[
14,
43
],
[
43,
44
],
[
43,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
48,
49
],
[
48,
50
],
[
45,
51
],
[
51,
52
],
[
51,
53
],
[
14,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
54,
59
],
[
62,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
60,
66
],
[
62,
67
],
[
12,
68
],
[
68,
69
],
[
0,
70
],
[
70,
71
],
[
70,
72
]
] | [
"\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n String str = br.readLine();\n int num = Integer.parseInt(str);\n\n int hh = num / 3600;\n int mm = (num - hh * 3600) / 60;\n int ss = ((num - hh * 3600) - mm * 60);\n\n System.out.println(hh + \":\" + mm + \":\" + ss);\n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n String str = br.readLine();\n int num = Integer.parseInt(str);\n\n int hh = num / 3600;\n int mm = (num - hh * 3600) / 60;\n int ss = ((num - hh * 3600) - mm * 60);\n\n System.out.println(hh + \":\" + mm + \":\" + ss);\n }\n}",
"Main",
"public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n String str = br.readLine();\n int num = Integer.parseInt(str);\n\n int hh = num / 3600;\n int mm = (num - hh * 3600) / 60;\n int ss = ((num - hh * 3600) - mm * 60);\n\n System.out.println(hh + \":\" + mm + \":\" + ss);\n }",
"main",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n String str = br.readLine();\n int num = Integer.parseInt(str);\n\n int hh = num / 3600;\n int mm = (num - hh * 3600) / 60;\n int ss = ((num - hh * 3600) - mm * 60);\n\n System.out.println(hh + \":\" + mm + \":\" + ss);\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String str = br.readLine();",
"str",
"br.readLine()",
"br.readLine",
"br",
"int num = Integer.parseInt(str);",
"num",
"Integer.parseInt(str)",
"Integer.parseInt",
"Integer",
"str",
"int hh = num / 3600;",
"hh",
"num / 3600",
"num",
"3600",
"int mm = (num - hh * 3600) / 60;",
"mm",
"(num - hh * 3600) / 60",
"(num - hh * 3600)",
"num",
"hh * 3600",
"hh",
"3600",
"60",
"int ss = ((num - hh * 3600) - mm * 60);",
"ss",
"((num - hh * 3600) - mm * 60)",
"(num - hh * 3600)",
"num",
"hh * 3600",
"hh",
"3600",
"mm * 60",
"mm",
"60",
"System.out.println(hh + \":\" + mm + \":\" + ss)",
"System.out.println",
"System.out",
"System",
"System.out",
"hh + \":\" + mm + \":\" + ss",
"\":\"",
"mm",
"hh + \":\" + mm + \":\" + ss",
"hh",
"\":\"",
"mm",
"\":\"",
"ss",
"String[] args",
"args",
"public class Main {\n\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n String str = br.readLine();\n int num = Integer.parseInt(str);\n\n int hh = num / 3600;\n int mm = (num - hh * 3600) / 60;\n int ss = ((num - hh * 3600) - mm * 60);\n\n System.out.println(hh + \":\" + mm + \":\" + ss);\n }\n}",
"public class Main {\n\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n String str = br.readLine();\n int num = Integer.parseInt(str);\n\n int hh = num / 3600;\n int mm = (num - hh * 3600) / 60;\n int ss = ((num - hh * 3600) - mm * 60);\n\n System.out.println(hh + \":\" + mm + \":\" + ss);\n }\n}",
"Main"
] |
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
int num = Integer.parseInt(str);
int hh = num / 3600;
int mm = (num - hh * 3600) / 60;
int ss = ((num - hh * 3600) - mm * 60);
System.out.println(hh + ":" + mm + ":" + ss);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
42,
4,
18,
13,
30,
41,
13,
4,
18,
4,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
13,
14
],
[
14,
15
],
[
12,
16
],
[
16,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
19,
24
],
[
16,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
28,
29
],
[
27,
30
],
[
30,
31
],
[
30,
32
],
[
16,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
16,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
40,
44
],
[
16,
45
],
[
45,
46
],
[
45,
47
],
[
48,
48
],
[
48,
49
],
[
48,
50
],
[
48,
51
],
[
16,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
52,
57
],
[
60,
58
],
[
58,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
59,
63
],
[
58,
64
],
[
60,
65
],
[
6,
66
],
[
66,
67
]
] | [
"import java.util.Scanner;\n\nclass Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n while( sc.hasNext() ){\n String[] line = sc.nextLine().split(\" \");\n int inputtime = Integer.parseInt(line[0]);\n int hour = inputtime/3600;\n int minute = inputtime%3600/60;\n int second = inputtime%3600%60;\n System.out.println(hour+\":\"+minute+\":\"+second);\n }\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n while( sc.hasNext() ){\n String[] line = sc.nextLine().split(\" \");\n int inputtime = Integer.parseInt(line[0]);\n int hour = inputtime/3600;\n int minute = inputtime%3600/60;\n int second = inputtime%3600%60;\n System.out.println(hour+\":\"+minute+\":\"+second);\n }\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n while( sc.hasNext() ){\n String[] line = sc.nextLine().split(\" \");\n int inputtime = Integer.parseInt(line[0]);\n int hour = inputtime/3600;\n int minute = inputtime%3600/60;\n int second = inputtime%3600%60;\n System.out.println(hour+\":\"+minute+\":\"+second);\n }\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n while( sc.hasNext() ){\n String[] line = sc.nextLine().split(\" \");\n int inputtime = Integer.parseInt(line[0]);\n int hour = inputtime/3600;\n int minute = inputtime%3600/60;\n int second = inputtime%3600%60;\n System.out.println(hour+\":\"+minute+\":\"+second);\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"while( sc.hasNext() ){\n String[] line = sc.nextLine().split(\" \");\n int inputtime = Integer.parseInt(line[0]);\n int hour = inputtime/3600;\n int minute = inputtime%3600/60;\n int second = inputtime%3600%60;\n System.out.println(hour+\":\"+minute+\":\"+second);\n }",
"sc.hasNext()",
"sc.hasNext",
"sc",
"{\n String[] line = sc.nextLine().split(\" \");\n int inputtime = Integer.parseInt(line[0]);\n int hour = inputtime/3600;\n int minute = inputtime%3600/60;\n int second = inputtime%3600%60;\n System.out.println(hour+\":\"+minute+\":\"+second);\n }",
"String[] line = sc.nextLine().split(\" \");",
"line",
"sc.nextLine().split(\" \")",
"sc.nextLine().split",
"sc.nextLine()",
"sc.nextLine",
"sc",
"\" \"",
"int inputtime = Integer.parseInt(line[0]);",
"inputtime",
"Integer.parseInt(line[0])",
"Integer.parseInt",
"Integer",
"line[0]",
"line",
"0",
"int hour = inputtime/3600;",
"hour",
"inputtime/3600",
"inputtime",
"3600",
"int minute = inputtime%3600/60;",
"minute",
"inputtime%3600/60",
"inputtime%3600",
"inputtime",
"3600",
"60",
"int second = inputtime%3600%60;",
"second",
"inputtime%3600%60",
"inputtime%3600%60",
"inputtime",
"3600",
"60",
"System.out.println(hour+\":\"+minute+\":\"+second)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour+\":\"+minute+\":\"+second",
"\":\"",
"minute",
"hour+\":\"+minute+\":\"+second",
"hour",
"\":\"",
"minute",
"\":\"",
"second",
"String[] args",
"args"
] | import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while( sc.hasNext() ){
String[] line = sc.nextLine().split(" ");
int inputtime = Integer.parseInt(line[0]);
int hour = inputtime/3600;
int minute = inputtime%3600/60;
int second = inputtime%3600%60;
System.out.println(hour+":"+minute+":"+second);
}
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
2,
13,
17,
17,
2,
2,
13,
17,
17,
17,
2,
13,
17,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
45,
8
],
[
45,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
11,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
28,
26
],
[
26,
27
],
[
33,
28
],
[
28,
29
],
[
29,
30
],
[
29,
31
],
[
28,
32
],
[
33,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
26,
38
],
[
28,
39
],
[
39,
40
],
[
39,
41
],
[
9,
42
],
[
42,
43
],
[
0,
44
],
[
44,
45
],
[
44,
46
]
] | [
"import java.util.*;\nimport java.io.*;\npublic class Main {\n public static void main(String[] args) throws java.lang.Exception {\n Scanner sc = new Scanner(System.in);\n int s =sc.nextInt();\n System.out.println((s/3600)+\":\"+(s%3600/60)+\":\"+(s%60));\n }\n}\n",
"import java.util.*;",
"util.*",
"java",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n public static void main(String[] args) throws java.lang.Exception {\n Scanner sc = new Scanner(System.in);\n int s =sc.nextInt();\n System.out.println((s/3600)+\":\"+(s%3600/60)+\":\"+(s%60));\n }\n}",
"Main",
"public static void main(String[] args) throws java.lang.Exception {\n Scanner sc = new Scanner(System.in);\n int s =sc.nextInt();\n System.out.println((s/3600)+\":\"+(s%3600/60)+\":\"+(s%60));\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int s =sc.nextInt();\n System.out.println((s/3600)+\":\"+(s%3600/60)+\":\"+(s%60));\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int s =sc.nextInt();",
"s",
"sc.nextInt()",
"sc.nextInt",
"sc",
"System.out.println((s/3600)+\":\"+(s%3600/60)+\":\"+(s%60))",
"System.out.println",
"System.out",
"System",
"System.out",
"(s/3600)+\":\"+(s%3600/60)+\":\"+(s%60)",
"\":\"",
"(s%3600/60)",
"(s/3600)+\":\"+(s%3600/60)+\":\"+(s%60)",
"(s/3600)",
"s",
"3600",
"\":\"",
"(s%3600/60)",
"s%3600",
"s",
"3600",
"60",
"\":\"",
"(s%60)",
"s",
"60",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) throws java.lang.Exception {\n Scanner sc = new Scanner(System.in);\n int s =sc.nextInt();\n System.out.println((s/3600)+\":\"+(s%3600/60)+\":\"+(s%60));\n }\n}",
"public class Main {\n public static void main(String[] args) throws java.lang.Exception {\n Scanner sc = new Scanner(System.in);\n int s =sc.nextInt();\n System.out.println((s/3600)+\":\"+(s%3600/60)+\":\"+(s%60));\n }\n}",
"Main"
] | import java.util.*;
import java.io.*;
public class Main {
public static void main(String[] args) throws java.lang.Exception {
Scanner sc = new Scanner(System.in);
int s =sc.nextInt();
System.out.println((s/3600)+":"+(s%3600/60)+":"+(s%60));
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
41,
13,
41,
13,
0,
13,
2,
13,
17,
0,
13,
2,
2,
13,
17,
17,
0,
13,
2,
2,
13,
17,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
64,
8
],
[
64,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
11,
20
],
[
20,
21
],
[
11,
22
],
[
22,
23
],
[
11,
24
],
[
24,
25
],
[
11,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
28,
30
],
[
11,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
11,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
40,
44
],
[
44,
45
],
[
44,
46
],
[
11,
47
],
[
47,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
47,
52
],
[
55,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
54,
58
],
[
53,
59
],
[
55,
60
],
[
9,
61
],
[
61,
62
],
[
0,
63
],
[
63,
64
],
[
63,
65
]
] | [
"import java.io.IOException;\nimport java.util.Scanner;\npublic class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t// TODO ?????????????????????????????????????????????\n Scanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n \n int h,m,b;\n h=s/3600;\n m=(s%3600)/60;\n b=((s%3600)-m*60);\n System.out.println(h+\":\"+m+\":\"+b);\n \n \n\t}\n\n}",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t// TODO ?????????????????????????????????????????????\n Scanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n \n int h,m,b;\n h=s/3600;\n m=(s%3600)/60;\n b=((s%3600)-m*60);\n System.out.println(h+\":\"+m+\":\"+b);\n \n \n\t}\n\n}",
"Main",
"public static void main(String[] args) throws IOException {\n\t\t// TODO ?????????????????????????????????????????????\n Scanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n \n int h,m,b;\n h=s/3600;\n m=(s%3600)/60;\n b=((s%3600)-m*60);\n System.out.println(h+\":\"+m+\":\"+b);\n \n \n\t}",
"main",
"{\n\t\t// TODO ?????????????????????????????????????????????\n Scanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n \n int h,m,b;\n h=s/3600;\n m=(s%3600)/60;\n b=((s%3600)-m*60);\n System.out.println(h+\":\"+m+\":\"+b);\n \n \n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int s = sc.nextInt();",
"s",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int h",
"h",
"m",
"m",
"b;",
"b",
"h=s/3600",
"h",
"s/3600",
"s",
"3600",
"m=(s%3600)/60",
"m",
"(s%3600)/60",
"(s%3600)",
"s",
"3600",
"60",
"b=((s%3600)-m*60)",
"b",
"((s%3600)-m*60)",
"(s%3600)",
"s",
"3600",
"m*60",
"m",
"60",
"System.out.println(h+\":\"+m+\":\"+b)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+b",
"\":\"",
"m",
"h+\":\"+m+\":\"+b",
"h",
"\":\"",
"m",
"\":\"",
"b",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t// TODO ?????????????????????????????????????????????\n Scanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n \n int h,m,b;\n h=s/3600;\n m=(s%3600)/60;\n b=((s%3600)-m*60);\n System.out.println(h+\":\"+m+\":\"+b);\n \n \n\t}\n\n}",
"public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t// TODO ?????????????????????????????????????????????\n Scanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n \n int h,m,b;\n h=s/3600;\n m=(s%3600)/60;\n b=((s%3600)-m*60);\n System.out.println(h+\":\"+m+\":\"+b);\n \n \n\t}\n\n}",
"Main"
] | import java.io.IOException;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
// TODO ?????????????????????????????????????????????
Scanner sc = new Scanner(System.in);
int s = sc.nextInt();
int h,m,b;
h=s/3600;
m=(s%3600)/60;
b=((s%3600)-m*60);
System.out.println(h+":"+m+":"+b);
}
} |
[
7,
15,
13,
17,
6,
13,
41,
13,
41,
13,
41,
13,
41,
13,
41,
13,
41,
13,
12,
13,
30,
41,
13,
20,
0,
13,
4,
18,
13,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
12,
13,
30,
4,
18,
20,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
4,
8
],
[
8,
9
],
[
4,
10
],
[
10,
11
],
[
4,
12
],
[
12,
13
],
[
4,
14
],
[
14,
15
],
[
4,
16
],
[
16,
17
],
[
4,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
20,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
27,
28
],
[
20,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
31,
33
],
[
20,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
36,
38
],
[
20,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
41,
43
],
[
20,
44
],
[
44,
45
],
[
44,
46
],
[
46,
47
],
[
46,
48
],
[
20,
49
],
[
49,
50
],
[
49,
51
],
[
51,
52
],
[
51,
53
],
[
20,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
54,
59
],
[
62,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
60,
66
],
[
62,
67
],
[
4,
68
],
[
68,
69
],
[
68,
70
],
[
70,
71
],
[
71,
72
],
[
72,
73
],
[
68,
74
],
[
74,
75
]
] | [
"import java.util.Scanner;\nclass Main{\n int x,h,m,m1,s,s1; \n public void yatary() {\n Scanner sc = new Scanner(System.in);\n x =sc.nextInt();\n h =x / 3600; \n m =x % 3600;\n m1 = m / 60;\n s = x % 3600;\n s1 = s % 60;\n System.out.println(h + \":\" + m1 + \":\" + s1);\n }\n public static void main(String[] args){\n new Main().yatary();\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main{\n int x,h,m,m1,s,s1; \n public void yatary() {\n Scanner sc = new Scanner(System.in);\n x =sc.nextInt();\n h =x / 3600; \n m =x % 3600;\n m1 = m / 60;\n s = x % 3600;\n s1 = s % 60;\n System.out.println(h + \":\" + m1 + \":\" + s1);\n }\n public static void main(String[] args){\n new Main().yatary();\n }\n}",
"Main",
"int x",
"x",
"h",
"h",
"m",
"m",
"m1",
"m1",
"s",
"s",
"s1;",
"s1",
"public void yatary() {\n Scanner sc = new Scanner(System.in);\n x =sc.nextInt();\n h =x / 3600; \n m =x % 3600;\n m1 = m / 60;\n s = x % 3600;\n s1 = s % 60;\n System.out.println(h + \":\" + m1 + \":\" + s1);\n }",
"yatary",
"{\n Scanner sc = new Scanner(System.in);\n x =sc.nextInt();\n h =x / 3600; \n m =x % 3600;\n m1 = m / 60;\n s = x % 3600;\n s1 = s % 60;\n System.out.println(h + \":\" + m1 + \":\" + s1);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"x =sc.nextInt()",
"x",
"sc.nextInt()",
"sc.nextInt",
"sc",
"h =x / 3600",
"h",
"x / 3600",
"x",
"3600",
"m =x % 3600",
"m",
"x % 3600",
"x",
"3600",
"m1 = m / 60",
"m1",
"m / 60",
"m",
"60",
"s = x % 3600",
"s",
"x % 3600",
"x",
"3600",
"s1 = s % 60",
"s1",
"s % 60",
"s",
"60",
"System.out.println(h + \":\" + m1 + \":\" + s1)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m1 + \":\" + s1",
"\":\"",
"m1",
"h + \":\" + m1 + \":\" + s1",
"h",
"\":\"",
"m1",
"\":\"",
"s1",
"public static void main(String[] args){\n new Main().yatary();\n }",
"main",
"{\n new Main().yatary();\n }",
"new Main().yatary()",
"new Main().yatary",
"new Main()",
"String[] args",
"args"
] | import java.util.Scanner;
class Main{
int x,h,m,m1,s,s1;
public void yatary() {
Scanner sc = new Scanner(System.in);
x =sc.nextInt();
h =x / 3600;
m =x % 3600;
m1 = m / 60;
s = x % 3600;
s1 = s % 60;
System.out.println(h + ":" + m1 + ":" + s1);
}
public static void main(String[] args){
new Main().yatary();
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
17,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
8,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
17,
20
],
[
20,
21
],
[
21,
22
],
[
8,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
25,
27
],
[
8,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
30,
32
],
[
8,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
8,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
40,
42
],
[
8,
43
],
[
43,
44
],
[
43,
45
],
[
45,
46
],
[
45,
47
],
[
8,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
48,
53
],
[
56,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
55,
59
],
[
54,
60
],
[
56,
61
],
[
6,
62
],
[
62,
63
]
] | [
"import java.io.*;\nclass Main {\n public static void main(String[] args) throws IOException {\n \tint tmp = 0;\n BufferedReader r =\n new BufferedReader(new InputStreamReader(System.in), 1);\n int S = Integer.parseInt(r.readLine());\n int s = S%60;\n tmp = S/60;\n int m = tmp%60;\n tmp = tmp/60;\n int h = tmp%60;\n System.out.println(h + \":\" + m + \":\" + s);\n }\n}",
"import java.io.*;",
"io.*",
"java",
"class Main {\n public static void main(String[] args) throws IOException {\n \tint tmp = 0;\n BufferedReader r =\n new BufferedReader(new InputStreamReader(System.in), 1);\n int S = Integer.parseInt(r.readLine());\n int s = S%60;\n tmp = S/60;\n int m = tmp%60;\n tmp = tmp/60;\n int h = tmp%60;\n System.out.println(h + \":\" + m + \":\" + s);\n }\n}",
"Main",
"public static void main(String[] args) throws IOException {\n \tint tmp = 0;\n BufferedReader r =\n new BufferedReader(new InputStreamReader(System.in), 1);\n int S = Integer.parseInt(r.readLine());\n int s = S%60;\n tmp = S/60;\n int m = tmp%60;\n tmp = tmp/60;\n int h = tmp%60;\n System.out.println(h + \":\" + m + \":\" + s);\n }",
"main",
"{\n \tint tmp = 0;\n BufferedReader r =\n new BufferedReader(new InputStreamReader(System.in), 1);\n int S = Integer.parseInt(r.readLine());\n int s = S%60;\n tmp = S/60;\n int m = tmp%60;\n tmp = tmp/60;\n int h = tmp%60;\n System.out.println(h + \":\" + m + \":\" + s);\n }",
"int tmp = 0;",
"tmp",
"0",
"BufferedReader r =\n new BufferedReader(new InputStreamReader(System.in), 1);",
"r",
"new BufferedReader(new InputStreamReader(System.in), 1)",
"int S = Integer.parseInt(r.readLine());",
"S",
"Integer.parseInt(r.readLine())",
"Integer.parseInt",
"Integer",
"r.readLine()",
"r.readLine",
"r",
"int s = S%60;",
"s",
"S%60",
"S",
"60",
"tmp = S/60",
"tmp",
"S/60",
"S",
"60",
"int m = tmp%60;",
"m",
"tmp%60",
"tmp",
"60",
"tmp = tmp/60",
"tmp",
"tmp/60",
"tmp",
"60",
"int h = tmp%60;",
"h",
"tmp%60",
"tmp",
"60",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args"
] | import java.io.*;
class Main {
public static void main(String[] args) throws IOException {
int tmp = 0;
BufferedReader r =
new BufferedReader(new InputStreamReader(System.in), 1);
int S = Integer.parseInt(r.readLine());
int s = S%60;
tmp = S/60;
int m = tmp%60;
tmp = tmp/60;
int h = tmp%60;
System.out.println(h + ":" + m + ":" + s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
17,
41,
13,
17,
41,
13,
17,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
14,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
2,
13,
17,
0,
13,
2,
2,
13,
17,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
11,
18
],
[
18,
19
],
[
18,
20
],
[
11,
21
],
[
21,
22
],
[
21,
23
],
[
11,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
27,
28
],
[
11,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
32,
33
],
[
31,
34
],
[
11,
35
],
[
35,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
36,
40
],
[
40,
41
],
[
40,
42
],
[
35,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
46,
47
],
[
46,
48
],
[
43,
49
],
[
49,
50
],
[
49,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
51,
55
],
[
43,
56
],
[
56,
57
],
[
56,
58
],
[
58,
59
],
[
58,
60
],
[
43,
61
],
[
61,
62
],
[
62,
63
],
[
63,
64
],
[
63,
65
],
[
61,
66
],
[
69,
67
],
[
67,
68
],
[
68,
69
],
[
69,
70
],
[
69,
71
],
[
68,
72
],
[
67,
73
],
[
69,
74
],
[
9,
75
],
[
75,
76
]
] | [
"import java.util.*;\nimport java.io.*;\n\nclass Main{\n public static void main(String args[])throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int num1=0,num2=0,num3=0;\n String s=br.readLine();\n int x = Integer.parseInt(s);\n if(x>=0 && x<86400){\n num1 = x / 3600; //??????????±???????\n num2 = (x % 3600) / 60; //???????±???????\n num3 = x % 60; //?§?????±???????\n System.out.println(num1+\":\"+num2+\":\"+num3);\n }\n \n }\n}",
"import java.util.*;",
"util.*",
"java",
"import java.io.*;",
"io.*",
"java",
"class Main{\n public static void main(String args[])throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int num1=0,num2=0,num3=0;\n String s=br.readLine();\n int x = Integer.parseInt(s);\n if(x>=0 && x<86400){\n num1 = x / 3600; //??????????±???????\n num2 = (x % 3600) / 60; //???????±???????\n num3 = x % 60; //?§?????±???????\n System.out.println(num1+\":\"+num2+\":\"+num3);\n }\n \n }\n}",
"Main",
"public static void main(String args[])throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int num1=0,num2=0,num3=0;\n String s=br.readLine();\n int x = Integer.parseInt(s);\n if(x>=0 && x<86400){\n num1 = x / 3600; //??????????±???????\n num2 = (x % 3600) / 60; //???????±???????\n num3 = x % 60; //?§?????±???????\n System.out.println(num1+\":\"+num2+\":\"+num3);\n }\n \n }",
"main",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int num1=0,num2=0,num3=0;\n String s=br.readLine();\n int x = Integer.parseInt(s);\n if(x>=0 && x<86400){\n num1 = x / 3600; //??????????±???????\n num2 = (x % 3600) / 60; //???????±???????\n num3 = x % 60; //?§?????±???????\n System.out.println(num1+\":\"+num2+\":\"+num3);\n }\n \n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"int num1=0",
"num1",
"0",
"num2=0",
"num2",
"0",
"num3=0;",
"num3",
"0",
"String s=br.readLine();",
"s",
"br.readLine()",
"br.readLine",
"br",
"int x = Integer.parseInt(s);",
"x",
"Integer.parseInt(s)",
"Integer.parseInt",
"Integer",
"s",
"if(x>=0 && x<86400){\n num1 = x / 3600; //??????????±???????\n num2 = (x % 3600) / 60; //???????±???????\n num3 = x % 60; //?§?????±???????\n System.out.println(num1+\":\"+num2+\":\"+num3);\n }",
"x>=0 && x<86400",
"x>=0",
"x",
"0",
"x<86400",
"x",
"86400",
"{\n num1 = x / 3600; //??????????±???????\n num2 = (x % 3600) / 60; //???????±???????\n num3 = x % 60; //?§?????±???????\n System.out.println(num1+\":\"+num2+\":\"+num3);\n }",
"num1 = x / 3600",
"num1",
"x / 3600",
"x",
"3600",
"num2 = (x % 3600) / 60",
"num2",
"(x % 3600) / 60",
"(x % 3600)",
"x",
"3600",
"60",
"num3 = x % 60",
"num3",
"x % 60",
"x",
"60",
"System.out.println(num1+\":\"+num2+\":\"+num3)",
"System.out.println",
"System.out",
"System",
"System.out",
"num1+\":\"+num2+\":\"+num3",
"\":\"",
"num2",
"num1+\":\"+num2+\":\"+num3",
"num1",
"\":\"",
"num2",
"\":\"",
"num3",
"String args[]",
"args"
] | import java.util.*;
import java.io.*;
class Main{
public static void main(String args[])throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int num1=0,num2=0,num3=0;
String s=br.readLine();
int x = Integer.parseInt(s);
if(x>=0 && x<86400){
num1 = x / 3600; //??????????±???????
num2 = (x % 3600) / 60; //???????±???????
num3 = x % 60; //?§?????±???????
System.out.println(num1+":"+num2+":"+num3);
}
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
4,
18,
20,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
2,
13,
17,
17,
41,
13,
2,
13,
2,
2,
13,
17,
2,
13,
17,
4,
18,
13,
17,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
52,
8
],
[
52,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
11,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
11,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
27,
29
],
[
24,
30
],
[
11,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
35,
39
],
[
39,
40
],
[
39,
41
],
[
11,
42
],
[
42,
43
],
[
43,
44
],
[
42,
45
],
[
42,
46
],
[
42,
47
],
[
42,
48
],
[
9,
49
],
[
49,
50
],
[
0,
51
],
[
51,
52
],
[
51,
53
]
] | [
"import static java.lang.System.out;\nimport java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n int S = new Scanner(System.in).nextInt();\n\n int h = S / 3600;\n int m = (S - h * 3600) / 60; \n int s = S - (h * 3600 + m * 60); \n\n out.printf(\"%d:%d:%d%n\", h, m ,s);\n } \n}",
"import static java.lang.System.out;",
"import static java.lang.System.out;",
"import static java.lang.System.out;",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n public static void main(String[] args) {\n int S = new Scanner(System.in).nextInt();\n\n int h = S / 3600;\n int m = (S - h * 3600) / 60; \n int s = S - (h * 3600 + m * 60); \n\n out.printf(\"%d:%d:%d%n\", h, m ,s);\n } \n}",
"Main",
"public static void main(String[] args) {\n int S = new Scanner(System.in).nextInt();\n\n int h = S / 3600;\n int m = (S - h * 3600) / 60; \n int s = S - (h * 3600 + m * 60); \n\n out.printf(\"%d:%d:%d%n\", h, m ,s);\n }",
"main",
"{\n int S = new Scanner(System.in).nextInt();\n\n int h = S / 3600;\n int m = (S - h * 3600) / 60; \n int s = S - (h * 3600 + m * 60); \n\n out.printf(\"%d:%d:%d%n\", h, m ,s);\n }",
"int S = new Scanner(System.in).nextInt();",
"S",
"new Scanner(System.in).nextInt()",
"new Scanner(System.in).nextInt",
"new Scanner(System.in)",
"int h = S / 3600;",
"h",
"S / 3600",
"S",
"3600",
"int m = (S - h * 3600) / 60;",
"m",
"(S - h * 3600) / 60",
"(S - h * 3600)",
"S",
"h * 3600",
"h",
"3600",
"60",
"int s = S - (h * 3600 + m * 60);",
"s",
"S - (h * 3600 + m * 60)",
"S",
"(h * 3600 + m * 60)",
"h * 3600",
"h",
"3600",
"m * 60",
"m",
"60",
"out.printf(\"%d:%d:%d%n\", h, m ,s)",
"out.printf",
"out",
"\"%d:%d:%d%n\"",
"h",
"m",
"s",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n int S = new Scanner(System.in).nextInt();\n\n int h = S / 3600;\n int m = (S - h * 3600) / 60; \n int s = S - (h * 3600 + m * 60); \n\n out.printf(\"%d:%d:%d%n\", h, m ,s);\n } \n}",
"public class Main {\n public static void main(String[] args) {\n int S = new Scanner(System.in).nextInt();\n\n int h = S / 3600;\n int m = (S - h * 3600) / 60; \n int s = S - (h * 3600 + m * 60); \n\n out.printf(\"%d:%d:%d%n\", h, m ,s);\n } \n}",
"Main"
] | import static java.lang.System.out;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
int S = new Scanner(System.in).nextInt();
int h = S / 3600;
int m = (S - h * 3600) / 60;
int s = S - (h * 3600 + m * 60);
out.printf("%d:%d:%d%n", h, m ,s);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
2,
17,
17,
0,
13,
2,
2,
13,
17,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
58,
5
],
[
58,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
21,
22
],
[
21,
23
],
[
8,
24
],
[
24,
25
],
[
24,
26
],
[
27,
27
],
[
27,
28
],
[
27,
29
],
[
27,
30
],
[
8,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
33,
35
],
[
8,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
38,
40
],
[
8,
41
],
[
41,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
41,
46
],
[
49,
47
],
[
47,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
48,
52
],
[
47,
53
],
[
49,
54
],
[
6,
55
],
[
55,
56
],
[
0,
57
],
[
57,
58
],
[
57,
59
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner in = new Scanner(System.in);\n int S = in.nextInt();\n int h = S/(60*60);\n S -= h*60*60;\n int m = S/60;\n int s = S%60;\n System.out.println(h + \":\" + m + \":\" + s);\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n public static void main(String[] args) {\n Scanner in = new Scanner(System.in);\n int S = in.nextInt();\n int h = S/(60*60);\n S -= h*60*60;\n int m = S/60;\n int s = S%60;\n System.out.println(h + \":\" + m + \":\" + s);\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner in = new Scanner(System.in);\n int S = in.nextInt();\n int h = S/(60*60);\n S -= h*60*60;\n int m = S/60;\n int s = S%60;\n System.out.println(h + \":\" + m + \":\" + s);\n }",
"main",
"{\n Scanner in = new Scanner(System.in);\n int S = in.nextInt();\n int h = S/(60*60);\n S -= h*60*60;\n int m = S/60;\n int s = S%60;\n System.out.println(h + \":\" + m + \":\" + s);\n }",
"Scanner in = new Scanner(System.in);",
"in",
"new Scanner(System.in)",
"int S = in.nextInt();",
"S",
"in.nextInt()",
"in.nextInt",
"in",
"int h = S/(60*60);",
"h",
"S/(60*60)",
"S",
"(60*60)",
"60",
"60",
"S -= h*60*60",
"S",
"h*60*60",
"h*60*60",
"h",
"60",
"60",
"int m = S/60;",
"m",
"S/60",
"S",
"60",
"int s = S%60;",
"s",
"S%60",
"S",
"60",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner in = new Scanner(System.in);\n int S = in.nextInt();\n int h = S/(60*60);\n S -= h*60*60;\n int m = S/60;\n int s = S%60;\n System.out.println(h + \":\" + m + \":\" + s);\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner in = new Scanner(System.in);\n int S = in.nextInt();\n int h = S/(60*60);\n S -= h*60*60;\n int m = S/60;\n int s = S%60;\n System.out.println(h + \":\" + m + \":\" + s);\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int S = in.nextInt();
int h = S/(60*60);
S -= h*60*60;
int m = S/60;
int s = S%60;
System.out.println(h + ":" + m + ":" + s);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
41,
13,
0,
13,
2,
0,
13,
2,
13,
17,
17,
0,
13,
2,
0,
13,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
8,
19
],
[
19,
20
],
[
8,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
26,
28
],
[
23,
29
],
[
8,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
32,
38
],
[
8,
39
],
[
39,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
39,
44
],
[
47,
45
],
[
45,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
46,
50
],
[
45,
51
],
[
47,
52
],
[
6,
53
],
[
53,
54
]
] | [
"import java.util.Scanner;\n\nclass Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint s = scanner.nextInt(), m, h;\n\t\ts -= (h = (int) (s / 3600)) * 3600;\n\t\ts -= (m = (int) (s / 60)) * 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint s = scanner.nextInt(), m, h;\n\t\ts -= (h = (int) (s / 3600)) * 3600;\n\t\ts -= (m = (int) (s / 60)) * 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint s = scanner.nextInt(), m, h;\n\t\ts -= (h = (int) (s / 3600)) * 3600;\n\t\ts -= (m = (int) (s / 60)) * 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"main",
"{\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint s = scanner.nextInt(), m, h;\n\t\ts -= (h = (int) (s / 3600)) * 3600;\n\t\ts -= (m = (int) (s / 60)) * 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"int s = scanner.nextInt()",
"s",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"m",
"m",
"h;",
"h",
"s -= (h = (int) (s / 3600)) * 3600",
"s",
"(h = (int) (s / 3600)) * 3600",
"(h = (int) (s / 3600))",
"h",
"(int) (s / 3600)",
"s",
"3600",
"3600",
"s -= (m = (int) (s / 60)) * 60",
"s",
"(m = (int) (s / 60)) * 60",
"(m = (int) (s / 60))",
"m",
"(int) (s / 60)",
"s",
"60",
"60",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args"
] | import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int s = scanner.nextInt(), m, h;
s -= (h = (int) (s / 3600)) * 3600;
s -= (m = (int) (s / 60)) * 60;
System.out.println(h + ":" + m + ":" + s);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
17,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
49,
5
],
[
49,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
24,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
29,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
34,
36
],
[
8,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
37,
42
],
[
37,
43
],
[
37,
44
],
[
37,
45
],
[
6,
46
],
[
46,
47
],
[
0,
48
],
[
48,
49
],
[
48,
50
]
] | [
"import java.util.*;\n\npublic class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t \n\t\tint S = sc.nextInt();\n\t\t\n\t\tint h = S / 3600;\n\t\tS = S % 3600;\n\t\t\n\t\tint m = S / 60;\n\t\tS = S % 60;\n\t\t\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", h, m, S);\n\n\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t \n\t\tint S = sc.nextInt();\n\t\t\n\t\tint h = S / 3600;\n\t\tS = S % 3600;\n\t\t\n\t\tint m = S / 60;\n\t\tS = S % 60;\n\t\t\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", h, m, S);\n\n\n\t}\n}",
"Main",
"public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t \n\t\tint S = sc.nextInt();\n\t\t\n\t\tint h = S / 3600;\n\t\tS = S % 3600;\n\t\t\n\t\tint m = S / 60;\n\t\tS = S % 60;\n\t\t\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", h, m, S);\n\n\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t \n\t\tint S = sc.nextInt();\n\t\t\n\t\tint h = S / 3600;\n\t\tS = S % 3600;\n\t\t\n\t\tint m = S / 60;\n\t\tS = S % 60;\n\t\t\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", h, m, S);\n\n\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int S = sc.nextInt();",
"S",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int h = S / 3600;",
"h",
"S / 3600",
"S",
"3600",
"S = S % 3600",
"S",
"S % 3600",
"S",
"3600",
"int m = S / 60;",
"m",
"S / 60",
"S",
"60",
"S = S % 60",
"S",
"S % 60",
"S",
"60",
"System.out.printf(\"%d:%d:%d\\n\", h, m, S)",
"System.out.printf",
"System.out",
"System",
"System.out",
"\"%d:%d:%d\\n\"",
"h",
"m",
"S",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t \n\t\tint S = sc.nextInt();\n\t\t\n\t\tint h = S / 3600;\n\t\tS = S % 3600;\n\t\t\n\t\tint m = S / 60;\n\t\tS = S % 60;\n\t\t\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", h, m, S);\n\n\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t \n\t\tint S = sc.nextInt();\n\t\t\n\t\tint h = S / 3600;\n\t\tS = S % 3600;\n\t\t\n\t\tint m = S / 60;\n\t\tS = S % 60;\n\t\t\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", h, m, S);\n\n\n\t}\n}",
"Main"
] | import java.util.*;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int S = sc.nextInt();
int h = S / 3600;
S = S % 3600;
int m = S / 60;
S = S % 60;
System.out.printf("%d:%d:%d\n", h, m, S);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
41,
13,
41,
13,
41,
13,
4,
18,
13,
0,
13,
2,
13,
17,
0,
13,
2,
2,
13,
2,
13,
17,
17,
0,
13,
2,
2,
13,
2,
13,
17,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
12,
13,
30,
41,
13,
20,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
74,
5
],
[
74,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
8,
14
],
[
14,
15
],
[
8,
16
],
[
16,
17
],
[
8,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
8,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
25,
27
],
[
8,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
33,
35
],
[
30,
36
],
[
8,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
42,
44
],
[
39,
45
],
[
45,
46
],
[
45,
47
],
[
8,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
48,
53
],
[
56,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
55,
59
],
[
54,
60
],
[
56,
61
],
[
74,
62
],
[
62,
63
],
[
62,
64
],
[
64,
65
],
[
65,
66
],
[
65,
67
],
[
64,
68
],
[
68,
69
],
[
69,
70
],
[
62,
71
],
[
71,
72
],
[
0,
73
],
[
73,
74
],
[
73,
75
]
] | [
"import java.util.Scanner;\npublic class Main{\n \n public void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n int h,m,s;\n\t\tint jikan = sc.nextInt();\n\t\t\n\t\t\th = jikan / 3600;\n\t\t\tm = (jikan - h * 3600 ) / 60;\n\t\t\ts = ((jikan - h * 3600 ) - m *60);\n\t\t\t\n\t\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t\t\n }\n\n public static void main(String[]args){\n Main obj = new Main();\n obj.solve();\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n \n public void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n int h,m,s;\n\t\tint jikan = sc.nextInt();\n\t\t\n\t\t\th = jikan / 3600;\n\t\t\tm = (jikan - h * 3600 ) / 60;\n\t\t\ts = ((jikan - h * 3600 ) - m *60);\n\t\t\t\n\t\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t\t\n }\n\n public static void main(String[]args){\n Main obj = new Main();\n obj.solve();\n }\n}",
"Main",
"public void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n int h,m,s;\n\t\tint jikan = sc.nextInt();\n\t\t\n\t\t\th = jikan / 3600;\n\t\t\tm = (jikan - h * 3600 ) / 60;\n\t\t\ts = ((jikan - h * 3600 ) - m *60);\n\t\t\t\n\t\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t\t\n }",
"solve",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n int h,m,s;\n\t\tint jikan = sc.nextInt();\n\t\t\n\t\t\th = jikan / 3600;\n\t\t\tm = (jikan - h * 3600 ) / 60;\n\t\t\ts = ((jikan - h * 3600 ) - m *60);\n\t\t\t\n\t\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t\t\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int h",
"h",
"m",
"m",
"s;",
"s",
"int jikan = sc.nextInt();",
"jikan",
"sc.nextInt()",
"sc.nextInt",
"sc",
"h = jikan / 3600",
"h",
"jikan / 3600",
"jikan",
"3600",
"m = (jikan - h * 3600 ) / 60",
"m",
"(jikan - h * 3600 ) / 60",
"(jikan - h * 3600 )",
"jikan",
"h * 3600",
"h",
"3600",
"60",
"s = ((jikan - h * 3600 ) - m *60)",
"s",
"((jikan - h * 3600 ) - m *60)",
"(jikan - h * 3600 )",
"jikan",
"h * 3600",
"h",
"3600",
"m *60",
"m",
"60",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"public static void main(String[]args){\n Main obj = new Main();\n obj.solve();\n }",
"main",
"{\n Main obj = new Main();\n obj.solve();\n }",
"Main obj = new Main();",
"obj",
"new Main()",
"obj.solve()",
"obj.solve",
"obj",
"String[]args",
"args",
"public class Main{\n \n public void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n int h,m,s;\n\t\tint jikan = sc.nextInt();\n\t\t\n\t\t\th = jikan / 3600;\n\t\t\tm = (jikan - h * 3600 ) / 60;\n\t\t\ts = ((jikan - h * 3600 ) - m *60);\n\t\t\t\n\t\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t\t\n }\n\n public static void main(String[]args){\n Main obj = new Main();\n obj.solve();\n }\n}",
"public class Main{\n \n public void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n int h,m,s;\n\t\tint jikan = sc.nextInt();\n\t\t\n\t\t\th = jikan / 3600;\n\t\t\tm = (jikan - h * 3600 ) / 60;\n\t\t\ts = ((jikan - h * 3600 ) - m *60);\n\t\t\t\n\t\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t\t\n }\n\n public static void main(String[]args){\n Main obj = new Main();\n obj.solve();\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main{
public void solve(){
Scanner sc = new Scanner(System.in);
int h,m,s;
int jikan = sc.nextInt();
h = jikan / 3600;
m = (jikan - h * 3600 ) / 60;
s = ((jikan - h * 3600 ) - m *60);
System.out.println(h+":"+m+":"+s);
}
public static void main(String[]args){
Main obj = new Main();
obj.solve();
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
10,
11
],
[
10,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
20,
23
],
[
23,
24
],
[
24,
25
],
[
14,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
28,
30
],
[
14,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
33,
35
],
[
14,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
38,
40
],
[
14,
41
],
[
41,
42
],
[
41,
43
],
[
43,
44
],
[
43,
45
],
[
14,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
46,
51
],
[
54,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
52,
58
],
[
54,
59
],
[
12,
60
],
[
60,
61
]
] | [
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.io.IOException;\nclass Main\n{\n public static void main(String[] args) throws IOException {\n\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\tint s = Integer.parseInt(br.readLine());\n\tint sec = s % 60;\n\tint t = s / 60;\n\tint min = t % 60;\n\tint hour = t / 60;\n\n\tSystem.out.println(hour + \":\" + min + \":\" + sec);\n }\n\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"class Main\n{\n public static void main(String[] args) throws IOException {\n\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\tint s = Integer.parseInt(br.readLine());\n\tint sec = s % 60;\n\tint t = s / 60;\n\tint min = t % 60;\n\tint hour = t / 60;\n\n\tSystem.out.println(hour + \":\" + min + \":\" + sec);\n }\n\n}",
"Main",
"public static void main(String[] args) throws IOException {\n\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\tint s = Integer.parseInt(br.readLine());\n\tint sec = s % 60;\n\tint t = s / 60;\n\tint min = t % 60;\n\tint hour = t / 60;\n\n\tSystem.out.println(hour + \":\" + min + \":\" + sec);\n }",
"main",
"{\n\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\tint s = Integer.parseInt(br.readLine());\n\tint sec = s % 60;\n\tint t = s / 60;\n\tint min = t % 60;\n\tint hour = t / 60;\n\n\tSystem.out.println(hour + \":\" + min + \":\" + sec);\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"int s = Integer.parseInt(br.readLine());",
"s",
"Integer.parseInt(br.readLine())",
"Integer.parseInt",
"Integer",
"br.readLine()",
"br.readLine",
"br",
"int sec = s % 60;",
"sec",
"s % 60",
"s",
"60",
"int t = s / 60;",
"t",
"s / 60",
"s",
"60",
"int min = t % 60;",
"min",
"t % 60",
"t",
"60",
"int hour = t / 60;",
"hour",
"t / 60",
"t",
"60",
"System.out.println(hour + \":\" + min + \":\" + sec)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour + \":\" + min + \":\" + sec",
"\":\"",
"min",
"hour + \":\" + min + \":\" + sec",
"hour",
"\":\"",
"min",
"\":\"",
"sec",
"String[] args",
"args"
] | import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
class Main
{
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int s = Integer.parseInt(br.readLine());
int sec = s % 60;
int t = s / 60;
int min = t % 60;
int hour = t / 60;
System.out.println(hour + ":" + min + ":" + sec);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
10,
11
],
[
10,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
20,
23
],
[
23,
24
],
[
24,
25
],
[
14,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
28,
30
],
[
14,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
14,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
40,
42
],
[
14,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
43,
48
],
[
51,
49
],
[
49,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
49,
55
],
[
51,
56
],
[
12,
57
],
[
57,
58
]
] | [
"//ITP1_1_D: Watch\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\nclass Main {\n\n\tpublic static void main(String[] args) throws IOException {\n \n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n \n int sec = Integer.parseInt(in.readLine());\n \n int hh=sec/3600;\n int mm=(sec%3600)/60;\n int ss=sec%60;\n \n System.out.println(hh+\":\"+mm+\":\"+ss);\n \n\t}\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n \n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n \n int sec = Integer.parseInt(in.readLine());\n \n int hh=sec/3600;\n int mm=(sec%3600)/60;\n int ss=sec%60;\n \n System.out.println(hh+\":\"+mm+\":\"+ss);\n \n\t}\n}",
"Main",
"public static void main(String[] args) throws IOException {\n \n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n \n int sec = Integer.parseInt(in.readLine());\n \n int hh=sec/3600;\n int mm=(sec%3600)/60;\n int ss=sec%60;\n \n System.out.println(hh+\":\"+mm+\":\"+ss);\n \n\t}",
"main",
"{\n \n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n \n int sec = Integer.parseInt(in.readLine());\n \n int hh=sec/3600;\n int mm=(sec%3600)/60;\n int ss=sec%60;\n \n System.out.println(hh+\":\"+mm+\":\"+ss);\n \n\t}",
"BufferedReader in = new BufferedReader(new InputStreamReader(System.in));",
"in",
"new BufferedReader(new InputStreamReader(System.in))",
"int sec = Integer.parseInt(in.readLine());",
"sec",
"Integer.parseInt(in.readLine())",
"Integer.parseInt",
"Integer",
"in.readLine()",
"in.readLine",
"in",
"int hh=sec/3600;",
"hh",
"sec/3600",
"sec",
"3600",
"int mm=(sec%3600)/60;",
"mm",
"(sec%3600)/60",
"(sec%3600)",
"sec",
"3600",
"60",
"int ss=sec%60;",
"ss",
"sec%60",
"sec",
"60",
"System.out.println(hh+\":\"+mm+\":\"+ss)",
"System.out.println",
"System.out",
"System",
"System.out",
"hh+\":\"+mm+\":\"+ss",
"\":\"",
"mm",
"hh+\":\"+mm+\":\"+ss",
"hh",
"\":\"",
"mm",
"\":\"",
"ss",
"String[] args",
"args"
] | //ITP1_1_D: Watch
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
int sec = Integer.parseInt(in.readLine());
int hh=sec/3600;
int mm=(sec%3600)/60;
int ss=sec%60;
System.out.println(hh+":"+mm+":"+ss);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
17,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
48,
5
],
[
48,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
20,
20
],
[
20,
21
],
[
20,
22
],
[
20,
23
],
[
8,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
27,
28
],
[
27,
29
],
[
26,
30
],
[
8,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
33,
35
],
[
8,
36
],
[
36,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
36,
41
],
[
36,
42
],
[
36,
43
],
[
36,
44
],
[
6,
45
],
[
45,
46
],
[
0,
47
],
[
47,
48
],
[
47,
49
]
] | [
"\nimport java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int x=sc.nextInt();\n int h=x/60/60;\n int m=x/60%60;\n int s=x%60;\n System.out.printf(\"%d:%d:%d\\n\",h,m,s);\n }\n}\n",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int x=sc.nextInt();\n int h=x/60/60;\n int m=x/60%60;\n int s=x%60;\n System.out.printf(\"%d:%d:%d\\n\",h,m,s);\n }\n}",
"Main",
"public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int x=sc.nextInt();\n int h=x/60/60;\n int m=x/60%60;\n int s=x%60;\n System.out.printf(\"%d:%d:%d\\n\",h,m,s);\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int x=sc.nextInt();\n int h=x/60/60;\n int m=x/60%60;\n int s=x%60;\n System.out.printf(\"%d:%d:%d\\n\",h,m,s);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int x=sc.nextInt();",
"x",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int h=x/60/60;",
"h",
"x/60/60",
"x/60/60",
"x",
"60",
"60",
"int m=x/60%60;",
"m",
"x/60%60",
"x/60",
"x",
"60",
"60",
"int s=x%60;",
"s",
"x%60",
"x",
"60",
"System.out.printf(\"%d:%d:%d\\n\",h,m,s)",
"System.out.printf",
"System.out",
"System",
"System.out",
"\"%d:%d:%d\\n\"",
"h",
"m",
"s",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int x=sc.nextInt();\n int h=x/60/60;\n int m=x/60%60;\n int s=x%60;\n System.out.printf(\"%d:%d:%d\\n\",h,m,s);\n }\n}",
"public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int x=sc.nextInt();\n int h=x/60/60;\n int m=x/60%60;\n int s=x%60;\n System.out.printf(\"%d:%d:%d\\n\",h,m,s);\n }\n}",
"Main"
] |
import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int x=sc.nextInt();
int h=x/60/60;
int m=x/60%60;
int s=x%60;
System.out.printf("%d:%d:%d\n",h,m,s);
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
53,
5
],
[
53,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
20,
22
],
[
19,
23
],
[
8,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
27,
28
],
[
27,
29
],
[
26,
30
],
[
8,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
33,
35
],
[
8,
36
],
[
36,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
36,
41
],
[
44,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
43,
47
],
[
42,
48
],
[
44,
49
],
[
6,
50
],
[
50,
51
],
[
0,
52
],
[
52,
53
],
[
52,
54
]
] | [
"import java.util.Scanner;\npublic class Main {\npublic static void main(String[] args) {\n\tScanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n int sec=(s%3600)%60;\n int min=(s%3600)/60;\n int hour=s/3600;\nSystem.out.println(hour+ \":\"+min +\":\"+sec);\n}}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\npublic static void main(String[] args) {\n\tScanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n int sec=(s%3600)%60;\n int min=(s%3600)/60;\n int hour=s/3600;\nSystem.out.println(hour+ \":\"+min +\":\"+sec);\n}}",
"Main",
"public static void main(String[] args) {\n\tScanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n int sec=(s%3600)%60;\n int min=(s%3600)/60;\n int hour=s/3600;\nSystem.out.println(hour+ \":\"+min +\":\"+sec);\n}",
"main",
"{\n\tScanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n int sec=(s%3600)%60;\n int min=(s%3600)/60;\n int hour=s/3600;\nSystem.out.println(hour+ \":\"+min +\":\"+sec);\n}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int s = sc.nextInt();",
"s",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int sec=(s%3600)%60;",
"sec",
"(s%3600)%60",
"(s%3600)",
"s",
"3600",
"60",
"int min=(s%3600)/60;",
"min",
"(s%3600)/60",
"(s%3600)",
"s",
"3600",
"60",
"int hour=s/3600;",
"hour",
"s/3600",
"s",
"3600",
"System.out.println(hour+ \":\"+min +\":\"+sec)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour+ \":\"+min +\":\"+sec",
"\":\"",
"min",
"hour+ \":\"+min +\":\"+sec",
"hour",
"\":\"",
"min",
"\":\"",
"sec",
"String[] args",
"args",
"public class Main {\npublic static void main(String[] args) {\n\tScanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n int sec=(s%3600)%60;\n int min=(s%3600)/60;\n int hour=s/3600;\nSystem.out.println(hour+ \":\"+min +\":\"+sec);\n}}",
"public class Main {\npublic static void main(String[] args) {\n\tScanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n int sec=(s%3600)%60;\n int min=(s%3600)/60;\n int hour=s/3600;\nSystem.out.println(hour+ \":\"+min +\":\"+sec);\n}}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int s = sc.nextInt();
int sec=(s%3600)%60;
int min=(s%3600)/60;
int hour=s/3600;
System.out.println(hour+ ":"+min +":"+sec);
}} |
[
7,
15,
13,
17,
6,
13,
41,
13,
20,
41,
13,
41,
13,
41,
13,
41,
13,
12,
13,
30,
0,
13,
4,
18,
13,
0,
13,
2,
13,
17,
0,
13,
2,
2,
13,
17,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
12,
13,
30,
4,
18,
20,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
4,
9
],
[
9,
10
],
[
4,
11
],
[
11,
12
],
[
4,
13
],
[
13,
14
],
[
4,
15
],
[
15,
16
],
[
4,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
19,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
27,
29
],
[
19,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
32,
36
],
[
19,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
39,
41
],
[
19,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
42,
47
],
[
50,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
49,
53
],
[
48,
54
],
[
50,
55
],
[
4,
56
],
[
56,
57
],
[
56,
58
],
[
58,
59
],
[
59,
60
],
[
60,
61
],
[
56,
62
],
[
62,
63
]
] | [
"import java.util.Scanner;\nclass Main{\n\t\n Scanner sc = new Scanner(System.in);\n\tint S;\n\tint h,m,s;\n\tvoid goo(){\n\t\tS = sc.nextInt();\n\t\th=S/3600;\n\t\tm=S%3600/60;\n\t\ts=S%60;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n\tpublic static void main(String[]agrs){\n\t\tnew Main().goo();\n\t}\n}\n\t",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main{\n\t\n Scanner sc = new Scanner(System.in);\n\tint S;\n\tint h,m,s;\n\tvoid goo(){\n\t\tS = sc.nextInt();\n\t\th=S/3600;\n\t\tm=S%3600/60;\n\t\ts=S%60;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n\tpublic static void main(String[]agrs){\n\t\tnew Main().goo();\n\t}\n}",
"Main",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int S;",
"S",
"int h",
"h",
"m",
"m",
"s;",
"s",
"void goo(){\n\t\tS = sc.nextInt();\n\t\th=S/3600;\n\t\tm=S%3600/60;\n\t\ts=S%60;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"goo",
"{\n\t\tS = sc.nextInt();\n\t\th=S/3600;\n\t\tm=S%3600/60;\n\t\ts=S%60;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"S = sc.nextInt()",
"S",
"sc.nextInt()",
"sc.nextInt",
"sc",
"h=S/3600",
"h",
"S/3600",
"S",
"3600",
"m=S%3600/60",
"m",
"S%3600/60",
"S%3600",
"S",
"3600",
"60",
"s=S%60",
"s",
"S%60",
"S",
"60",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"public static void main(String[]agrs){\n\t\tnew Main().goo();\n\t}",
"main",
"{\n\t\tnew Main().goo();\n\t}",
"new Main().goo()",
"new Main().goo",
"new Main()",
"String[]agrs",
"agrs"
] | import java.util.Scanner;
class Main{
Scanner sc = new Scanner(System.in);
int S;
int h,m,s;
void goo(){
S = sc.nextInt();
h=S/3600;
m=S%3600/60;
s=S%60;
System.out.println(h+":"+m+":"+s);
}
public static void main(String[]agrs){
new Main().goo();
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
2,
13,
17,
41,
13,
41,
13,
0,
13,
17,
0,
13,
2,
13,
17,
0,
13,
17,
0,
13,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
8,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
25,
27
],
[
8,
28
],
[
28,
29
],
[
8,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
37,
39
],
[
8,
40
],
[
40,
41
],
[
40,
42
],
[
8,
43
],
[
43,
44
],
[
43,
45
],
[
8,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
46,
51
],
[
54,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
52,
58
],
[
54,
59
],
[
6,
60
],
[
60,
61
]
] | [
"import java.io.*;\n\nclass Main{\n public static void main(String[] arg) throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n\n int x = Integer.parseInt(str), h=x/3600, m, s;\n x %= 3600;\n m = x/60;\n x %= 60;\n s = x;\n\n System.out.println(h + \":\" + m + \":\" + s);\n }\n}",
"import java.io.*;",
"io.*",
"java",
"class Main{\n public static void main(String[] arg) throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n\n int x = Integer.parseInt(str), h=x/3600, m, s;\n x %= 3600;\n m = x/60;\n x %= 60;\n s = x;\n\n System.out.println(h + \":\" + m + \":\" + s);\n }\n}",
"Main",
"public static void main(String[] arg) throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n\n int x = Integer.parseInt(str), h=x/3600, m, s;\n x %= 3600;\n m = x/60;\n x %= 60;\n s = x;\n\n System.out.println(h + \":\" + m + \":\" + s);\n }",
"main",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n\n int x = Integer.parseInt(str), h=x/3600, m, s;\n x %= 3600;\n m = x/60;\n x %= 60;\n s = x;\n\n System.out.println(h + \":\" + m + \":\" + s);\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String str = br.readLine();",
"str",
"br.readLine()",
"br.readLine",
"br",
"int x = Integer.parseInt(str)",
"x",
"Integer.parseInt(str)",
"Integer.parseInt",
"Integer",
"str",
"h=x/3600",
"h",
"x/3600",
"x",
"3600",
"m",
"m",
"s;",
"s",
"x %= 3600",
"x",
"3600",
"m = x/60",
"m",
"x/60",
"x",
"60",
"x %= 60",
"x",
"60",
"s = x",
"s",
"x",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] arg",
"arg"
] | import java.io.*;
class Main{
public static void main(String[] arg) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
int x = Integer.parseInt(str), h=x/3600, m, s;
x %= 3600;
m = x/60;
x %= 60;
s = x;
System.out.println(h + ":" + m + ":" + s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
41,
13,
0,
13,
4,
18,
13,
0,
13,
4,
18,
13,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
69,
11
],
[
69,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
14,
20
],
[
20,
21
],
[
14,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
14,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
29,
32
],
[
14,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
14,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
40,
44
],
[
14,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
47,
51
],
[
14,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
52,
57
],
[
60,
58
],
[
58,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
59,
63
],
[
58,
64
],
[
60,
65
],
[
12,
66
],
[
66,
67
],
[
0,
68
],
[
68,
69
],
[
68,
70
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString s;\n\tint x;\n\ts= buf.readLine();\n\tx= Integer.parseInt(s);\n\tint a = x/3600;\n\tint b = (x%3600)/60;\n\tint c = (x%3600)%60;\n\tSystem.out.println(a+\":\"+b+\":\"+c);\n\t}\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString s;\n\tint x;\n\ts= buf.readLine();\n\tx= Integer.parseInt(s);\n\tint a = x/3600;\n\tint b = (x%3600)/60;\n\tint c = (x%3600)%60;\n\tSystem.out.println(a+\":\"+b+\":\"+c);\n\t}\n}",
"Main",
"public static void main(String[] args)throws IOException{\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString s;\n\tint x;\n\ts= buf.readLine();\n\tx= Integer.parseInt(s);\n\tint a = x/3600;\n\tint b = (x%3600)/60;\n\tint c = (x%3600)%60;\n\tSystem.out.println(a+\":\"+b+\":\"+c);\n\t}",
"main",
"{\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString s;\n\tint x;\n\ts= buf.readLine();\n\tx= Integer.parseInt(s);\n\tint a = x/3600;\n\tint b = (x%3600)/60;\n\tint c = (x%3600)%60;\n\tSystem.out.println(a+\":\"+b+\":\"+c);\n\t}",
"BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));",
"buf",
"new BufferedReader(new InputStreamReader(System.in))",
"String s;",
"s",
"int x;",
"x",
"s= buf.readLine()",
"s",
"buf.readLine()",
"buf.readLine",
"buf",
"x= Integer.parseInt(s)",
"x",
"Integer.parseInt(s)",
"Integer.parseInt",
"Integer",
"s",
"int a = x/3600;",
"a",
"x/3600",
"x",
"3600",
"int b = (x%3600)/60;",
"b",
"(x%3600)/60",
"(x%3600)",
"x",
"3600",
"60",
"int c = (x%3600)%60;",
"c",
"(x%3600)%60",
"(x%3600)",
"x",
"3600",
"60",
"System.out.println(a+\":\"+b+\":\"+c)",
"System.out.println",
"System.out",
"System",
"System.out",
"a+\":\"+b+\":\"+c",
"\":\"",
"b",
"a+\":\"+b+\":\"+c",
"a",
"\":\"",
"b",
"\":\"",
"c",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString s;\n\tint x;\n\ts= buf.readLine();\n\tx= Integer.parseInt(s);\n\tint a = x/3600;\n\tint b = (x%3600)/60;\n\tint c = (x%3600)%60;\n\tSystem.out.println(a+\":\"+b+\":\"+c);\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString s;\n\tint x;\n\ts= buf.readLine();\n\tx= Integer.parseInt(s);\n\tint a = x/3600;\n\tint b = (x%3600)/60;\n\tint c = (x%3600)%60;\n\tSystem.out.println(a+\":\"+b+\":\"+c);\n\t}\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args)throws IOException{
BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
String s;
int x;
s= buf.readLine();
x= Integer.parseInt(s);
int a = x/3600;
int b = (x%3600)/60;
int c = (x%3600)%60;
System.out.println(a+":"+b+":"+c);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
41,
13,
41,
13,
0,
13,
2,
13,
17,
0,
13,
2,
2,
13,
17,
17,
0,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
71,
11
],
[
71,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
14,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
26,
27
],
[
25,
28
],
[
14,
29
],
[
29,
30
],
[
14,
31
],
[
31,
32
],
[
14,
33
],
[
33,
34
],
[
14,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
37,
39
],
[
14,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
42,
46
],
[
14,
47
],
[
47,
48
],
[
47,
49
],
[
50,
50
],
[
50,
51
],
[
50,
52
],
[
50,
53
],
[
14,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
54,
59
],
[
62,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
60,
66
],
[
62,
67
],
[
12,
68
],
[
68,
69
],
[
0,
70
],
[
70,
71
],
[
70,
72
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString str = br.readLine();\n\t\tint num = Integer.parseInt(str);\n\n\t\tint h;\n\t\tint m;\n\t\tint s;\n\n\t\ts = num%60;\n\t\tm = num/60%60;\n\t\th = num/60/60;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString str = br.readLine();\n\t\tint num = Integer.parseInt(str);\n\n\t\tint h;\n\t\tint m;\n\t\tint s;\n\n\t\ts = num%60;\n\t\tm = num/60%60;\n\t\th = num/60/60;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n\n}",
"Main",
"public static void main(String[] args) throws IOException{\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString str = br.readLine();\n\t\tint num = Integer.parseInt(str);\n\n\t\tint h;\n\t\tint m;\n\t\tint s;\n\n\t\ts = num%60;\n\t\tm = num/60%60;\n\t\th = num/60/60;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"main",
"{\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString str = br.readLine();\n\t\tint num = Integer.parseInt(str);\n\n\t\tint h;\n\t\tint m;\n\t\tint s;\n\n\t\ts = num%60;\n\t\tm = num/60%60;\n\t\th = num/60/60;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String str = br.readLine();",
"str",
"br.readLine()",
"br.readLine",
"br",
"int num = Integer.parseInt(str);",
"num",
"Integer.parseInt(str)",
"Integer.parseInt",
"Integer",
"str",
"int h;",
"h",
"int m;",
"m",
"int s;",
"s",
"s = num%60",
"s",
"num%60",
"num",
"60",
"m = num/60%60",
"m",
"num/60%60",
"num/60",
"num",
"60",
"60",
"h = num/60/60",
"h",
"num/60/60",
"num/60/60",
"num",
"60",
"60",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString str = br.readLine();\n\t\tint num = Integer.parseInt(str);\n\n\t\tint h;\n\t\tint m;\n\t\tint s;\n\n\t\ts = num%60;\n\t\tm = num/60%60;\n\t\th = num/60/60;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n\n}",
"public class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString str = br.readLine();\n\t\tint num = Integer.parseInt(str);\n\n\t\tint h;\n\t\tint m;\n\t\tint s;\n\n\t\ts = num%60;\n\t\tm = num/60%60;\n\t\th = num/60/60;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
int num = Integer.parseInt(str);
int h;
int m;
int s;
s = num%60;
m = num/60%60;
h = num/60/60;
System.out.println(h + ":" + m + ":" + s);
}
} |
[
7,
6,
13,
12,
13,
30,
41,
13,
4,
18,
20,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
2,
13,
2,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
50,
2
],
[
50,
3
],
[
3,
4
],
[
3,
5
],
[
5,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
5,
11
],
[
11,
12
],
[
11,
13
],
[
13,
14
],
[
13,
15
],
[
5,
16
],
[
16,
17
],
[
16,
18
],
[
18,
19
],
[
18,
20
],
[
5,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
23,
25
],
[
5,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
30,
32
],
[
5,
33
],
[
33,
34
],
[
34,
35
],
[
35,
36
],
[
35,
37
],
[
33,
38
],
[
41,
39
],
[
39,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
40,
44
],
[
39,
45
],
[
41,
46
],
[
3,
47
],
[
47,
48
],
[
0,
49
],
[
49,
50
],
[
49,
51
]
] | [
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tint inputSecond\t= new java.util.Scanner(System.in).nextInt();\n\t\t\n\t\tint second\t= inputSecond % 60;\n\t\tint minute\t= inputSecond / 60;\n\t\tminute\t\t= minute % 60;\n\t\tint hour\t= inputSecond / (60*60);\n\t\t\n\t\tSystem.out.println( hour + \":\" + minute + \":\" + second );\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tint inputSecond\t= new java.util.Scanner(System.in).nextInt();\n\t\t\n\t\tint second\t= inputSecond % 60;\n\t\tint minute\t= inputSecond / 60;\n\t\tminute\t\t= minute % 60;\n\t\tint hour\t= inputSecond / (60*60);\n\t\t\n\t\tSystem.out.println( hour + \":\" + minute + \":\" + second );\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tint inputSecond\t= new java.util.Scanner(System.in).nextInt();\n\t\t\n\t\tint second\t= inputSecond % 60;\n\t\tint minute\t= inputSecond / 60;\n\t\tminute\t\t= minute % 60;\n\t\tint hour\t= inputSecond / (60*60);\n\t\t\n\t\tSystem.out.println( hour + \":\" + minute + \":\" + second );\n\t}",
"main",
"{\n\t\tint inputSecond\t= new java.util.Scanner(System.in).nextInt();\n\t\t\n\t\tint second\t= inputSecond % 60;\n\t\tint minute\t= inputSecond / 60;\n\t\tminute\t\t= minute % 60;\n\t\tint hour\t= inputSecond / (60*60);\n\t\t\n\t\tSystem.out.println( hour + \":\" + minute + \":\" + second );\n\t}",
"int inputSecond\t= new java.util.Scanner(System.in).nextInt();",
"inputSecond",
"new java.util.Scanner(System.in).nextInt()",
"new java.util.Scanner(System.in).nextInt",
"new java.util.Scanner(System.in)",
"int second\t= inputSecond % 60;",
"second",
"inputSecond % 60",
"inputSecond",
"60",
"int minute\t= inputSecond / 60;",
"minute",
"inputSecond / 60",
"inputSecond",
"60",
"minute\t\t= minute % 60",
"minute",
"minute % 60",
"minute",
"60",
"int hour\t= inputSecond / (60*60);",
"hour",
"inputSecond / (60*60)",
"inputSecond",
"(60*60)",
"60",
"60",
"System.out.println( hour + \":\" + minute + \":\" + second )",
"System.out.println",
"System.out",
"System",
"System.out",
"hour + \":\" + minute + \":\" + second",
"\":\"",
"minute",
"hour + \":\" + minute + \":\" + second",
"hour",
"\":\"",
"minute",
"\":\"",
"second",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tint inputSecond\t= new java.util.Scanner(System.in).nextInt();\n\t\t\n\t\tint second\t= inputSecond % 60;\n\t\tint minute\t= inputSecond / 60;\n\t\tminute\t\t= minute % 60;\n\t\tint hour\t= inputSecond / (60*60);\n\t\t\n\t\tSystem.out.println( hour + \":\" + minute + \":\" + second );\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tint inputSecond\t= new java.util.Scanner(System.in).nextInt();\n\t\t\n\t\tint second\t= inputSecond % 60;\n\t\tint minute\t= inputSecond / 60;\n\t\tminute\t\t= minute % 60;\n\t\tint hour\t= inputSecond / (60*60);\n\t\t\n\t\tSystem.out.println( hour + \":\" + minute + \":\" + second );\n\t}\n}",
"Main"
] | public class Main {
public static void main(String[] args) {
int inputSecond = new java.util.Scanner(System.in).nextInt();
int second = inputSecond % 60;
int minute = inputSecond / 60;
minute = minute % 60;
int hour = inputSecond / (60*60);
System.out.println( hour + ":" + minute + ":" + second );
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
38,
5,
13,
30,
4,
18,
18,
13,
13,
2,
17,
4,
18,
13,
29,
30,
0,
13,
4,
18,
13,
41,
13,
38,
5,
13,
30,
4,
18,
18,
13,
13,
2,
17,
13,
29,
30,
0,
13,
4,
18,
13,
13,
41,
13,
20,
4,
18,
4,
18,
13,
2,
13,
17,
17,
0,
13,
17,
4,
18,
4,
18,
13,
2,
13,
17,
17,
0,
13,
17,
4,
18,
13,
13,
4,
18,
18,
13,
13,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
105,
11
],
[
105,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
14,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
24,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
32,
33
],
[
23,
34
],
[
20,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
39,
40
],
[
14,
41
],
[
41,
42
],
[
14,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
47,
52
],
[
52,
53
],
[
52,
54
],
[
46,
55
],
[
43,
56
],
[
56,
57
],
[
57,
58
],
[
57,
59
],
[
59,
60
],
[
60,
61
],
[
59,
62
],
[
14,
63
],
[
63,
64
],
[
63,
65
],
[
14,
66
],
[
66,
67
],
[
67,
68
],
[
68,
69
],
[
69,
70
],
[
68,
71
],
[
71,
72
],
[
71,
73
],
[
66,
74
],
[
14,
75
],
[
75,
76
],
[
75,
77
],
[
14,
78
],
[
78,
79
],
[
79,
80
],
[
80,
81
],
[
81,
82
],
[
80,
83
],
[
83,
84
],
[
83,
85
],
[
78,
86
],
[
14,
87
],
[
87,
88
],
[
87,
89
],
[
14,
90
],
[
90,
91
],
[
91,
92
],
[
90,
93
],
[
14,
94
],
[
94,
95
],
[
95,
96
],
[
96,
97
],
[
96,
98
],
[
94,
99
],
[
99,
100
],
[
100,
101
],
[
12,
102
],
[
102,
103
],
[
0,
104
],
[
104,
105
],
[
104,
106
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n public static void main(String[] args) {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line;\n\t\ttry {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\tSystem.err.println(\"The input is missing. \" + e.getMessage());\n\t\t\treturn;\n\t\t}\n\n\t\tint s;\n try {\n \ts = Integer.parseInt(line);\n } catch(Throwable e) {\n\t\t\tSystem.err.println(\"The input is in an illegal form. \" + line);\n\t\t\treturn;\n }\n\n StringBuilder b = new StringBuilder();\n b.append(s / 3600).append(':');\n\n s %= 3600;\n b.append(s / 60).append(':');\n\n s %= 60;\n b.append(s);\n\n System.out.println(b.toString());\n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n public static void main(String[] args) {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line;\n\t\ttry {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\tSystem.err.println(\"The input is missing. \" + e.getMessage());\n\t\t\treturn;\n\t\t}\n\n\t\tint s;\n try {\n \ts = Integer.parseInt(line);\n } catch(Throwable e) {\n\t\t\tSystem.err.println(\"The input is in an illegal form. \" + line);\n\t\t\treturn;\n }\n\n StringBuilder b = new StringBuilder();\n b.append(s / 3600).append(':');\n\n s %= 3600;\n b.append(s / 60).append(':');\n\n s %= 60;\n b.append(s);\n\n System.out.println(b.toString());\n }\n}",
"Main",
"public static void main(String[] args) {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line;\n\t\ttry {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\tSystem.err.println(\"The input is missing. \" + e.getMessage());\n\t\t\treturn;\n\t\t}\n\n\t\tint s;\n try {\n \ts = Integer.parseInt(line);\n } catch(Throwable e) {\n\t\t\tSystem.err.println(\"The input is in an illegal form. \" + line);\n\t\t\treturn;\n }\n\n StringBuilder b = new StringBuilder();\n b.append(s / 3600).append(':');\n\n s %= 3600;\n b.append(s / 60).append(':');\n\n s %= 60;\n b.append(s);\n\n System.out.println(b.toString());\n }",
"main",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line;\n\t\ttry {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\tSystem.err.println(\"The input is missing. \" + e.getMessage());\n\t\t\treturn;\n\t\t}\n\n\t\tint s;\n try {\n \ts = Integer.parseInt(line);\n } catch(Throwable e) {\n\t\t\tSystem.err.println(\"The input is in an illegal form. \" + line);\n\t\t\treturn;\n }\n\n StringBuilder b = new StringBuilder();\n b.append(s / 3600).append(':');\n\n s %= 3600;\n b.append(s / 60).append(':');\n\n s %= 60;\n b.append(s);\n\n System.out.println(b.toString());\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String line;",
"line",
"try {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\tSystem.err.println(\"The input is missing. \" + e.getMessage());\n\t\t\treturn;\n\t\t}",
"catch (IOException e) {\n\t\t\tSystem.err.println(\"The input is missing. \" + e.getMessage());\n\t\t\treturn;\n\t\t}",
"IOException e",
"{\n\t\t\tSystem.err.println(\"The input is missing. \" + e.getMessage());\n\t\t\treturn;\n\t\t}",
"System.err.println(\"The input is missing. \" + e.getMessage())",
"System.err.println",
"System.err",
"System",
"System.err",
"\"The input is missing. \" + e.getMessage()",
"\"The input is missing. \"",
"e.getMessage()",
"e.getMessage",
"e",
"return;",
"{\n\t\t\tline = br.readLine();\n\t\t}",
"line = br.readLine()",
"line",
"br.readLine()",
"br.readLine",
"br",
"int s;",
"s",
"try {\n \ts = Integer.parseInt(line);\n } catch(Throwable e) {\n\t\t\tSystem.err.println(\"The input is in an illegal form. \" + line);\n\t\t\treturn;\n }",
"catch(Throwable e) {\n\t\t\tSystem.err.println(\"The input is in an illegal form. \" + line);\n\t\t\treturn;\n }",
"Throwable e",
"{\n\t\t\tSystem.err.println(\"The input is in an illegal form. \" + line);\n\t\t\treturn;\n }",
"System.err.println(\"The input is in an illegal form. \" + line)",
"System.err.println",
"System.err",
"System",
"System.err",
"\"The input is in an illegal form. \" + line",
"\"The input is in an illegal form. \"",
"line",
"return;",
"{\n \ts = Integer.parseInt(line);\n }",
"s = Integer.parseInt(line)",
"s",
"Integer.parseInt(line)",
"Integer.parseInt",
"Integer",
"line",
"StringBuilder b = new StringBuilder();",
"b",
"new StringBuilder()",
"b.append(s / 3600).append(':')",
"b.append(s / 3600).append",
"b.append(s / 3600)",
"b.append",
"b",
"s / 3600",
"s",
"3600",
"':'",
"s %= 3600",
"s",
"3600",
"b.append(s / 60).append(':')",
"b.append(s / 60).append",
"b.append(s / 60)",
"b.append",
"b",
"s / 60",
"s",
"60",
"':'",
"s %= 60",
"s",
"60",
"b.append(s)",
"b.append",
"b",
"s",
"System.out.println(b.toString())",
"System.out.println",
"System.out",
"System",
"System.out",
"b.toString()",
"b.toString",
"b",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line;\n\t\ttry {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\tSystem.err.println(\"The input is missing. \" + e.getMessage());\n\t\t\treturn;\n\t\t}\n\n\t\tint s;\n try {\n \ts = Integer.parseInt(line);\n } catch(Throwable e) {\n\t\t\tSystem.err.println(\"The input is in an illegal form. \" + line);\n\t\t\treturn;\n }\n\n StringBuilder b = new StringBuilder();\n b.append(s / 3600).append(':');\n\n s %= 3600;\n b.append(s / 60).append(':');\n\n s %= 60;\n b.append(s);\n\n System.out.println(b.toString());\n }\n}",
"public class Main {\n public static void main(String[] args) {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line;\n\t\ttry {\n\t\t\tline = br.readLine();\n\t\t} catch (IOException e) {\n\t\t\tSystem.err.println(\"The input is missing. \" + e.getMessage());\n\t\t\treturn;\n\t\t}\n\n\t\tint s;\n try {\n \ts = Integer.parseInt(line);\n } catch(Throwable e) {\n\t\t\tSystem.err.println(\"The input is in an illegal form. \" + line);\n\t\t\treturn;\n }\n\n StringBuilder b = new StringBuilder();\n b.append(s / 3600).append(':');\n\n s %= 3600;\n b.append(s / 60).append(':');\n\n s %= 60;\n b.append(s);\n\n System.out.println(b.toString());\n }\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String line;
try {
line = br.readLine();
} catch (IOException e) {
System.err.println("The input is missing. " + e.getMessage());
return;
}
int s;
try {
s = Integer.parseInt(line);
} catch(Throwable e) {
System.err.println("The input is in an illegal form. " + line);
return;
}
StringBuilder b = new StringBuilder();
b.append(s / 3600).append(':');
s %= 3600;
b.append(s / 60).append(':');
s %= 60;
b.append(s);
System.out.println(b.toString());
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
41,
13,
41,
13,
41,
13,
41,
13,
20,
0,
13,
4,
18,
13,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
62,
5
],
[
62,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
8,
11
],
[
11,
12
],
[
8,
13
],
[
13,
14
],
[
8,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
8,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
27,
29
],
[
8,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
37,
39
],
[
8,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
42,
44
],
[
8,
45
],
[
45,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
45,
50
],
[
53,
51
],
[
51,
52
],
[
52,
53
],
[
53,
54
],
[
53,
55
],
[
52,
56
],
[
51,
57
],
[
53,
58
],
[
6,
59
],
[
59,
60
],
[
0,
61
],
[
61,
62
],
[
61,
63
]
] | [
"import java.util.*;\n\npublic class Main{\n\n\tpublic static void main(String[] args) throws \n\njava.io.IOException {\n\t\tint x,h,m,s;\n\t\tScanner in = new Scanner(System.in);\n\t\tx = in.nextInt();\n\t\th = x / 3600;\n\t\tx = x % 3600;\n\t\tm = x / 60;\n\t\ts = x % 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main{\n\n\tpublic static void main(String[] args) throws \n\njava.io.IOException {\n\t\tint x,h,m,s;\n\t\tScanner in = new Scanner(System.in);\n\t\tx = in.nextInt();\n\t\th = x / 3600;\n\t\tx = x % 3600;\n\t\tm = x / 60;\n\t\ts = x % 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"Main",
"public static void main(String[] args) throws \n\njava.io.IOException {\n\t\tint x,h,m,s;\n\t\tScanner in = new Scanner(System.in);\n\t\tx = in.nextInt();\n\t\th = x / 3600;\n\t\tx = x % 3600;\n\t\tm = x / 60;\n\t\ts = x % 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"main",
"{\n\t\tint x,h,m,s;\n\t\tScanner in = new Scanner(System.in);\n\t\tx = in.nextInt();\n\t\th = x / 3600;\n\t\tx = x % 3600;\n\t\tm = x / 60;\n\t\ts = x % 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"int x",
"x",
"h",
"h",
"m",
"m",
"s;",
"s",
"Scanner in = new Scanner(System.in);",
"in",
"new Scanner(System.in)",
"x = in.nextInt()",
"x",
"in.nextInt()",
"in.nextInt",
"in",
"h = x / 3600",
"h",
"x / 3600",
"x",
"3600",
"x = x % 3600",
"x",
"x % 3600",
"x",
"3600",
"m = x / 60",
"m",
"x / 60",
"x",
"60",
"s = x % 60",
"s",
"x % 60",
"x",
"60",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main{\n\n\tpublic static void main(String[] args) throws \n\njava.io.IOException {\n\t\tint x,h,m,s;\n\t\tScanner in = new Scanner(System.in);\n\t\tx = in.nextInt();\n\t\th = x / 3600;\n\t\tx = x % 3600;\n\t\tm = x / 60;\n\t\ts = x % 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"public class Main{\n\n\tpublic static void main(String[] args) throws \n\njava.io.IOException {\n\t\tint x,h,m,s;\n\t\tScanner in = new Scanner(System.in);\n\t\tx = in.nextInt();\n\t\th = x / 3600;\n\t\tx = x % 3600;\n\t\tm = x / 60;\n\t\ts = x % 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"Main"
] | import java.util.*;
public class Main{
public static void main(String[] args) throws
java.io.IOException {
int x,h,m,s;
Scanner in = new Scanner(System.in);
x = in.nextInt();
h = x / 3600;
x = x % 3600;
m = x / 60;
s = x % 60;
System.out.println(h + ":" + m + ":" + s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
60,
8
],
[
60,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
11,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
22,
25
],
[
11,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
28,
30
],
[
11,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
11,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
40,
42
],
[
11,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
43,
48
],
[
51,
49
],
[
49,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
49,
55
],
[
51,
56
],
[
9,
57
],
[
57,
58
],
[
0,
59
],
[
59,
60
],
[
59,
61
]
] | [
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n \npublic class Main{\n public static void main(String args[])throws java.lang.Exception{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n //変数に配列を代入\n int s =Integer.parseInt(line);\n int h = s / 3600;\n int m = (s % 3600) / 60;\n s = s % 60;\n System.out.println(h+\":\"+m+\":\"+s);\n \n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main{\n public static void main(String args[])throws java.lang.Exception{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n //変数に配列を代入\n int s =Integer.parseInt(line);\n int h = s / 3600;\n int m = (s % 3600) / 60;\n s = s % 60;\n System.out.println(h+\":\"+m+\":\"+s);\n \n }\n}",
"Main",
"public static void main(String args[])throws java.lang.Exception{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n //変数に配列を代入\n int s =Integer.parseInt(line);\n int h = s / 3600;\n int m = (s % 3600) / 60;\n s = s % 60;\n System.out.println(h+\":\"+m+\":\"+s);\n \n }",
"main",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n //変数に配列を代入\n int s =Integer.parseInt(line);\n int h = s / 3600;\n int m = (s % 3600) / 60;\n s = s % 60;\n System.out.println(h+\":\"+m+\":\"+s);\n \n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String line = br.readLine();",
"line",
"br.readLine()",
"br.readLine",
"br",
"int s =Integer.parseInt(line);",
"s",
"Integer.parseInt(line)",
"Integer.parseInt",
"Integer",
"line",
"int h = s / 3600;",
"h",
"s / 3600",
"s",
"3600",
"int m = (s % 3600) / 60;",
"m",
"(s % 3600) / 60",
"(s % 3600)",
"s",
"3600",
"60",
"s = s % 60",
"s",
"s % 60",
"s",
"60",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String args[]",
"args",
"public class Main{\n public static void main(String args[])throws java.lang.Exception{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n //変数に配列を代入\n int s =Integer.parseInt(line);\n int h = s / 3600;\n int m = (s % 3600) / 60;\n s = s % 60;\n System.out.println(h+\":\"+m+\":\"+s);\n \n }\n}",
"public class Main{\n public static void main(String args[])throws java.lang.Exception{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n //変数に配列を代入\n int s =Integer.parseInt(line);\n int h = s / 3600;\n int m = (s % 3600) / 60;\n s = s % 60;\n System.out.println(h+\":\"+m+\":\"+s);\n \n }\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Main{
public static void main(String args[])throws java.lang.Exception{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String line = br.readLine();
//変数に配列を代入
int s =Integer.parseInt(line);
int h = s / 3600;
int m = (s % 3600) / 60;
s = s % 60;
System.out.println(h+":"+m+":"+s);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
0,
13,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
17,
13,
13,
2,
13,
17,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
44,
5
],
[
44,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
8,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
27,
29
],
[
8,
30
],
[
30,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
30,
35
],
[
30,
36
],
[
30,
37
],
[
30,
38
],
[
38,
39
],
[
38,
40
],
[
6,
41
],
[
41,
42
],
[
0,
43
],
[
43,
44
],
[
43,
45
]
] | [
"import java.util.*;\npublic class Main \n{\n\tpublic static void main(String[] args) \n\t{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint S = sc.nextInt();\n\t\tint h = S / 3600;\n\t\tS %= 3600;\n\t\tint m = S / 60;\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", h, m, S % 60);\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main \n{\n\tpublic static void main(String[] args) \n\t{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint S = sc.nextInt();\n\t\tint h = S / 3600;\n\t\tS %= 3600;\n\t\tint m = S / 60;\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", h, m, S % 60);\n\t}\n}",
"Main",
"public static void main(String[] args) \n\t{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint S = sc.nextInt();\n\t\tint h = S / 3600;\n\t\tS %= 3600;\n\t\tint m = S / 60;\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", h, m, S % 60);\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint S = sc.nextInt();\n\t\tint h = S / 3600;\n\t\tS %= 3600;\n\t\tint m = S / 60;\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", h, m, S % 60);\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int S = sc.nextInt();",
"S",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int h = S / 3600;",
"h",
"S / 3600",
"S",
"3600",
"S %= 3600",
"S",
"3600",
"int m = S / 60;",
"m",
"S / 60",
"S",
"60",
"System.out.printf(\"%d:%d:%d\\n\", h, m, S % 60)",
"System.out.printf",
"System.out",
"System",
"System.out",
"\"%d:%d:%d\\n\"",
"h",
"m",
"S % 60",
"S",
"60",
"String[] args",
"args",
"public class Main \n{\n\tpublic static void main(String[] args) \n\t{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint S = sc.nextInt();\n\t\tint h = S / 3600;\n\t\tS %= 3600;\n\t\tint m = S / 60;\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", h, m, S % 60);\n\t}\n}",
"public class Main \n{\n\tpublic static void main(String[] args) \n\t{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint S = sc.nextInt();\n\t\tint h = S / 3600;\n\t\tS %= 3600;\n\t\tint m = S / 60;\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", h, m, S % 60);\n\t}\n}",
"Main"
] | import java.util.*;
public class Main
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
int S = sc.nextInt();
int h = S / 3600;
S %= 3600;
int m = S / 60;
System.out.printf("%d:%d:%d\n", h, m, S % 60);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
29,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
2,
17,
13,
29,
41,
13,
2,
13,
17,
41,
13,
2,
13,
2,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
18,
19
],
[
18,
20
],
[
17,
21
],
[
21,
22
],
[
22,
23
],
[
23,
24
],
[
24,
25
],
[
24,
26
],
[
22,
27
],
[
21,
28
],
[
8,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
31,
33
],
[
8,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
36,
38
],
[
8,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
39,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
44,
49
],
[
49,
50
],
[
49,
51
],
[
43,
52
],
[
8,
53
],
[
53,
54
],
[
53,
55
],
[
55,
56
],
[
55,
57
],
[
8,
58
],
[
58,
59
],
[
58,
60
],
[
60,
61
],
[
60,
62
],
[
62,
63
],
[
62,
64
],
[
8,
65
],
[
65,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
65,
70
],
[
73,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
72,
76
],
[
71,
77
],
[
73,
78
],
[
6,
79
],
[
79,
80
]
] | [
"import java.util.Scanner;\nclass Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int secTime = sc.nextInt();\n if (secTime == 0) {\n System.out.println(\"0:0:0\");\n return;\n }\n int ansSec = secTime % 60;\n int min = secTime / 60;\n if (min == 0) {\n System.out.println(\"0:0:\" + ansSec);\n return;\n }\n int ansMin = min % 60;\n int ansHour = secTime / (60 * 60);\n System.out.println(ansHour + \":\" + ansMin + \":\" + ansSec);\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int secTime = sc.nextInt();\n if (secTime == 0) {\n System.out.println(\"0:0:0\");\n return;\n }\n int ansSec = secTime % 60;\n int min = secTime / 60;\n if (min == 0) {\n System.out.println(\"0:0:\" + ansSec);\n return;\n }\n int ansMin = min % 60;\n int ansHour = secTime / (60 * 60);\n System.out.println(ansHour + \":\" + ansMin + \":\" + ansSec);\n }\n}",
"Main",
"public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int secTime = sc.nextInt();\n if (secTime == 0) {\n System.out.println(\"0:0:0\");\n return;\n }\n int ansSec = secTime % 60;\n int min = secTime / 60;\n if (min == 0) {\n System.out.println(\"0:0:\" + ansSec);\n return;\n }\n int ansMin = min % 60;\n int ansHour = secTime / (60 * 60);\n System.out.println(ansHour + \":\" + ansMin + \":\" + ansSec);\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int secTime = sc.nextInt();\n if (secTime == 0) {\n System.out.println(\"0:0:0\");\n return;\n }\n int ansSec = secTime % 60;\n int min = secTime / 60;\n if (min == 0) {\n System.out.println(\"0:0:\" + ansSec);\n return;\n }\n int ansMin = min % 60;\n int ansHour = secTime / (60 * 60);\n System.out.println(ansHour + \":\" + ansMin + \":\" + ansSec);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int secTime = sc.nextInt();",
"secTime",
"sc.nextInt()",
"sc.nextInt",
"sc",
"if (secTime == 0) {\n System.out.println(\"0:0:0\");\n return;\n }",
"secTime == 0",
"secTime",
"0",
"{\n System.out.println(\"0:0:0\");\n return;\n }",
"System.out.println(\"0:0:0\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"0:0:0\"",
"return;",
"int ansSec = secTime % 60;",
"ansSec",
"secTime % 60",
"secTime",
"60",
"int min = secTime / 60;",
"min",
"secTime / 60",
"secTime",
"60",
"if (min == 0) {\n System.out.println(\"0:0:\" + ansSec);\n return;\n }",
"min == 0",
"min",
"0",
"{\n System.out.println(\"0:0:\" + ansSec);\n return;\n }",
"System.out.println(\"0:0:\" + ansSec)",
"System.out.println",
"System.out",
"System",
"System.out",
"\"0:0:\" + ansSec",
"\"0:0:\"",
"ansSec",
"return;",
"int ansMin = min % 60;",
"ansMin",
"min % 60",
"min",
"60",
"int ansHour = secTime / (60 * 60);",
"ansHour",
"secTime / (60 * 60)",
"secTime",
"(60 * 60)",
"60",
"60",
"System.out.println(ansHour + \":\" + ansMin + \":\" + ansSec)",
"System.out.println",
"System.out",
"System",
"System.out",
"ansHour + \":\" + ansMin + \":\" + ansSec",
"\":\"",
"ansMin",
"ansHour + \":\" + ansMin + \":\" + ansSec",
"ansHour",
"\":\"",
"ansMin",
"\":\"",
"ansSec",
"String[] args",
"args"
] | import java.util.Scanner;
class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int secTime = sc.nextInt();
if (secTime == 0) {
System.out.println("0:0:0");
return;
}
int ansSec = secTime % 60;
int min = secTime / 60;
if (min == 0) {
System.out.println("0:0:" + ansSec);
return;
}
int ansMin = min % 60;
int ansHour = secTime / (60 * 60);
System.out.println(ansHour + ":" + ansMin + ":" + ansSec);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
17,
41,
13,
17,
4,
18,
18,
13,
13,
2,
2,
13,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
13,
13,
13,
17,
4,
18,
18,
13,
13,
2,
2,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
58,
5
],
[
58,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
8,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
23,
28
],
[
28,
29
],
[
29,
30
],
[
29,
31
],
[
28,
32
],
[
8,
33
],
[
33,
34
],
[
34,
35
],
[
35,
36
],
[
35,
37
],
[
33,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
39,
43
],
[
38,
44
],
[
8,
45
],
[
45,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
45,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
6,
55
],
[
55,
56
],
[
0,
57
],
[
57,
58
],
[
57,
59
]
] | [
"\nimport java.util.Scanner;\n\npublic class Main\n{\n public static void main(String[] args)\n {\n Scanner scan = new Scanner(System.in);\n \n int S = scan.nextInt();\n int h = 3600;\n int m = 60;\n \n \n System.out.print(S/h +\":\");\n System.out.print((S%h)/m +\":\");\n System.out.println((S%h)%m);\n \n }\n}\n",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main\n{\n public static void main(String[] args)\n {\n Scanner scan = new Scanner(System.in);\n \n int S = scan.nextInt();\n int h = 3600;\n int m = 60;\n \n \n System.out.print(S/h +\":\");\n System.out.print((S%h)/m +\":\");\n System.out.println((S%h)%m);\n \n }\n}",
"Main",
"public static void main(String[] args)\n {\n Scanner scan = new Scanner(System.in);\n \n int S = scan.nextInt();\n int h = 3600;\n int m = 60;\n \n \n System.out.print(S/h +\":\");\n System.out.print((S%h)/m +\":\");\n System.out.println((S%h)%m);\n \n }",
"main",
"{\n Scanner scan = new Scanner(System.in);\n \n int S = scan.nextInt();\n int h = 3600;\n int m = 60;\n \n \n System.out.print(S/h +\":\");\n System.out.print((S%h)/m +\":\");\n System.out.println((S%h)%m);\n \n }",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int S = scan.nextInt();",
"S",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int h = 3600;",
"h",
"3600",
"int m = 60;",
"m",
"60",
"System.out.print(S/h +\":\")",
"System.out.print",
"System.out",
"System",
"System.out",
"S/h +\":\"",
"S/h",
"S",
"h",
"\":\"",
"System.out.print((S%h)/m +\":\")",
"System.out.print",
"System.out",
"System",
"System.out",
"(S%h)/m +\":\"",
"(S%h)/m",
"(S%h)",
"S",
"h",
"m",
"\":\"",
"System.out.println((S%h)%m)",
"System.out.println",
"System.out",
"System",
"System.out",
"(S%h)%m",
"(S%h)",
"S",
"h",
"m",
"String[] args",
"args",
"public class Main\n{\n public static void main(String[] args)\n {\n Scanner scan = new Scanner(System.in);\n \n int S = scan.nextInt();\n int h = 3600;\n int m = 60;\n \n \n System.out.print(S/h +\":\");\n System.out.print((S%h)/m +\":\");\n System.out.println((S%h)%m);\n \n }\n}",
"public class Main\n{\n public static void main(String[] args)\n {\n Scanner scan = new Scanner(System.in);\n \n int S = scan.nextInt();\n int h = 3600;\n int m = 60;\n \n \n System.out.print(S/h +\":\");\n System.out.print((S%h)/m +\":\");\n System.out.println((S%h)%m);\n \n }\n}",
"Main"
] |
import java.util.Scanner;
public class Main
{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
int S = scan.nextInt();
int h = 3600;
int m = 60;
System.out.print(S/h +":");
System.out.print((S%h)/m +":");
System.out.println((S%h)%m);
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
0,
13,
2,
13,
2,
13,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
2,
13,
17,
41,
13,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
61,
5
],
[
61,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
26,
28
],
[
8,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
31,
33
],
[
8,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
38,
40
],
[
8,
41
],
[
41,
42
],
[
41,
43
],
[
8,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
44,
49
],
[
52,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
51,
55
],
[
50,
56
],
[
52,
57
],
[
6,
58
],
[
58,
59
],
[
0,
60
],
[
60,
61
],
[
60,
62
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint time = scan.nextInt();\n\t\tint hour = time / 3600;\n\t\ttime = time - hour * 3600;\n\t\tint min = time / 60;\n\t\ttime = time - min * 60;\n\t\tint sec = time;\n\t\t\n\t\tSystem.out.println(hour + \":\" + min + \":\" + sec);\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint time = scan.nextInt();\n\t\tint hour = time / 3600;\n\t\ttime = time - hour * 3600;\n\t\tint min = time / 60;\n\t\ttime = time - min * 60;\n\t\tint sec = time;\n\t\t\n\t\tSystem.out.println(hour + \":\" + min + \":\" + sec);\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint time = scan.nextInt();\n\t\tint hour = time / 3600;\n\t\ttime = time - hour * 3600;\n\t\tint min = time / 60;\n\t\ttime = time - min * 60;\n\t\tint sec = time;\n\t\t\n\t\tSystem.out.println(hour + \":\" + min + \":\" + sec);\n\t}",
"main",
"{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint time = scan.nextInt();\n\t\tint hour = time / 3600;\n\t\ttime = time - hour * 3600;\n\t\tint min = time / 60;\n\t\ttime = time - min * 60;\n\t\tint sec = time;\n\t\t\n\t\tSystem.out.println(hour + \":\" + min + \":\" + sec);\n\t}",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int time = scan.nextInt();",
"time",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int hour = time / 3600;",
"hour",
"time / 3600",
"time",
"3600",
"time = time - hour * 3600",
"time",
"time - hour * 3600",
"time",
"hour * 3600",
"hour",
"3600",
"int min = time / 60;",
"min",
"time / 60",
"time",
"60",
"time = time - min * 60",
"time",
"time - min * 60",
"time",
"min * 60",
"min",
"60",
"int sec = time;",
"sec",
"time",
"System.out.println(hour + \":\" + min + \":\" + sec)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour + \":\" + min + \":\" + sec",
"\":\"",
"min",
"hour + \":\" + min + \":\" + sec",
"hour",
"\":\"",
"min",
"\":\"",
"sec",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint time = scan.nextInt();\n\t\tint hour = time / 3600;\n\t\ttime = time - hour * 3600;\n\t\tint min = time / 60;\n\t\ttime = time - min * 60;\n\t\tint sec = time;\n\t\t\n\t\tSystem.out.println(hour + \":\" + min + \":\" + sec);\n\t}\n\n}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint time = scan.nextInt();\n\t\tint hour = time / 3600;\n\t\ttime = time - hour * 3600;\n\t\tint min = time / 60;\n\t\ttime = time - min * 60;\n\t\tint sec = time;\n\t\t\n\t\tSystem.out.println(hour + \":\" + min + \":\" + sec);\n\t}\n\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int time = scan.nextInt();
int hour = time / 3600;
time = time - hour * 3600;
int min = time / 60;
time = time - min * 60;
int sec = time;
System.out.println(hour + ":" + min + ":" + sec);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
2,
13,
17,
17,
41,
13,
2,
2,
13,
2,
13,
17,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
27,
29
],
[
24,
30
],
[
8,
31
],
[
31,
32
],
[
31,
33
],
[
34,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
36,
38
],
[
34,
39
],
[
39,
40
],
[
39,
41
],
[
8,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
42,
47
],
[
50,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
49,
53
],
[
48,
54
],
[
50,
55
],
[
6,
56
],
[
56,
57
]
] | [
"import java.util.Scanner;\nclass Main{\npublic static void main(String[] args){\nScanner sc = new Scanner(System.in);\nint S = sc.nextInt();\nint h = S / 3600;\nint m = (S - h * 3600)/60;\nint s = S - h * 3600 - m * 60;\nSystem.out.println(h+\":\"+m+\":\"+s); \n}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main{\npublic static void main(String[] args){\nScanner sc = new Scanner(System.in);\nint S = sc.nextInt();\nint h = S / 3600;\nint m = (S - h * 3600)/60;\nint s = S - h * 3600 - m * 60;\nSystem.out.println(h+\":\"+m+\":\"+s); \n}\n}",
"Main",
"public static void main(String[] args){\nScanner sc = new Scanner(System.in);\nint S = sc.nextInt();\nint h = S / 3600;\nint m = (S - h * 3600)/60;\nint s = S - h * 3600 - m * 60;\nSystem.out.println(h+\":\"+m+\":\"+s); \n}",
"main",
"{\nScanner sc = new Scanner(System.in);\nint S = sc.nextInt();\nint h = S / 3600;\nint m = (S - h * 3600)/60;\nint s = S - h * 3600 - m * 60;\nSystem.out.println(h+\":\"+m+\":\"+s); \n}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int S = sc.nextInt();",
"S",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int h = S / 3600;",
"h",
"S / 3600",
"S",
"3600",
"int m = (S - h * 3600)/60;",
"m",
"(S - h * 3600)/60",
"(S - h * 3600)",
"S",
"h * 3600",
"h",
"3600",
"60",
"int s = S - h * 3600 - m * 60;",
"s",
"S - h * 3600 - m * 60",
"S - h * 3600 - m * 60",
"S",
"h * 3600",
"h",
"3600",
"m * 60",
"m",
"60",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args"
] | import java.util.Scanner;
class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int S = sc.nextInt();
int h = S / 3600;
int m = (S - h * 3600)/60;
int s = S - h * 3600 - m * 60;
System.out.println(h+":"+m+":"+s);
}
}
|
[
7,
15,
13,
17,
6,
13,
41,
13,
17,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
13,
2,
17,
17,
4,
18,
18,
13,
13,
4,
18,
13,
13,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
54,
5
],
[
54,
6
],
[
6,
7
],
[
6,
8
],
[
54,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
11,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
22,
24
],
[
11,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
28,
29
],
[
28,
30
],
[
27,
31
],
[
11,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
36,
38
],
[
11,
39
],
[
39,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
39,
44
],
[
44,
45
],
[
45,
46
],
[
44,
47
],
[
44,
48
],
[
44,
49
],
[
44,
50
],
[
9,
51
],
[
51,
52
],
[
0,
53
],
[
53,
54
],
[
53,
55
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n\n private static final String FORMAT = \"%d:%d:%d\";\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int targetSec = scanner.nextInt();\n\n int sec = targetSec % 60;\n int min = (targetSec / 60) % 60;\n int hour = (targetSec / (60 * 60));\n System.out.println(String.format(FORMAT, hour, min, sec));\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n private static final String FORMAT = \"%d:%d:%d\";\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int targetSec = scanner.nextInt();\n\n int sec = targetSec % 60;\n int min = (targetSec / 60) % 60;\n int hour = (targetSec / (60 * 60));\n System.out.println(String.format(FORMAT, hour, min, sec));\n }\n}",
"Main",
"private static final String FORMAT = \"%d:%d:%d\";",
"FORMAT",
"\"%d:%d:%d\"",
"public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int targetSec = scanner.nextInt();\n\n int sec = targetSec % 60;\n int min = (targetSec / 60) % 60;\n int hour = (targetSec / (60 * 60));\n System.out.println(String.format(FORMAT, hour, min, sec));\n }",
"main",
"{\n Scanner scanner = new Scanner(System.in);\n int targetSec = scanner.nextInt();\n\n int sec = targetSec % 60;\n int min = (targetSec / 60) % 60;\n int hour = (targetSec / (60 * 60));\n System.out.println(String.format(FORMAT, hour, min, sec));\n }",
"Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"int targetSec = scanner.nextInt();",
"targetSec",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"int sec = targetSec % 60;",
"sec",
"targetSec % 60",
"targetSec",
"60",
"int min = (targetSec / 60) % 60;",
"min",
"(targetSec / 60) % 60",
"(targetSec / 60)",
"targetSec",
"60",
"60",
"int hour = (targetSec / (60 * 60));",
"hour",
"(targetSec / (60 * 60))",
"targetSec",
"(60 * 60)",
"60",
"60",
"System.out.println(String.format(FORMAT, hour, min, sec))",
"System.out.println",
"System.out",
"System",
"System.out",
"String.format(FORMAT, hour, min, sec)",
"String.format",
"String",
"FORMAT",
"hour",
"min",
"sec",
"String[] args",
"args",
"public class Main {\n\n private static final String FORMAT = \"%d:%d:%d\";\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int targetSec = scanner.nextInt();\n\n int sec = targetSec % 60;\n int min = (targetSec / 60) % 60;\n int hour = (targetSec / (60 * 60));\n System.out.println(String.format(FORMAT, hour, min, sec));\n }\n}",
"public class Main {\n\n private static final String FORMAT = \"%d:%d:%d\";\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int targetSec = scanner.nextInt();\n\n int sec = targetSec % 60;\n int min = (targetSec / 60) % 60;\n int hour = (targetSec / (60 * 60));\n System.out.println(String.format(FORMAT, hour, min, sec));\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main {
private static final String FORMAT = "%d:%d:%d";
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int targetSec = scanner.nextInt();
int sec = targetSec % 60;
int min = (targetSec / 60) % 60;
int hour = (targetSec / (60 * 60));
System.out.println(String.format(FORMAT, hour, min, sec));
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
17,
13,
13,
13,
6,
13,
12,
13,
30,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
24,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
29,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
34,
36
],
[
8,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
37,
42
],
[
37,
43
],
[
37,
44
],
[
37,
45
],
[
0,
46
],
[
57,
47
],
[
57,
48
],
[
48,
49
],
[
48,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
48,
54
],
[
54,
55
],
[
0,
56
],
[
56,
57
],
[
56,
58
]
] | [
"import java.util.Scanner;\n\nclass Watch {\n static void run() {\n Scanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n int m = s / 60;\n int ss = s % 60;\n int h = m / 60;\n int mm = m % 60;\n System.out.printf(\"%d:%d:%d%n\", h, mm, ss);\n }\n}\npublic class Main {\n public static void main(String[] args) {\n Watch.run();\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Watch {\n static void run() {\n Scanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n int m = s / 60;\n int ss = s % 60;\n int h = m / 60;\n int mm = m % 60;\n System.out.printf(\"%d:%d:%d%n\", h, mm, ss);\n }\n}",
"Watch",
"static void run() {\n Scanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n int m = s / 60;\n int ss = s % 60;\n int h = m / 60;\n int mm = m % 60;\n System.out.printf(\"%d:%d:%d%n\", h, mm, ss);\n }",
"run",
"{\n Scanner sc = new Scanner(System.in);\n int s = sc.nextInt();\n int m = s / 60;\n int ss = s % 60;\n int h = m / 60;\n int mm = m % 60;\n System.out.printf(\"%d:%d:%d%n\", h, mm, ss);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int s = sc.nextInt();",
"s",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int m = s / 60;",
"m",
"s / 60",
"s",
"60",
"int ss = s % 60;",
"ss",
"s % 60",
"s",
"60",
"int h = m / 60;",
"h",
"m / 60",
"m",
"60",
"int mm = m % 60;",
"mm",
"m % 60",
"m",
"60",
"System.out.printf(\"%d:%d:%d%n\", h, mm, ss)",
"System.out.printf",
"System.out",
"System",
"System.out",
"\"%d:%d:%d%n\"",
"h",
"mm",
"ss",
"public class Main {\n public static void main(String[] args) {\n Watch.run();\n }\n}",
"Main",
"public static void main(String[] args) {\n Watch.run();\n }",
"main",
"{\n Watch.run();\n }",
"Watch.run()",
"Watch.run",
"Watch",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Watch.run();\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Watch.run();\n }\n}",
"Main"
] | import java.util.Scanner;
class Watch {
static void run() {
Scanner sc = new Scanner(System.in);
int s = sc.nextInt();
int m = s / 60;
int ss = s % 60;
int h = m / 60;
int mm = m % 60;
System.out.printf("%d:%d:%d%n", h, mm, ss);
}
}
public class Main {
public static void main(String[] args) {
Watch.run();
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
38,
5,
13,
30,
4,
18,
18,
13,
13,
4,
18,
13,
30,
41,
13,
20,
41,
13,
20,
4,
18,
18,
13,
13,
4,
18,
13,
23,
13,
6,
13,
41,
13,
12,
13,
30,
41,
13,
4,
18,
4,
18,
13,
0,
18,
36,
13,
4,
18,
13,
13,
23,
13,
12,
13,
30,
29,
2,
18,
36,
13,
4,
18,
18,
13,
13,
17,
12,
13,
30,
41,
13,
2,
2,
18,
36,
13,
4,
18,
36,
4,
18,
18,
13,
13,
17,
29,
4,
18,
18,
13,
13,
13,
12,
13,
30,
41,
13,
2,
2,
2,
18,
36,
13,
4,
18,
36,
4,
18,
36,
4,
18,
18,
13,
13,
17,
29,
4,
18,
18,
13,
13,
13,
12,
13,
30,
41,
13,
20,
4,
18,
13,
4,
18,
4,
18,
36,
4,
18,
13,
17,
4,
18,
13,
4,
18,
36,
4,
18,
13,
17,
4,
18,
13,
4,
18,
36,
29,
4,
18,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
10,
11
],
[
10,
12
],
[
0,
13
],
[
180,
14
],
[
180,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
21,
22
],
[
22,
23
],
[
23,
24
],
[
24,
25
],
[
24,
26
],
[
22,
27
],
[
27,
28
],
[
28,
29
],
[
18,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
30,
34
],
[
34,
35
],
[
34,
36
],
[
30,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
37,
42
],
[
42,
43
],
[
43,
44
],
[
15,
45
],
[
45,
46
],
[
0,
47
],
[
47,
48
],
[
47,
49
],
[
49,
50
],
[
47,
51
],
[
51,
52
],
[
51,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
56,
57
],
[
57,
58
],
[
58,
59
],
[
59,
60
],
[
53,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
65,
66
],
[
66,
67
],
[
65,
68
],
[
51,
69
],
[
69,
70
],
[
47,
71
],
[
71,
72
],
[
71,
73
],
[
73,
74
],
[
74,
75
],
[
75,
76
],
[
76,
77
],
[
76,
78
],
[
75,
79
],
[
79,
80
],
[
80,
81
],
[
81,
82
],
[
81,
83
],
[
79,
84
],
[
47,
85
],
[
85,
86
],
[
85,
87
],
[
87,
88
],
[
88,
89
],
[
88,
90
],
[
90,
91
],
[
91,
92
],
[
92,
93
],
[
92,
94
],
[
91,
95
],
[
95,
96
],
[
96,
97
],
[
90,
98
],
[
98,
99
],
[
99,
100
],
[
100,
101
],
[
100,
102
],
[
98,
103
],
[
87,
104
],
[
104,
105
],
[
105,
106
],
[
106,
107
],
[
107,
108
],
[
107,
109
],
[
105,
110
],
[
47,
111
],
[
111,
112
],
[
111,
113
],
[
113,
114
],
[
114,
115
],
[
114,
116
],
[
116,
117
],
[
117,
118
],
[
118,
119
],
[
119,
120
],
[
119,
121
],
[
118,
122
],
[
122,
123
],
[
123,
124
],
[
117,
125
],
[
125,
126
],
[
126,
127
],
[
116,
128
],
[
128,
129
],
[
129,
130
],
[
130,
131
],
[
130,
132
],
[
128,
133
],
[
113,
134
],
[
134,
135
],
[
135,
136
],
[
136,
137
],
[
137,
138
],
[
137,
139
],
[
135,
140
],
[
47,
141
],
[
141,
142
],
[
141,
143
],
[
143,
144
],
[
144,
145
],
[
144,
146
],
[
143,
147
],
[
147,
148
],
[
148,
149
],
[
147,
150
],
[
150,
151
],
[
151,
152
],
[
152,
153
],
[
153,
154
],
[
143,
155
],
[
155,
156
],
[
156,
157
],
[
155,
158
],
[
143,
159
],
[
159,
160
],
[
160,
161
],
[
159,
162
],
[
162,
163
],
[
163,
164
],
[
143,
165
],
[
165,
166
],
[
166,
167
],
[
165,
168
],
[
143,
169
],
[
169,
170
],
[
170,
171
],
[
169,
172
],
[
172,
173
],
[
173,
174
],
[
143,
175
],
[
175,
176
],
[
176,
177
],
[
177,
178
],
[
0,
179
],
[
179,
180
],
[
179,
181
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.concurrent.TimeUnit;\n\n/**\n *\n * @author yoshkur\n */\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tInputData inputData = new InputData(br);\n\n\t\t\tSystem.out.println(inputData.getTime());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}\n\t}\n}\n\nclass InputData {\n\n\tprivate Long second;\n\n\tpublic InputData(BufferedReader br) throws IOException {\n\t\tString line = br.readLine().trim();\n\t\tthis.second = Long.parseLong(line);\n\t}\n\n\tpublic Long getSecond() {\n\t\treturn this.second % TimeUnit.MINUTES.toSeconds(1);\n\t}\n\t\n\tpublic Long getMinute() {\n\t\tLong temp = (this.second - this.getSecond()) % TimeUnit.HOURS.toSeconds(1);\n\t\treturn TimeUnit.SECONDS.toMinutes(temp);\n\t}\n\t\n\tpublic Long getHour() {\n\t\tLong temp = (this.second - this.getSecond() - this.getMinute()) % TimeUnit.DAYS.toSeconds(1);\n\t\treturn TimeUnit.SECONDS.toHours(temp);\n\t}\n\t\n\tpublic String getTime() {\n\t\tStringBuilder sb = new StringBuilder();\n\t\tsb.append(this.getHour().toString());\n\t\tsb.append(\":\");\n\t\tsb.append(this.getMinute());\n\t\tsb.append(\":\");\n\t\tsb.append(this.getSecond());\n\t\treturn sb.toString();\n\t}\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"import java.util.concurrent.TimeUnit;",
"TimeUnit",
"java.util.concurrent",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tInputData inputData = new InputData(br);\n\n\t\t\tSystem.out.println(inputData.getTime());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\ttry {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tInputData inputData = new InputData(br);\n\n\t\t\tSystem.out.println(inputData.getTime());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}\n\t}",
"main",
"{\n\t\ttry {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tInputData inputData = new InputData(br);\n\n\t\t\tSystem.out.println(inputData.getTime());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}\n\t}",
"try {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tInputData inputData = new InputData(br);\n\n\t\t\tSystem.out.println(inputData.getTime());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}",
"catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}",
"IOException | NumberFormatException e",
"{\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}",
"System.err.println(e.getLocalizedMessage())",
"System.err.println",
"System.err",
"System",
"System.err",
"e.getLocalizedMessage()",
"e.getLocalizedMessage",
"e",
"{\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tInputData inputData = new InputData(br);\n\n\t\t\tSystem.out.println(inputData.getTime());\n\n\t\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"InputData inputData = new InputData(br);",
"inputData",
"new InputData(br)",
"System.out.println(inputData.getTime())",
"System.out.println",
"System.out",
"System",
"System.out",
"inputData.getTime()",
"inputData.getTime",
"inputData",
"String[] args",
"args",
"class InputData {\n\n\tprivate Long second;\n\n\tpublic InputData(BufferedReader br) throws IOException {\n\t\tString line = br.readLine().trim();\n\t\tthis.second = Long.parseLong(line);\n\t}\n\n\tpublic Long getSecond() {\n\t\treturn this.second % TimeUnit.MINUTES.toSeconds(1);\n\t}\n\t\n\tpublic Long getMinute() {\n\t\tLong temp = (this.second - this.getSecond()) % TimeUnit.HOURS.toSeconds(1);\n\t\treturn TimeUnit.SECONDS.toMinutes(temp);\n\t}\n\t\n\tpublic Long getHour() {\n\t\tLong temp = (this.second - this.getSecond() - this.getMinute()) % TimeUnit.DAYS.toSeconds(1);\n\t\treturn TimeUnit.SECONDS.toHours(temp);\n\t}\n\t\n\tpublic String getTime() {\n\t\tStringBuilder sb = new StringBuilder();\n\t\tsb.append(this.getHour().toString());\n\t\tsb.append(\":\");\n\t\tsb.append(this.getMinute());\n\t\tsb.append(\":\");\n\t\tsb.append(this.getSecond());\n\t\treturn sb.toString();\n\t}\n}",
"InputData",
"private Long second;",
"second",
"public InputData(BufferedReader br) throws IOException {\n\t\tString line = br.readLine().trim();\n\t\tthis.second = Long.parseLong(line);\n\t}",
"InputData",
"{\n\t\tString line = br.readLine().trim();\n\t\tthis.second = Long.parseLong(line);\n\t}",
"String line = br.readLine().trim();",
"line",
"br.readLine().trim()",
"br.readLine().trim",
"br.readLine()",
"br.readLine",
"br",
"this.second = Long.parseLong(line)",
"this.second",
"this",
"this.second",
"Long.parseLong(line)",
"Long.parseLong",
"Long",
"line",
"BufferedReader br",
"br",
"public Long getSecond() {\n\t\treturn this.second % TimeUnit.MINUTES.toSeconds(1);\n\t}",
"getSecond",
"{\n\t\treturn this.second % TimeUnit.MINUTES.toSeconds(1);\n\t}",
"return this.second % TimeUnit.MINUTES.toSeconds(1);",
"this.second % TimeUnit.MINUTES.toSeconds(1)",
"this.second",
"this",
"this.second",
"TimeUnit.MINUTES.toSeconds(1)",
"TimeUnit.MINUTES.toSeconds",
"TimeUnit.MINUTES",
"TimeUnit",
"TimeUnit.MINUTES",
"1",
"public Long getMinute() {\n\t\tLong temp = (this.second - this.getSecond()) % TimeUnit.HOURS.toSeconds(1);\n\t\treturn TimeUnit.SECONDS.toMinutes(temp);\n\t}",
"getMinute",
"{\n\t\tLong temp = (this.second - this.getSecond()) % TimeUnit.HOURS.toSeconds(1);\n\t\treturn TimeUnit.SECONDS.toMinutes(temp);\n\t}",
"Long temp = (this.second - this.getSecond()) % TimeUnit.HOURS.toSeconds(1);",
"temp",
"(this.second - this.getSecond()) % TimeUnit.HOURS.toSeconds(1)",
"(this.second - this.getSecond())",
"this.second",
"this",
"this.second",
"this.getSecond()",
"this.getSecond",
"this",
"TimeUnit.HOURS.toSeconds(1)",
"TimeUnit.HOURS.toSeconds",
"TimeUnit.HOURS",
"TimeUnit",
"TimeUnit.HOURS",
"1",
"return TimeUnit.SECONDS.toMinutes(temp);",
"TimeUnit.SECONDS.toMinutes(temp)",
"TimeUnit.SECONDS.toMinutes",
"TimeUnit.SECONDS",
"TimeUnit",
"TimeUnit.SECONDS",
"temp",
"public Long getHour() {\n\t\tLong temp = (this.second - this.getSecond() - this.getMinute()) % TimeUnit.DAYS.toSeconds(1);\n\t\treturn TimeUnit.SECONDS.toHours(temp);\n\t}",
"getHour",
"{\n\t\tLong temp = (this.second - this.getSecond() - this.getMinute()) % TimeUnit.DAYS.toSeconds(1);\n\t\treturn TimeUnit.SECONDS.toHours(temp);\n\t}",
"Long temp = (this.second - this.getSecond() - this.getMinute()) % TimeUnit.DAYS.toSeconds(1);",
"temp",
"(this.second - this.getSecond() - this.getMinute()) % TimeUnit.DAYS.toSeconds(1)",
"(this.second - this.getSecond() - this.getMinute())",
"this.second - this.getSecond() - this.getMinute()",
"this.second",
"this",
"this.second",
"this.getSecond()",
"this.getSecond",
"this",
"this.getMinute()",
"this.getMinute",
"this",
"TimeUnit.DAYS.toSeconds(1)",
"TimeUnit.DAYS.toSeconds",
"TimeUnit.DAYS",
"TimeUnit",
"TimeUnit.DAYS",
"1",
"return TimeUnit.SECONDS.toHours(temp);",
"TimeUnit.SECONDS.toHours(temp)",
"TimeUnit.SECONDS.toHours",
"TimeUnit.SECONDS",
"TimeUnit",
"TimeUnit.SECONDS",
"temp",
"public String getTime() {\n\t\tStringBuilder sb = new StringBuilder();\n\t\tsb.append(this.getHour().toString());\n\t\tsb.append(\":\");\n\t\tsb.append(this.getMinute());\n\t\tsb.append(\":\");\n\t\tsb.append(this.getSecond());\n\t\treturn sb.toString();\n\t}",
"getTime",
"{\n\t\tStringBuilder sb = new StringBuilder();\n\t\tsb.append(this.getHour().toString());\n\t\tsb.append(\":\");\n\t\tsb.append(this.getMinute());\n\t\tsb.append(\":\");\n\t\tsb.append(this.getSecond());\n\t\treturn sb.toString();\n\t}",
"StringBuilder sb = new StringBuilder();",
"sb",
"new StringBuilder()",
"sb.append(this.getHour().toString())",
"sb.append",
"sb",
"this.getHour().toString()",
"this.getHour().toString",
"this.getHour()",
"this.getHour",
"this",
"sb.append(\":\")",
"sb.append",
"sb",
"\":\"",
"sb.append(this.getMinute())",
"sb.append",
"sb",
"this.getMinute()",
"this.getMinute",
"this",
"sb.append(\":\")",
"sb.append",
"sb",
"\":\"",
"sb.append(this.getSecond())",
"sb.append",
"sb",
"this.getSecond()",
"this.getSecond",
"this",
"return sb.toString();",
"sb.toString()",
"sb.toString",
"sb",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tInputData inputData = new InputData(br);\n\n\t\t\tSystem.out.println(inputData.getTime());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}\n\t}\n}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry {\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tInputData inputData = new InputData(br);\n\n\t\t\tSystem.out.println(inputData.getTime());\n\n\t\t} catch (IOException | NumberFormatException e) {\n\t\t\tSystem.err.println(e.getLocalizedMessage());\n\t\t}\n\t}\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.concurrent.TimeUnit;
/**
*
* @author yoshkur
*/
public class Main {
public static void main(String[] args) {
try {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
InputData inputData = new InputData(br);
System.out.println(inputData.getTime());
} catch (IOException | NumberFormatException e) {
System.err.println(e.getLocalizedMessage());
}
}
}
class InputData {
private Long second;
public InputData(BufferedReader br) throws IOException {
String line = br.readLine().trim();
this.second = Long.parseLong(line);
}
public Long getSecond() {
return this.second % TimeUnit.MINUTES.toSeconds(1);
}
public Long getMinute() {
Long temp = (this.second - this.getSecond()) % TimeUnit.HOURS.toSeconds(1);
return TimeUnit.SECONDS.toMinutes(temp);
}
public Long getHour() {
Long temp = (this.second - this.getSecond() - this.getMinute()) % TimeUnit.DAYS.toSeconds(1);
return TimeUnit.SECONDS.toHours(temp);
}
public String getTime() {
StringBuilder sb = new StringBuilder();
sb.append(this.getHour().toString());
sb.append(":");
sb.append(this.getMinute());
sb.append(":");
sb.append(this.getSecond());
return sb.toString();
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
17,
41,
13,
17,
41,
13,
17,
41,
13,
17,
41,
13,
17,
38,
5,
13,
30,
4,
18,
18,
13,
13,
13,
5,
13,
30,
4,
18,
18,
13,
13,
17,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
0,
13,
2,
13,
2,
13,
13,
0,
13,
2,
2,
13,
2,
13,
13,
13,
0,
13,
2,
13,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
10,
11
],
[
10,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
14,
21
],
[
21,
22
],
[
21,
23
],
[
14,
24
],
[
24,
25
],
[
24,
26
],
[
14,
27
],
[
27,
28
],
[
27,
29
],
[
14,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
34,
39
],
[
30,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
43,
48
],
[
30,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
49,
53
],
[
53,
54
],
[
53,
55
],
[
55,
56
],
[
56,
57
],
[
49,
58
],
[
58,
59
],
[
58,
60
],
[
60,
61
],
[
61,
62
],
[
60,
63
],
[
49,
64
],
[
64,
65
],
[
64,
66
],
[
66,
67
],
[
66,
68
],
[
68,
69
],
[
68,
70
],
[
49,
71
],
[
71,
72
],
[
71,
73
],
[
73,
74
],
[
74,
75
],
[
74,
76
],
[
76,
77
],
[
76,
78
],
[
73,
79
],
[
49,
80
],
[
80,
81
],
[
80,
82
],
[
82,
83
],
[
82,
84
],
[
49,
85
],
[
85,
86
],
[
86,
87
],
[
87,
88
],
[
87,
89
],
[
85,
90
],
[
93,
91
],
[
91,
92
],
[
92,
93
],
[
93,
94
],
[
93,
95
],
[
92,
96
],
[
91,
97
],
[
93,
98
],
[
12,
99
],
[
99,
100
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\n// 1-D 標準出力にHelloWorldと出力する\nclass Main {\n\n\t// プログラムのエントリポイント\n\tpublic static void main(String[] args) {\n\n\t\t//1時間=60分の60\n\t\tfinal int intMinute = 60;\n\n\t\t//1分=60秒の60\n\t\tfinal int intSecond = 60;\n\n\t\t//解答の時間を初期化\n\t\tint intAnswerHour = 0;\n\n\t\t//解答の分を初期化\n\t\tint intAnswerMinute = 0;\n\n\t\t//解答の秒を初期化\n\t\tint intAnswerSecond = 0;\n\n\n\t\ttry{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力値をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//入力値を数字に直す\n\t\t\tint intLine = Integer.parseInt(strLine);\n\n\t\t\t//時間を計算\n\t\t\t//3600で割った整数\n\t\t\tintAnswerHour = intLine / (intMinute * intSecond);\n\n\t\t\t//分を計算\n\t\t\t//3600の剰余を60で割った整数\n\t\t\tintAnswerMinute = (intLine % (intMinute * intSecond)) / intSecond ;\n\n\t\t\t//秒を計算\n\t\t\t//60の剰余\n\t\t\tintAnswerSecond = intLine % intSecond;\n\n\t\t\t//結果を出力\n\t\t\tSystem.out.println(intAnswerHour + \":\" + intAnswerMinute + \":\" + intAnswerSecond);\n\n\t\t//例外処理\n\t\t}catch(IOException e) {\n\n\t\t\t//例外時の出力\n\t\t\tSystem.out.println(e);\n\n\t\t//数字以外の例外\n\t\t}catch(NumberFormatException e) {\n\n\t\t\t//数値以外の入力値で出力\n\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t}\n\t}\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"class Main {\n\n\t// プログラムのエントリポイント\n\tpublic static void main(String[] args) {\n\n\t\t//1時間=60分の60\n\t\tfinal int intMinute = 60;\n\n\t\t//1分=60秒の60\n\t\tfinal int intSecond = 60;\n\n\t\t//解答の時間を初期化\n\t\tint intAnswerHour = 0;\n\n\t\t//解答の分を初期化\n\t\tint intAnswerMinute = 0;\n\n\t\t//解答の秒を初期化\n\t\tint intAnswerSecond = 0;\n\n\n\t\ttry{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力値をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//入力値を数字に直す\n\t\t\tint intLine = Integer.parseInt(strLine);\n\n\t\t\t//時間を計算\n\t\t\t//3600で割った整数\n\t\t\tintAnswerHour = intLine / (intMinute * intSecond);\n\n\t\t\t//分を計算\n\t\t\t//3600の剰余を60で割った整数\n\t\t\tintAnswerMinute = (intLine % (intMinute * intSecond)) / intSecond ;\n\n\t\t\t//秒を計算\n\t\t\t//60の剰余\n\t\t\tintAnswerSecond = intLine % intSecond;\n\n\t\t\t//結果を出力\n\t\t\tSystem.out.println(intAnswerHour + \":\" + intAnswerMinute + \":\" + intAnswerSecond);\n\n\t\t//例外処理\n\t\t}catch(IOException e) {\n\n\t\t\t//例外時の出力\n\t\t\tSystem.out.println(e);\n\n\t\t//数字以外の例外\n\t\t}catch(NumberFormatException e) {\n\n\t\t\t//数値以外の入力値で出力\n\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t}\n\t}\n}",
"Main",
"// プログラムのエントリポイント\n\tpublic static void main(String[] args) {\n\n\t\t//1時間=60分の60\n\t\tfinal int intMinute = 60;\n\n\t\t//1分=60秒の60\n\t\tfinal int intSecond = 60;\n\n\t\t//解答の時間を初期化\n\t\tint intAnswerHour = 0;\n\n\t\t//解答の分を初期化\n\t\tint intAnswerMinute = 0;\n\n\t\t//解答の秒を初期化\n\t\tint intAnswerSecond = 0;\n\n\n\t\ttry{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力値をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//入力値を数字に直す\n\t\t\tint intLine = Integer.parseInt(strLine);\n\n\t\t\t//時間を計算\n\t\t\t//3600で割った整数\n\t\t\tintAnswerHour = intLine / (intMinute * intSecond);\n\n\t\t\t//分を計算\n\t\t\t//3600の剰余を60で割った整数\n\t\t\tintAnswerMinute = (intLine % (intMinute * intSecond)) / intSecond ;\n\n\t\t\t//秒を計算\n\t\t\t//60の剰余\n\t\t\tintAnswerSecond = intLine % intSecond;\n\n\t\t\t//結果を出力\n\t\t\tSystem.out.println(intAnswerHour + \":\" + intAnswerMinute + \":\" + intAnswerSecond);\n\n\t\t//例外処理\n\t\t}catch(IOException e) {\n\n\t\t\t//例外時の出力\n\t\t\tSystem.out.println(e);\n\n\t\t//数字以外の例外\n\t\t}catch(NumberFormatException e) {\n\n\t\t\t//数値以外の入力値で出力\n\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t}\n\t}",
"main",
"{\n\n\t\t//1時間=60分の60\n\t\tfinal int intMinute = 60;\n\n\t\t//1分=60秒の60\n\t\tfinal int intSecond = 60;\n\n\t\t//解答の時間を初期化\n\t\tint intAnswerHour = 0;\n\n\t\t//解答の分を初期化\n\t\tint intAnswerMinute = 0;\n\n\t\t//解答の秒を初期化\n\t\tint intAnswerSecond = 0;\n\n\n\t\ttry{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力値をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//入力値を数字に直す\n\t\t\tint intLine = Integer.parseInt(strLine);\n\n\t\t\t//時間を計算\n\t\t\t//3600で割った整数\n\t\t\tintAnswerHour = intLine / (intMinute * intSecond);\n\n\t\t\t//分を計算\n\t\t\t//3600の剰余を60で割った整数\n\t\t\tintAnswerMinute = (intLine % (intMinute * intSecond)) / intSecond ;\n\n\t\t\t//秒を計算\n\t\t\t//60の剰余\n\t\t\tintAnswerSecond = intLine % intSecond;\n\n\t\t\t//結果を出力\n\t\t\tSystem.out.println(intAnswerHour + \":\" + intAnswerMinute + \":\" + intAnswerSecond);\n\n\t\t//例外処理\n\t\t}catch(IOException e) {\n\n\t\t\t//例外時の出力\n\t\t\tSystem.out.println(e);\n\n\t\t//数字以外の例外\n\t\t}catch(NumberFormatException e) {\n\n\t\t\t//数値以外の入力値で出力\n\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t}\n\t}",
"final int intMinute = 60;",
"intMinute",
"60",
"final int intSecond = 60;",
"intSecond",
"60",
"int intAnswerHour = 0;",
"intAnswerHour",
"0",
"int intAnswerMinute = 0;",
"intAnswerMinute",
"0",
"int intAnswerSecond = 0;",
"intAnswerSecond",
"0",
"try{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力値をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//入力値を数字に直す\n\t\t\tint intLine = Integer.parseInt(strLine);\n\n\t\t\t//時間を計算\n\t\t\t//3600で割った整数\n\t\t\tintAnswerHour = intLine / (intMinute * intSecond);\n\n\t\t\t//分を計算\n\t\t\t//3600の剰余を60で割った整数\n\t\t\tintAnswerMinute = (intLine % (intMinute * intSecond)) / intSecond ;\n\n\t\t\t//秒を計算\n\t\t\t//60の剰余\n\t\t\tintAnswerSecond = intLine % intSecond;\n\n\t\t\t//結果を出力\n\t\t\tSystem.out.println(intAnswerHour + \":\" + intAnswerMinute + \":\" + intAnswerSecond);\n\n\t\t//例外処理\n\t\t}catch(IOException e) {\n\n\t\t\t//例外時の出力\n\t\t\tSystem.out.println(e);\n\n\t\t//数字以外の例外\n\t\t}catch(NumberFormatException e) {\n\n\t\t\t//数値以外の入力値で出力\n\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t}",
"catch(IOException e) {\n\n\t\t\t//例外時の出力\n\t\t\tSystem.out.println(e);\n\n\t\t//数字以外の例外\n\t\t}",
"IOException e",
"{\n\n\t\t\t//例外時の出力\n\t\t\tSystem.out.println(e);\n\n\t\t//数字以外の例外\n\t\t}",
"System.out.println(e)",
"System.out.println",
"System.out",
"System",
"System.out",
"e",
"catch(NumberFormatException e) {\n\n\t\t\t//数値以外の入力値で出力\n\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t}",
"NumberFormatException e",
"{\n\n\t\t\t//数値以外の入力値で出力\n\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t}",
"System.out.println(\"数値で入力して下さい\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"数値で入力して下さい\"",
"{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力値をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//入力値を数字に直す\n\t\t\tint intLine = Integer.parseInt(strLine);\n\n\t\t\t//時間を計算\n\t\t\t//3600で割った整数\n\t\t\tintAnswerHour = intLine / (intMinute * intSecond);\n\n\t\t\t//分を計算\n\t\t\t//3600の剰余を60で割った整数\n\t\t\tintAnswerMinute = (intLine % (intMinute * intSecond)) / intSecond ;\n\n\t\t\t//秒を計算\n\t\t\t//60の剰余\n\t\t\tintAnswerSecond = intLine % intSecond;\n\n\t\t\t//結果を出力\n\t\t\tSystem.out.println(intAnswerHour + \":\" + intAnswerMinute + \":\" + intAnswerSecond);\n\n\t\t//例外処理\n\t\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String strLine = br.readLine();",
"strLine",
"br.readLine()",
"br.readLine",
"br",
"int intLine = Integer.parseInt(strLine);",
"intLine",
"Integer.parseInt(strLine)",
"Integer.parseInt",
"Integer",
"strLine",
"intAnswerHour = intLine / (intMinute * intSecond)",
"intAnswerHour",
"intLine / (intMinute * intSecond)",
"intLine",
"(intMinute * intSecond)",
"intMinute",
"intSecond",
"intAnswerMinute = (intLine % (intMinute * intSecond)) / intSecond",
"intAnswerMinute",
"(intLine % (intMinute * intSecond)) / intSecond",
"(intLine % (intMinute * intSecond))",
"intLine",
"(intMinute * intSecond)",
"intMinute",
"intSecond",
"intSecond",
"intAnswerSecond = intLine % intSecond",
"intAnswerSecond",
"intLine % intSecond",
"intLine",
"intSecond",
"System.out.println(intAnswerHour + \":\" + intAnswerMinute + \":\" + intAnswerSecond)",
"System.out.println",
"System.out",
"System",
"System.out",
"intAnswerHour + \":\" + intAnswerMinute + \":\" + intAnswerSecond",
"\":\"",
"intAnswerMinute",
"intAnswerHour + \":\" + intAnswerMinute + \":\" + intAnswerSecond",
"intAnswerHour",
"\":\"",
"intAnswerMinute",
"\":\"",
"intAnswerSecond",
"String[] args",
"args"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
// 1-D 標準出力にHelloWorldと出力する
class Main {
// プログラムのエントリポイント
public static void main(String[] args) {
//1時間=60分の60
final int intMinute = 60;
//1分=60秒の60
final int intSecond = 60;
//解答の時間を初期化
int intAnswerHour = 0;
//解答の分を初期化
int intAnswerMinute = 0;
//解答の秒を初期化
int intAnswerSecond = 0;
try{
//キーボードからの入力準備
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
//キーボードからの入力値をString型で受け取る
String strLine = br.readLine();
//入力値を数字に直す
int intLine = Integer.parseInt(strLine);
//時間を計算
//3600で割った整数
intAnswerHour = intLine / (intMinute * intSecond);
//分を計算
//3600の剰余を60で割った整数
intAnswerMinute = (intLine % (intMinute * intSecond)) / intSecond ;
//秒を計算
//60の剰余
intAnswerSecond = intLine % intSecond;
//結果を出力
System.out.println(intAnswerHour + ":" + intAnswerMinute + ":" + intAnswerSecond);
//例外処理
}catch(IOException e) {
//例外時の出力
System.out.println(e);
//数字以外の例外
}catch(NumberFormatException e) {
//数値以外の入力値で出力
System.out.println("数値で入力して下さい");
}
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
17,
41,
13,
17,
41,
13,
17,
41,
13,
17,
41,
13,
17,
41,
13,
17,
41,
13,
17,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
0,
13,
2,
13,
13,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
17,
0,
13,
2,
13,
13,
0,
13,
2,
13,
13,
0,
13,
13,
4,
18,
18,
13,
13,
13,
4,
18,
18,
13,
13,
2,
17,
13,
4,
18,
18,
13,
13,
2,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
10,
11
],
[
10,
12
],
[
0,
13
],
[
119,
14
],
[
119,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
18,
20
],
[
17,
21
],
[
21,
22
],
[
21,
23
],
[
17,
24
],
[
24,
25
],
[
24,
26
],
[
17,
27
],
[
27,
28
],
[
27,
29
],
[
17,
30
],
[
30,
31
],
[
30,
32
],
[
17,
33
],
[
33,
34
],
[
33,
35
],
[
17,
36
],
[
36,
37
],
[
36,
38
],
[
17,
39
],
[
39,
40
],
[
39,
41
],
[
17,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
17,
47
],
[
47,
48
],
[
47,
49
],
[
49,
50
],
[
50,
51
],
[
49,
52
],
[
17,
53
],
[
53,
54
],
[
53,
55
],
[
55,
56
],
[
55,
57
],
[
17,
58
],
[
58,
59
],
[
58,
60
],
[
60,
61
],
[
60,
62
],
[
17,
63
],
[
63,
64
],
[
63,
65
],
[
65,
66
],
[
65,
67
],
[
17,
68
],
[
68,
69
],
[
68,
70
],
[
70,
71
],
[
70,
72
],
[
17,
73
],
[
73,
74
],
[
73,
75
],
[
75,
76
],
[
75,
77
],
[
17,
78
],
[
78,
79
],
[
78,
80
],
[
17,
81
],
[
81,
82
],
[
81,
83
],
[
83,
84
],
[
83,
85
],
[
17,
86
],
[
86,
87
],
[
86,
88
],
[
88,
89
],
[
88,
90
],
[
17,
91
],
[
91,
92
],
[
91,
93
],
[
17,
94
],
[
94,
95
],
[
95,
96
],
[
96,
97
],
[
96,
98
],
[
94,
99
],
[
17,
100
],
[
100,
101
],
[
101,
102
],
[
102,
103
],
[
102,
104
],
[
100,
105
],
[
105,
106
],
[
105,
107
],
[
17,
108
],
[
108,
109
],
[
109,
110
],
[
110,
111
],
[
110,
112
],
[
108,
113
],
[
113,
114
],
[
113,
115
],
[
15,
116
],
[
116,
117
],
[
0,
118
],
[
118,
119
],
[
118,
120
]
] | [
"\nimport java.io.*;\nimport java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t// TODO Auto-generated method stub\n\t\tint h = 0;\n\t\tint jikan = 0;\n\t\tint fun = 0;\n\t\tint nokori = 0;\n\t\tint amari = 0;\n\t\tint m = 0;\n\t\tint se = 0;\n\t\tScanner scan = new Scanner(System.in);\n String s = scan.next();\n int S = Integer.parseInt(s);\n h = S/3600;\n jikan = h*3600;\n nokori = S - jikan;\n m = nokori/60;\n fun = m*60;\n int hiku = 0;\n hiku = fun+jikan;\n amari = S - hiku;\n se = amari;\n System.out.print(h);\n System.out.print(\":\" + m);\n System.out.println(\":\" + se);\n\t\t\n\t}\n}",
"import java.io.*;",
"io.*",
"java",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t// TODO Auto-generated method stub\n\t\tint h = 0;\n\t\tint jikan = 0;\n\t\tint fun = 0;\n\t\tint nokori = 0;\n\t\tint amari = 0;\n\t\tint m = 0;\n\t\tint se = 0;\n\t\tScanner scan = new Scanner(System.in);\n String s = scan.next();\n int S = Integer.parseInt(s);\n h = S/3600;\n jikan = h*3600;\n nokori = S - jikan;\n m = nokori/60;\n fun = m*60;\n int hiku = 0;\n hiku = fun+jikan;\n amari = S - hiku;\n se = amari;\n System.out.print(h);\n System.out.print(\":\" + m);\n System.out.println(\":\" + se);\n\t\t\n\t}\n}",
"Main",
"public static void main(String[] args) throws IOException {\n\t\t// TODO Auto-generated method stub\n\t\tint h = 0;\n\t\tint jikan = 0;\n\t\tint fun = 0;\n\t\tint nokori = 0;\n\t\tint amari = 0;\n\t\tint m = 0;\n\t\tint se = 0;\n\t\tScanner scan = new Scanner(System.in);\n String s = scan.next();\n int S = Integer.parseInt(s);\n h = S/3600;\n jikan = h*3600;\n nokori = S - jikan;\n m = nokori/60;\n fun = m*60;\n int hiku = 0;\n hiku = fun+jikan;\n amari = S - hiku;\n se = amari;\n System.out.print(h);\n System.out.print(\":\" + m);\n System.out.println(\":\" + se);\n\t\t\n\t}",
"main",
"{\n\t\t// TODO Auto-generated method stub\n\t\tint h = 0;\n\t\tint jikan = 0;\n\t\tint fun = 0;\n\t\tint nokori = 0;\n\t\tint amari = 0;\n\t\tint m = 0;\n\t\tint se = 0;\n\t\tScanner scan = new Scanner(System.in);\n String s = scan.next();\n int S = Integer.parseInt(s);\n h = S/3600;\n jikan = h*3600;\n nokori = S - jikan;\n m = nokori/60;\n fun = m*60;\n int hiku = 0;\n hiku = fun+jikan;\n amari = S - hiku;\n se = amari;\n System.out.print(h);\n System.out.print(\":\" + m);\n System.out.println(\":\" + se);\n\t\t\n\t}",
"int h = 0;",
"h",
"0",
"int jikan = 0;",
"jikan",
"0",
"int fun = 0;",
"fun",
"0",
"int nokori = 0;",
"nokori",
"0",
"int amari = 0;",
"amari",
"0",
"int m = 0;",
"m",
"0",
"int se = 0;",
"se",
"0",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"String s = scan.next();",
"s",
"scan.next()",
"scan.next",
"scan",
"int S = Integer.parseInt(s);",
"S",
"Integer.parseInt(s)",
"Integer.parseInt",
"Integer",
"s",
"h = S/3600",
"h",
"S/3600",
"S",
"3600",
"jikan = h*3600",
"jikan",
"h*3600",
"h",
"3600",
"nokori = S - jikan",
"nokori",
"S - jikan",
"S",
"jikan",
"m = nokori/60",
"m",
"nokori/60",
"nokori",
"60",
"fun = m*60",
"fun",
"m*60",
"m",
"60",
"int hiku = 0;",
"hiku",
"0",
"hiku = fun+jikan",
"hiku",
"fun+jikan",
"fun",
"jikan",
"amari = S - hiku",
"amari",
"S - hiku",
"S",
"hiku",
"se = amari",
"se",
"amari",
"System.out.print(h)",
"System.out.print",
"System.out",
"System",
"System.out",
"h",
"System.out.print(\":\" + m)",
"System.out.print",
"System.out",
"System",
"System.out",
"\":\" + m",
"\":\"",
"m",
"System.out.println(\":\" + se)",
"System.out.println",
"System.out",
"System",
"System.out",
"\":\" + se",
"\":\"",
"se",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t// TODO Auto-generated method stub\n\t\tint h = 0;\n\t\tint jikan = 0;\n\t\tint fun = 0;\n\t\tint nokori = 0;\n\t\tint amari = 0;\n\t\tint m = 0;\n\t\tint se = 0;\n\t\tScanner scan = new Scanner(System.in);\n String s = scan.next();\n int S = Integer.parseInt(s);\n h = S/3600;\n jikan = h*3600;\n nokori = S - jikan;\n m = nokori/60;\n fun = m*60;\n int hiku = 0;\n hiku = fun+jikan;\n amari = S - hiku;\n se = amari;\n System.out.print(h);\n System.out.print(\":\" + m);\n System.out.println(\":\" + se);\n\t\t\n\t}\n}",
"public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t// TODO Auto-generated method stub\n\t\tint h = 0;\n\t\tint jikan = 0;\n\t\tint fun = 0;\n\t\tint nokori = 0;\n\t\tint amari = 0;\n\t\tint m = 0;\n\t\tint se = 0;\n\t\tScanner scan = new Scanner(System.in);\n String s = scan.next();\n int S = Integer.parseInt(s);\n h = S/3600;\n jikan = h*3600;\n nokori = S - jikan;\n m = nokori/60;\n fun = m*60;\n int hiku = 0;\n hiku = fun+jikan;\n amari = S - hiku;\n se = amari;\n System.out.print(h);\n System.out.print(\":\" + m);\n System.out.println(\":\" + se);\n\t\t\n\t}\n}",
"Main"
] |
import java.io.*;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
int h = 0;
int jikan = 0;
int fun = 0;
int nokori = 0;
int amari = 0;
int m = 0;
int se = 0;
Scanner scan = new Scanner(System.in);
String s = scan.next();
int S = Integer.parseInt(s);
h = S/3600;
jikan = h*3600;
nokori = S - jikan;
m = nokori/60;
fun = m*60;
int hiku = 0;
hiku = fun+jikan;
amari = S - hiku;
se = amari;
System.out.print(h);
System.out.print(":" + m);
System.out.println(":" + se);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
2,
17,
13,
17,
41,
13,
2,
2,
13,
2,
17,
13,
2,
17,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
59,
5
],
[
59,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
27,
29
],
[
24,
30
],
[
8,
31
],
[
31,
32
],
[
31,
33
],
[
34,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
36,
38
],
[
34,
39
],
[
39,
40
],
[
39,
41
],
[
8,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
42,
47
],
[
50,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
49,
53
],
[
48,
54
],
[
50,
55
],
[
6,
56
],
[
56,
57
],
[
0,
58
],
[
58,
59
],
[
58,
60
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\tint sec = scanner.nextInt();\n\n\t\t// ??????\n\t\tint h = sec / 3600;\n\n\t\t// ???\n\t\tint m = (sec - (3600 * h)) / 60;\n\n\t\t// ?§?\n\t\tint s = sec - (3600 * h) - (60 * m);\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\tpublic static void main(String[] args) {\n\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\tint sec = scanner.nextInt();\n\n\t\t// ??????\n\t\tint h = sec / 3600;\n\n\t\t// ???\n\t\tint m = (sec - (3600 * h)) / 60;\n\n\t\t// ?§?\n\t\tint s = sec - (3600 * h) - (60 * m);\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\tint sec = scanner.nextInt();\n\n\t\t// ??????\n\t\tint h = sec / 3600;\n\n\t\t// ???\n\t\tint m = (sec - (3600 * h)) / 60;\n\n\t\t// ?§?\n\t\tint s = sec - (3600 * h) - (60 * m);\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"main",
"{\n\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\tint sec = scanner.nextInt();\n\n\t\t// ??????\n\t\tint h = sec / 3600;\n\n\t\t// ???\n\t\tint m = (sec - (3600 * h)) / 60;\n\n\t\t// ?§?\n\t\tint s = sec - (3600 * h) - (60 * m);\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"int sec = scanner.nextInt();",
"sec",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"int h = sec / 3600;",
"h",
"sec / 3600",
"sec",
"3600",
"int m = (sec - (3600 * h)) / 60;",
"m",
"(sec - (3600 * h)) / 60",
"(sec - (3600 * h))",
"sec",
"(3600 * h)",
"3600",
"h",
"60",
"int s = sec - (3600 * h) - (60 * m);",
"s",
"sec - (3600 * h) - (60 * m)",
"sec - (3600 * h) - (60 * m)",
"sec",
"(3600 * h)",
"3600",
"h",
"(60 * m)",
"60",
"m",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\tint sec = scanner.nextInt();\n\n\t\t// ??????\n\t\tint h = sec / 3600;\n\n\t\t// ???\n\t\tint m = (sec - (3600 * h)) / 60;\n\n\t\t// ?§?\n\t\tint s = sec - (3600 * h) - (60 * m);\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\tint sec = scanner.nextInt();\n\n\t\t// ??????\n\t\tint h = sec / 3600;\n\n\t\t// ???\n\t\tint m = (sec - (3600 * h)) / 60;\n\n\t\t// ?§?\n\t\tint s = sec - (3600 * h) - (60 * m);\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int sec = scanner.nextInt();
// ??????
int h = sec / 3600;
// ???
int m = (sec - (3600 * h)) / 60;
// ?§?
int s = sec - (3600 * h) - (60 * m);
System.out.println(h + ":" + m + ":" + s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
41,
13,
41,
13,
14,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
2,
13,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
81,
11
],
[
81,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
14,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
26,
27
],
[
25,
28
],
[
14,
29
],
[
29,
30
],
[
14,
31
],
[
31,
32
],
[
14,
33
],
[
33,
34
],
[
14,
35
],
[
35,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
36,
40
],
[
40,
41
],
[
40,
42
],
[
35,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
46,
47
],
[
46,
48
],
[
43,
49
],
[
49,
50
],
[
49,
51
],
[
51,
52
],
[
51,
53
],
[
43,
54
],
[
54,
55
],
[
54,
56
],
[
56,
57
],
[
56,
58
],
[
43,
59
],
[
59,
60
],
[
59,
61
],
[
61,
62
],
[
61,
63
],
[
43,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
64,
69
],
[
72,
70
],
[
70,
71
],
[
71,
72
],
[
72,
73
],
[
72,
74
],
[
71,
75
],
[
70,
76
],
[
72,
77
],
[
12,
78
],
[
78,
79
],
[
0,
80
],
[
80,
81
],
[
80,
82
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n int n = Integer.parseInt(str);\n int h, m, s;\n if(n>=0 && n<86400){\n \th = n/3600;\n \tint rim = n % 3600;\n \tm= rim/60;\n \ts =rim%60;\n \tSystem.out.println(h +\":\" + m + \":\" + s);\n }\n\t}\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n int n = Integer.parseInt(str);\n int h, m, s;\n if(n>=0 && n<86400){\n \th = n/3600;\n \tint rim = n % 3600;\n \tm= rim/60;\n \ts =rim%60;\n \tSystem.out.println(h +\":\" + m + \":\" + s);\n }\n\t}\n}",
"Main",
"public static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n int n = Integer.parseInt(str);\n int h, m, s;\n if(n>=0 && n<86400){\n \th = n/3600;\n \tint rim = n % 3600;\n \tm= rim/60;\n \ts =rim%60;\n \tSystem.out.println(h +\":\" + m + \":\" + s);\n }\n\t}",
"main",
"{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n int n = Integer.parseInt(str);\n int h, m, s;\n if(n>=0 && n<86400){\n \th = n/3600;\n \tint rim = n % 3600;\n \tm= rim/60;\n \ts =rim%60;\n \tSystem.out.println(h +\":\" + m + \":\" + s);\n }\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String str = br.readLine();",
"str",
"br.readLine()",
"br.readLine",
"br",
"int n = Integer.parseInt(str);",
"n",
"Integer.parseInt(str)",
"Integer.parseInt",
"Integer",
"str",
"int h",
"h",
"m",
"m",
"s;",
"s",
"if(n>=0 && n<86400){\n \th = n/3600;\n \tint rim = n % 3600;\n \tm= rim/60;\n \ts =rim%60;\n \tSystem.out.println(h +\":\" + m + \":\" + s);\n }",
"n>=0 && n<86400",
"n>=0",
"n",
"0",
"n<86400",
"n",
"86400",
"{\n \th = n/3600;\n \tint rim = n % 3600;\n \tm= rim/60;\n \ts =rim%60;\n \tSystem.out.println(h +\":\" + m + \":\" + s);\n }",
"h = n/3600",
"h",
"n/3600",
"n",
"3600",
"int rim = n % 3600;",
"rim",
"n % 3600",
"n",
"3600",
"m= rim/60",
"m",
"rim/60",
"rim",
"60",
"s =rim%60",
"s",
"rim%60",
"rim",
"60",
"System.out.println(h +\":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h +\":\" + m + \":\" + s",
"\":\"",
"m",
"h +\":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n int n = Integer.parseInt(str);\n int h, m, s;\n if(n>=0 && n<86400){\n \th = n/3600;\n \tint rim = n % 3600;\n \tm= rim/60;\n \ts =rim%60;\n \tSystem.out.println(h +\":\" + m + \":\" + s);\n }\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String str = br.readLine();\n int n = Integer.parseInt(str);\n int h, m, s;\n if(n>=0 && n<86400){\n \th = n/3600;\n \tint rim = n % 3600;\n \tm= rim/60;\n \ts =rim%60;\n \tSystem.out.println(h +\":\" + m + \":\" + s);\n }\n\t}\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args)throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
int n = Integer.parseInt(str);
int h, m, s;
if(n>=0 && n<86400){
h = n/3600;
int rim = n % 3600;
m= rim/60;
s =rim%60;
System.out.println(h +":" + m + ":" + s);
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
2,
13,
2,
17,
17,
41,
13,
2,
2,
13,
2,
13,
17,
17,
41,
13,
2,
2,
13,
2,
17,
13,
2,
17,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
64,
5
],
[
64,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
14,
17
],
[
17,
18
],
[
18,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
24,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
32,
34
],
[
29,
35
],
[
8,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
41,
43
],
[
38,
44
],
[
44,
45
],
[
44,
46
],
[
8,
47
],
[
47,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
47,
52
],
[
55,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
54,
58
],
[
53,
59
],
[
55,
60
],
[
6,
61
],
[
61,
62
],
[
0,
63
],
[
63,
64
],
[
63,
65
]
] | [
"import java.util.Scanner;\n \npublic class Main {\n\t\n public static void main(String[] args) {\n\t Scanner sc=new Scanner(System.in);\n\t int S=Integer.parseInt(sc.next());\n\t \n\t int h=S/(60*60);\n\t int m=(S-h*3600)/60;\n\t int s=(S-3600*h-60*m);\n\t \n\t System.out.println(h +\":\"+ m +\":\" + s);\n \n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\t\n public static void main(String[] args) {\n\t Scanner sc=new Scanner(System.in);\n\t int S=Integer.parseInt(sc.next());\n\t \n\t int h=S/(60*60);\n\t int m=(S-h*3600)/60;\n\t int s=(S-3600*h-60*m);\n\t \n\t System.out.println(h +\":\"+ m +\":\" + s);\n \n }\n}",
"Main",
"public static void main(String[] args) {\n\t Scanner sc=new Scanner(System.in);\n\t int S=Integer.parseInt(sc.next());\n\t \n\t int h=S/(60*60);\n\t int m=(S-h*3600)/60;\n\t int s=(S-3600*h-60*m);\n\t \n\t System.out.println(h +\":\"+ m +\":\" + s);\n \n }",
"main",
"{\n\t Scanner sc=new Scanner(System.in);\n\t int S=Integer.parseInt(sc.next());\n\t \n\t int h=S/(60*60);\n\t int m=(S-h*3600)/60;\n\t int s=(S-3600*h-60*m);\n\t \n\t System.out.println(h +\":\"+ m +\":\" + s);\n \n }",
"Scanner sc=new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int S=Integer.parseInt(sc.next());",
"S",
"Integer.parseInt(sc.next())",
"Integer.parseInt",
"Integer",
"sc.next()",
"sc.next",
"sc",
"int h=S/(60*60);",
"h",
"S/(60*60)",
"S",
"(60*60)",
"60",
"60",
"int m=(S-h*3600)/60;",
"m",
"(S-h*3600)/60",
"(S-h*3600)",
"S",
"h*3600",
"h",
"3600",
"60",
"int s=(S-3600*h-60*m);",
"s",
"(S-3600*h-60*m)",
"S-3600*h-60*m",
"S",
"3600*h",
"3600",
"h",
"60*m",
"60",
"m",
"System.out.println(h +\":\"+ m +\":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h +\":\"+ m +\":\" + s",
"\":\"",
"m",
"h +\":\"+ m +\":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main {\n\t\n public static void main(String[] args) {\n\t Scanner sc=new Scanner(System.in);\n\t int S=Integer.parseInt(sc.next());\n\t \n\t int h=S/(60*60);\n\t int m=(S-h*3600)/60;\n\t int s=(S-3600*h-60*m);\n\t \n\t System.out.println(h +\":\"+ m +\":\" + s);\n \n }\n}",
"public class Main {\n\t\n public static void main(String[] args) {\n\t Scanner sc=new Scanner(System.in);\n\t int S=Integer.parseInt(sc.next());\n\t \n\t int h=S/(60*60);\n\t int m=(S-h*3600)/60;\n\t int s=(S-3600*h-60*m);\n\t \n\t System.out.println(h +\":\"+ m +\":\" + s);\n \n }\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int S=Integer.parseInt(sc.next());
int h=S/(60*60);
int m=(S-h*3600)/60;
int s=(S-3600*h-60*m);
System.out.println(h +":"+ m +":" + s);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
54,
5
],
[
54,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
24,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
29,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
34,
36
],
[
8,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
37,
42
],
[
45,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
43,
49
],
[
45,
50
],
[
6,
51
],
[
51,
52
],
[
0,
53
],
[
53,
54
],
[
53,
55
]
] | [
"import java.util.*;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\t@SuppressWarnings(\"resource\")\n\t\tScanner sc = new Scanner(System.in);\n\t\tint s = sc.nextInt();\n\t\tint h = s / 3600;\n\t\ts = s % 3600;\n\t\tint m = s / 60;\n\t\ts = s % 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\t@SuppressWarnings(\"resource\")\n\t\tScanner sc = new Scanner(System.in);\n\t\tint s = sc.nextInt();\n\t\tint h = s / 3600;\n\t\ts = s % 3600;\n\t\tint m = s / 60;\n\t\ts = s % 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\t@SuppressWarnings(\"resource\")\n\t\tScanner sc = new Scanner(System.in);\n\t\tint s = sc.nextInt();\n\t\tint h = s / 3600;\n\t\ts = s % 3600;\n\t\tint m = s / 60;\n\t\ts = s % 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"main",
"{\n\t\t@SuppressWarnings(\"resource\")\n\t\tScanner sc = new Scanner(System.in);\n\t\tint s = sc.nextInt();\n\t\tint h = s / 3600;\n\t\ts = s % 3600;\n\t\tint m = s / 60;\n\t\ts = s % 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"@SuppressWarnings(\"resource\")\n\t\tScanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int s = sc.nextInt();",
"s",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int h = s / 3600;",
"h",
"s / 3600",
"s",
"3600",
"s = s % 3600",
"s",
"s % 3600",
"s",
"3600",
"int m = s / 60;",
"m",
"s / 60",
"s",
"60",
"s = s % 60",
"s",
"s % 60",
"s",
"60",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\t@SuppressWarnings(\"resource\")\n\t\tScanner sc = new Scanner(System.in);\n\t\tint s = sc.nextInt();\n\t\tint h = s / 3600;\n\t\ts = s % 3600;\n\t\tint m = s / 60;\n\t\ts = s % 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\t@SuppressWarnings(\"resource\")\n\t\tScanner sc = new Scanner(System.in);\n\t\tint s = sc.nextInt();\n\t\tint h = s / 3600;\n\t\ts = s % 3600;\n\t\tint m = s / 60;\n\t\ts = s % 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"Main"
] | import java.util.*;
public class Main {
public static void main(String[] args) {
@SuppressWarnings("resource")
Scanner sc = new Scanner(System.in);
int s = sc.nextInt();
int h = s / 3600;
s = s % 3600;
int m = s / 60;
s = s % 60;
System.out.println(h + ":" + m + ":" + s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
2,
13,
17,
17,
2,
2,
13,
17,
17,
17,
2,
2,
13,
17,
17,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
17,
20
],
[
20,
21
],
[
21,
22
],
[
11,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
23,
28
],
[
31,
29
],
[
29,
30
],
[
36,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
31,
35
],
[
36,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
36,
40
],
[
29,
41
],
[
31,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
42,
46
],
[
9,
47
],
[
47,
48
]
] | [
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\nclass Main {\n\tpublic static void main(String[] args) throws Exception {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int S = Integer.parseInt(br.readLine());\n\t\tSystem.out.println((S/3600)+\":\"+(S%3600/60)+\":\"+(S%3600%60));\n\t}\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"class Main {\n\tpublic static void main(String[] args) throws Exception {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int S = Integer.parseInt(br.readLine());\n\t\tSystem.out.println((S/3600)+\":\"+(S%3600/60)+\":\"+(S%3600%60));\n\t}\n}",
"Main",
"public static void main(String[] args) throws Exception {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int S = Integer.parseInt(br.readLine());\n\t\tSystem.out.println((S/3600)+\":\"+(S%3600/60)+\":\"+(S%3600%60));\n\t}",
"main",
"{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int S = Integer.parseInt(br.readLine());\n\t\tSystem.out.println((S/3600)+\":\"+(S%3600/60)+\":\"+(S%3600%60));\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"int S = Integer.parseInt(br.readLine());",
"S",
"Integer.parseInt(br.readLine())",
"Integer.parseInt",
"Integer",
"br.readLine()",
"br.readLine",
"br",
"System.out.println((S/3600)+\":\"+(S%3600/60)+\":\"+(S%3600%60))",
"System.out.println",
"System.out",
"System",
"System.out",
"(S/3600)+\":\"+(S%3600/60)+\":\"+(S%3600%60)",
"\":\"",
"(S%3600/60)",
"(S/3600)+\":\"+(S%3600/60)+\":\"+(S%3600%60)",
"(S/3600)",
"S",
"3600",
"\":\"",
"(S%3600/60)",
"S%3600",
"S",
"3600",
"60",
"\":\"",
"(S%3600%60)",
"S%3600%60",
"S",
"3600",
"60",
"String[] args",
"args"
] | import java.io.BufferedReader;
import java.io.InputStreamReader;
class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int S = Integer.parseInt(br.readLine());
System.out.println((S/3600)+":"+(S%3600/60)+":"+(S%3600%60));
}
} |
[
7,
6,
13,
12,
13,
30,
41,
13,
4,
18,
20,
41,
13,
2,
13,
2,
17,
17,
0,
13,
2,
13,
2,
17,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
55,
2
],
[
55,
3
],
[
3,
4
],
[
3,
5
],
[
5,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
5,
11
],
[
11,
12
],
[
11,
13
],
[
13,
14
],
[
13,
15
],
[
15,
16
],
[
15,
17
],
[
5,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
22,
24
],
[
5,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
27,
29
],
[
5,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
32,
34
],
[
5,
35
],
[
35,
36
],
[
35,
37
],
[
5,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
38,
43
],
[
46,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
45,
49
],
[
44,
50
],
[
46,
51
],
[
3,
52
],
[
52,
53
],
[
0,
54
],
[
54,
55
],
[
54,
56
]
] | [
"public class Main { \n\tpublic static void main(String[] args){\n\t\tint inSeconds = new java.util.Scanner(System.in).nextInt();\n\t\tint outHours = inSeconds / (60*60);\n\t\tinSeconds = inSeconds % (60*60);\n\t\tint outMinutes = inSeconds / 60;\n\t\tinSeconds = inSeconds % 60;\n\t\tint outSeconds = inSeconds;\n\t\tSystem.out.println(outHours + \":\" +outMinutes + \":\" + outSeconds);\n\t}\n}",
"public class Main { \n\tpublic static void main(String[] args){\n\t\tint inSeconds = new java.util.Scanner(System.in).nextInt();\n\t\tint outHours = inSeconds / (60*60);\n\t\tinSeconds = inSeconds % (60*60);\n\t\tint outMinutes = inSeconds / 60;\n\t\tinSeconds = inSeconds % 60;\n\t\tint outSeconds = inSeconds;\n\t\tSystem.out.println(outHours + \":\" +outMinutes + \":\" + outSeconds);\n\t}\n}",
"Main",
"public static void main(String[] args){\n\t\tint inSeconds = new java.util.Scanner(System.in).nextInt();\n\t\tint outHours = inSeconds / (60*60);\n\t\tinSeconds = inSeconds % (60*60);\n\t\tint outMinutes = inSeconds / 60;\n\t\tinSeconds = inSeconds % 60;\n\t\tint outSeconds = inSeconds;\n\t\tSystem.out.println(outHours + \":\" +outMinutes + \":\" + outSeconds);\n\t}",
"main",
"{\n\t\tint inSeconds = new java.util.Scanner(System.in).nextInt();\n\t\tint outHours = inSeconds / (60*60);\n\t\tinSeconds = inSeconds % (60*60);\n\t\tint outMinutes = inSeconds / 60;\n\t\tinSeconds = inSeconds % 60;\n\t\tint outSeconds = inSeconds;\n\t\tSystem.out.println(outHours + \":\" +outMinutes + \":\" + outSeconds);\n\t}",
"int inSeconds = new java.util.Scanner(System.in).nextInt();",
"inSeconds",
"new java.util.Scanner(System.in).nextInt()",
"new java.util.Scanner(System.in).nextInt",
"new java.util.Scanner(System.in)",
"int outHours = inSeconds / (60*60);",
"outHours",
"inSeconds / (60*60)",
"inSeconds",
"(60*60)",
"60",
"60",
"inSeconds = inSeconds % (60*60)",
"inSeconds",
"inSeconds % (60*60)",
"inSeconds",
"(60*60)",
"60",
"60",
"int outMinutes = inSeconds / 60;",
"outMinutes",
"inSeconds / 60",
"inSeconds",
"60",
"inSeconds = inSeconds % 60",
"inSeconds",
"inSeconds % 60",
"inSeconds",
"60",
"int outSeconds = inSeconds;",
"outSeconds",
"inSeconds",
"System.out.println(outHours + \":\" +outMinutes + \":\" + outSeconds)",
"System.out.println",
"System.out",
"System",
"System.out",
"outHours + \":\" +outMinutes + \":\" + outSeconds",
"\":\"",
"outMinutes",
"outHours + \":\" +outMinutes + \":\" + outSeconds",
"outHours",
"\":\"",
"outMinutes",
"\":\"",
"outSeconds",
"String[] args",
"args",
"public class Main { \n\tpublic static void main(String[] args){\n\t\tint inSeconds = new java.util.Scanner(System.in).nextInt();\n\t\tint outHours = inSeconds / (60*60);\n\t\tinSeconds = inSeconds % (60*60);\n\t\tint outMinutes = inSeconds / 60;\n\t\tinSeconds = inSeconds % 60;\n\t\tint outSeconds = inSeconds;\n\t\tSystem.out.println(outHours + \":\" +outMinutes + \":\" + outSeconds);\n\t}\n}",
"public class Main { \n\tpublic static void main(String[] args){\n\t\tint inSeconds = new java.util.Scanner(System.in).nextInt();\n\t\tint outHours = inSeconds / (60*60);\n\t\tinSeconds = inSeconds % (60*60);\n\t\tint outMinutes = inSeconds / 60;\n\t\tinSeconds = inSeconds % 60;\n\t\tint outSeconds = inSeconds;\n\t\tSystem.out.println(outHours + \":\" +outMinutes + \":\" + outSeconds);\n\t}\n}",
"Main"
] | public class Main {
public static void main(String[] args){
int inSeconds = new java.util.Scanner(System.in).nextInt();
int outHours = inSeconds / (60*60);
inSeconds = inSeconds % (60*60);
int outMinutes = inSeconds / 60;
inSeconds = inSeconds % 60;
int outSeconds = inSeconds;
System.out.println(outHours + ":" +outMinutes + ":" + outSeconds);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
18,
13,
13,
13,
41,
13,
2,
4,
18,
18,
13,
13,
13,
4,
18,
18,
13,
13,
13,
41,
13,
2,
2,
4,
18,
18,
13,
13,
13,
4,
18,
18,
13,
13,
13,
4,
18,
18,
13,
13,
13,
4,
18,
18,
13,
13,
4,
18,
13,
17,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
80,
8
],
[
80,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
11,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
24,
25
],
[
24,
26
],
[
22,
27
],
[
11,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
31,
36
],
[
30,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
37,
42
],
[
11,
43
],
[
43,
44
],
[
43,
45
],
[
46,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
47,
52
],
[
46,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
53,
58
],
[
46,
59
],
[
59,
60
],
[
60,
61
],
[
61,
62
],
[
61,
63
],
[
59,
64
],
[
11,
65
],
[
65,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
65,
70
],
[
70,
71
],
[
71,
72
],
[
70,
73
],
[
70,
74
],
[
70,
75
],
[
70,
76
],
[
9,
77
],
[
77,
78
],
[
0,
79
],
[
79,
80
],
[
79,
81
]
] | [
"import java.util.Scanner;\nimport java.util.concurrent.TimeUnit;\n\npublic class Main\n{\n public static void main(String... args)\n {\n final Scanner scanner = new Scanner(System.in);\n final int in = scanner.nextInt();\n final long h = TimeUnit.SECONDS.toHours(in);\n final long m = TimeUnit.SECONDS.toMinutes(in) - TimeUnit.HOURS.toMinutes(h);\n final long s = TimeUnit.SECONDS.toSeconds(in) - TimeUnit.HOURS.toSeconds(h) - TimeUnit.MINUTES.toSeconds(m);\n System.out.println(String.format(\"%d:%d:%d\", h, m, s));\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"import java.util.concurrent.TimeUnit;",
"TimeUnit",
"java.util.concurrent",
"public class Main\n{\n public static void main(String... args)\n {\n final Scanner scanner = new Scanner(System.in);\n final int in = scanner.nextInt();\n final long h = TimeUnit.SECONDS.toHours(in);\n final long m = TimeUnit.SECONDS.toMinutes(in) - TimeUnit.HOURS.toMinutes(h);\n final long s = TimeUnit.SECONDS.toSeconds(in) - TimeUnit.HOURS.toSeconds(h) - TimeUnit.MINUTES.toSeconds(m);\n System.out.println(String.format(\"%d:%d:%d\", h, m, s));\n }\n}",
"Main",
"public static void main(String... args)\n {\n final Scanner scanner = new Scanner(System.in);\n final int in = scanner.nextInt();\n final long h = TimeUnit.SECONDS.toHours(in);\n final long m = TimeUnit.SECONDS.toMinutes(in) - TimeUnit.HOURS.toMinutes(h);\n final long s = TimeUnit.SECONDS.toSeconds(in) - TimeUnit.HOURS.toSeconds(h) - TimeUnit.MINUTES.toSeconds(m);\n System.out.println(String.format(\"%d:%d:%d\", h, m, s));\n }",
"main",
"{\n final Scanner scanner = new Scanner(System.in);\n final int in = scanner.nextInt();\n final long h = TimeUnit.SECONDS.toHours(in);\n final long m = TimeUnit.SECONDS.toMinutes(in) - TimeUnit.HOURS.toMinutes(h);\n final long s = TimeUnit.SECONDS.toSeconds(in) - TimeUnit.HOURS.toSeconds(h) - TimeUnit.MINUTES.toSeconds(m);\n System.out.println(String.format(\"%d:%d:%d\", h, m, s));\n }",
"final Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"final int in = scanner.nextInt();",
"in",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"final long h = TimeUnit.SECONDS.toHours(in);",
"h",
"TimeUnit.SECONDS.toHours(in)",
"TimeUnit.SECONDS.toHours",
"TimeUnit.SECONDS",
"TimeUnit",
"TimeUnit.SECONDS",
"in",
"final long m = TimeUnit.SECONDS.toMinutes(in) - TimeUnit.HOURS.toMinutes(h);",
"m",
"TimeUnit.SECONDS.toMinutes(in) - TimeUnit.HOURS.toMinutes(h)",
"TimeUnit.SECONDS.toMinutes(in)",
"TimeUnit.SECONDS.toMinutes",
"TimeUnit.SECONDS",
"TimeUnit",
"TimeUnit.SECONDS",
"in",
"TimeUnit.HOURS.toMinutes(h)",
"TimeUnit.HOURS.toMinutes",
"TimeUnit.HOURS",
"TimeUnit",
"TimeUnit.HOURS",
"h",
"final long s = TimeUnit.SECONDS.toSeconds(in) - TimeUnit.HOURS.toSeconds(h) - TimeUnit.MINUTES.toSeconds(m);",
"s",
"TimeUnit.SECONDS.toSeconds(in) - TimeUnit.HOURS.toSeconds(h) - TimeUnit.MINUTES.toSeconds(m)",
"TimeUnit.SECONDS.toSeconds(in) - TimeUnit.HOURS.toSeconds(h) - TimeUnit.MINUTES.toSeconds(m)",
"TimeUnit.SECONDS.toSeconds(in)",
"TimeUnit.SECONDS.toSeconds",
"TimeUnit.SECONDS",
"TimeUnit",
"TimeUnit.SECONDS",
"in",
"TimeUnit.HOURS.toSeconds(h)",
"TimeUnit.HOURS.toSeconds",
"TimeUnit.HOURS",
"TimeUnit",
"TimeUnit.HOURS",
"h",
"TimeUnit.MINUTES.toSeconds(m)",
"TimeUnit.MINUTES.toSeconds",
"TimeUnit.MINUTES",
"TimeUnit",
"TimeUnit.MINUTES",
"m",
"System.out.println(String.format(\"%d:%d:%d\", h, m, s))",
"System.out.println",
"System.out",
"System",
"System.out",
"String.format(\"%d:%d:%d\", h, m, s)",
"String.format",
"String",
"\"%d:%d:%d\"",
"h",
"m",
"s",
"String... args",
"args",
"public class Main\n{\n public static void main(String... args)\n {\n final Scanner scanner = new Scanner(System.in);\n final int in = scanner.nextInt();\n final long h = TimeUnit.SECONDS.toHours(in);\n final long m = TimeUnit.SECONDS.toMinutes(in) - TimeUnit.HOURS.toMinutes(h);\n final long s = TimeUnit.SECONDS.toSeconds(in) - TimeUnit.HOURS.toSeconds(h) - TimeUnit.MINUTES.toSeconds(m);\n System.out.println(String.format(\"%d:%d:%d\", h, m, s));\n }\n}",
"public class Main\n{\n public static void main(String... args)\n {\n final Scanner scanner = new Scanner(System.in);\n final int in = scanner.nextInt();\n final long h = TimeUnit.SECONDS.toHours(in);\n final long m = TimeUnit.SECONDS.toMinutes(in) - TimeUnit.HOURS.toMinutes(h);\n final long s = TimeUnit.SECONDS.toSeconds(in) - TimeUnit.HOURS.toSeconds(h) - TimeUnit.MINUTES.toSeconds(m);\n System.out.println(String.format(\"%d:%d:%d\", h, m, s));\n }\n}",
"Main"
] | import java.util.Scanner;
import java.util.concurrent.TimeUnit;
public class Main
{
public static void main(String... args)
{
final Scanner scanner = new Scanner(System.in);
final int in = scanner.nextInt();
final long h = TimeUnit.SECONDS.toHours(in);
final long m = TimeUnit.SECONDS.toMinutes(in) - TimeUnit.HOURS.toMinutes(h);
final long s = TimeUnit.SECONDS.toSeconds(in) - TimeUnit.HOURS.toSeconds(h) - TimeUnit.MINUTES.toSeconds(m);
System.out.println(String.format("%d:%d:%d", h, m, s));
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
4,
18,
13,
23,
13,
6,
13,
12,
13,
30,
41,
13,
4,
18,
20,
41,
13,
4,
18,
13,
13,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
68,
5
],
[
68,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
13,
14
],
[
6,
15
],
[
15,
16
],
[
0,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
21,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
29,
32
],
[
21,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
21,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
40,
42
],
[
21,
43
],
[
43,
44
],
[
43,
45
],
[
45,
46
],
[
45,
47
],
[
21,
48
],
[
48,
49
],
[
48,
50
],
[
50,
51
],
[
50,
52
],
[
21,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
53,
58
],
[
61,
59
],
[
59,
60
],
[
60,
61
],
[
61,
62
],
[
61,
63
],
[
60,
64
],
[
59,
65
],
[
61,
66
],
[
0,
67
],
[
67,
68
],
[
67,
69
]
] | [
"import java.util.Scanner;\n\npublic class Main{\n\tpublic static void main(String[] args){\n\n\t\tGetNum test = new GetNum();\n\t\ttest.ChangeSec();\n\t\t\t\n\t}\n}\n\nclass GetNum{\n\tpublic void ChangeSec(){\n\t\t\n\t\t\tString sec = new Scanner(System.in).nextLine()\t;\n\t\t\tint num = Integer.parseInt(sec);\n\t\t\tint test = num / 60;\n\n\t\t\tint h = test / 60;\n\t\t\tint m = test % 60;\n\t\t\tint s = num % 60;\n\n\t\t\tSystem.out.println(h + \":\" + m + \":\" + s); \n\n\t\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n\tpublic static void main(String[] args){\n\n\t\tGetNum test = new GetNum();\n\t\ttest.ChangeSec();\n\t\t\t\n\t}\n}",
"Main",
"public static void main(String[] args){\n\n\t\tGetNum test = new GetNum();\n\t\ttest.ChangeSec();\n\t\t\t\n\t}",
"main",
"{\n\n\t\tGetNum test = new GetNum();\n\t\ttest.ChangeSec();\n\t\t\t\n\t}",
"GetNum test = new GetNum();",
"test",
"new GetNum()",
"test.ChangeSec()",
"test.ChangeSec",
"test",
"String[] args",
"args",
"class GetNum{\n\tpublic void ChangeSec(){\n\t\t\n\t\t\tString sec = new Scanner(System.in).nextLine()\t;\n\t\t\tint num = Integer.parseInt(sec);\n\t\t\tint test = num / 60;\n\n\t\t\tint h = test / 60;\n\t\t\tint m = test % 60;\n\t\t\tint s = num % 60;\n\n\t\t\tSystem.out.println(h + \":\" + m + \":\" + s); \n\n\t\t}\n}",
"GetNum",
"public void ChangeSec(){\n\t\t\n\t\t\tString sec = new Scanner(System.in).nextLine()\t;\n\t\t\tint num = Integer.parseInt(sec);\n\t\t\tint test = num / 60;\n\n\t\t\tint h = test / 60;\n\t\t\tint m = test % 60;\n\t\t\tint s = num % 60;\n\n\t\t\tSystem.out.println(h + \":\" + m + \":\" + s); \n\n\t\t}",
"ChangeSec",
"{\n\t\t\n\t\t\tString sec = new Scanner(System.in).nextLine()\t;\n\t\t\tint num = Integer.parseInt(sec);\n\t\t\tint test = num / 60;\n\n\t\t\tint h = test / 60;\n\t\t\tint m = test % 60;\n\t\t\tint s = num % 60;\n\n\t\t\tSystem.out.println(h + \":\" + m + \":\" + s); \n\n\t\t}",
"String sec = new Scanner(System.in).nextLine()\t;",
"sec",
"new Scanner(System.in).nextLine()",
"new Scanner(System.in).nextLine",
"new Scanner(System.in)",
"int num = Integer.parseInt(sec);",
"num",
"Integer.parseInt(sec)",
"Integer.parseInt",
"Integer",
"sec",
"int test = num / 60;",
"test",
"num / 60",
"num",
"60",
"int h = test / 60;",
"h",
"test / 60",
"test",
"60",
"int m = test % 60;",
"m",
"test % 60",
"test",
"60",
"int s = num % 60;",
"s",
"num % 60",
"num",
"60",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"public class Main{\n\tpublic static void main(String[] args){\n\n\t\tGetNum test = new GetNum();\n\t\ttest.ChangeSec();\n\t\t\t\n\t}\n}",
"public class Main{\n\tpublic static void main(String[] args){\n\n\t\tGetNum test = new GetNum();\n\t\ttest.ChangeSec();\n\t\t\t\n\t}\n}",
"Main"
] | import java.util.Scanner;
public class Main{
public static void main(String[] args){
GetNum test = new GetNum();
test.ChangeSec();
}
}
class GetNum{
public void ChangeSec(){
String sec = new Scanner(System.in).nextLine() ;
int num = Integer.parseInt(sec);
int test = num / 60;
int h = test / 60;
int m = test % 60;
int s = num % 60;
System.out.println(h + ":" + m + ":" + s);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
14,
2,
2,
17,
13,
2,
13,
17,
30,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
2,
2,
13,
17,
17,
17,
41,
13,
2,
13,
2,
2,
2,
13,
17,
17,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
8,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
24,
28
],
[
28,
29
],
[
28,
30
],
[
23,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
35,
35
],
[
35,
36
],
[
35,
37
],
[
35,
38
],
[
31,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
41,
49
],
[
31,
50
],
[
50,
51
],
[
50,
52
],
[
52,
53
],
[
52,
54
],
[
54,
55
],
[
56,
56
],
[
56,
57
],
[
56,
58
],
[
56,
59
],
[
54,
60
],
[
60,
61
],
[
60,
62
],
[
31,
63
],
[
63,
64
],
[
64,
65
],
[
65,
66
],
[
65,
67
],
[
63,
68
],
[
71,
69
],
[
69,
70
],
[
70,
71
],
[
71,
72
],
[
71,
73
],
[
70,
74
],
[
69,
75
],
[
71,
76
],
[
6,
77
],
[
77,
78
]
] | [
"import java.util.Scanner;\n\n\nclass Main {\n\tpublic static void main(String args[]) {\n\t\t\n\t Scanner sc = new Scanner(System.in);\n\t String t = sc.next();\n\t int S = Integer.parseInt(t);\n\t if( 0 <= S && S < 86400){\n\t int h = S / 60 / 60;\n int m = ( S - (h * 60 * 60) ) / 60;\n int s = ( S - (h * 60 * 60 + m * 60));\n\t System.out.println( h + \":\" + m + \":\" + s );\n \t}\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main {\n\tpublic static void main(String args[]) {\n\t\t\n\t Scanner sc = new Scanner(System.in);\n\t String t = sc.next();\n\t int S = Integer.parseInt(t);\n\t if( 0 <= S && S < 86400){\n\t int h = S / 60 / 60;\n int m = ( S - (h * 60 * 60) ) / 60;\n int s = ( S - (h * 60 * 60 + m * 60));\n\t System.out.println( h + \":\" + m + \":\" + s );\n \t}\n\t}\n\n}",
"Main",
"public static void main(String args[]) {\n\t\t\n\t Scanner sc = new Scanner(System.in);\n\t String t = sc.next();\n\t int S = Integer.parseInt(t);\n\t if( 0 <= S && S < 86400){\n\t int h = S / 60 / 60;\n int m = ( S - (h * 60 * 60) ) / 60;\n int s = ( S - (h * 60 * 60 + m * 60));\n\t System.out.println( h + \":\" + m + \":\" + s );\n \t}\n\t}",
"main",
"{\n\t\t\n\t Scanner sc = new Scanner(System.in);\n\t String t = sc.next();\n\t int S = Integer.parseInt(t);\n\t if( 0 <= S && S < 86400){\n\t int h = S / 60 / 60;\n int m = ( S - (h * 60 * 60) ) / 60;\n int s = ( S - (h * 60 * 60 + m * 60));\n\t System.out.println( h + \":\" + m + \":\" + s );\n \t}\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"String t = sc.next();",
"t",
"sc.next()",
"sc.next",
"sc",
"int S = Integer.parseInt(t);",
"S",
"Integer.parseInt(t)",
"Integer.parseInt",
"Integer",
"t",
"if( 0 <= S && S < 86400){\n\t int h = S / 60 / 60;\n int m = ( S - (h * 60 * 60) ) / 60;\n int s = ( S - (h * 60 * 60 + m * 60));\n\t System.out.println( h + \":\" + m + \":\" + s );\n \t}",
"0 <= S && S < 86400",
"0 <= S",
"0",
"S",
"S < 86400",
"S",
"86400",
"{\n\t int h = S / 60 / 60;\n int m = ( S - (h * 60 * 60) ) / 60;\n int s = ( S - (h * 60 * 60 + m * 60));\n\t System.out.println( h + \":\" + m + \":\" + s );\n \t}",
"int h = S / 60 / 60;",
"h",
"S / 60 / 60",
"S / 60 / 60",
"S",
"60",
"60",
"int m = ( S - (h * 60 * 60) ) / 60;",
"m",
"( S - (h * 60 * 60) ) / 60",
"( S - (h * 60 * 60) )",
"S",
"(h * 60 * 60)",
"h * 60 * 60",
"h",
"60",
"60",
"60",
"int s = ( S - (h * 60 * 60 + m * 60));",
"s",
"( S - (h * 60 * 60 + m * 60))",
"S",
"(h * 60 * 60 + m * 60)",
"h * 60 * 60",
"h * 60 * 60",
"h",
"60",
"60",
"m * 60",
"m",
"60",
"System.out.println( h + \":\" + m + \":\" + s )",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String args[]",
"args"
] | import java.util.Scanner;
class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
String t = sc.next();
int S = Integer.parseInt(t);
if( 0 <= S && S < 86400){
int h = S / 60 / 60;
int m = ( S - (h * 60 * 60) ) / 60;
int s = ( S - (h * 60 * 60 + m * 60));
System.out.println( h + ":" + m + ":" + s );
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
53,
5
],
[
53,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
24,
28
],
[
8,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
31,
35
],
[
8,
36
],
[
36,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
36,
41
],
[
44,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
43,
47
],
[
42,
48
],
[
44,
49
],
[
6,
50
],
[
50,
51
],
[
0,
52
],
[
52,
53
],
[
52,
54
]
] | [
"import java.util.Scanner;\n \npublic class Main{\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int sum = sc.nextInt();\n int h = sum/3600;\n int m = (sum%3600)/60;\n int s = ((sum%3600)%60);\n System.out.println(h+\":\"+m+\":\"+s);\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int sum = sc.nextInt();\n int h = sum/3600;\n int m = (sum%3600)/60;\n int s = ((sum%3600)%60);\n System.out.println(h+\":\"+m+\":\"+s);\n }\n}",
"Main",
"public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int sum = sc.nextInt();\n int h = sum/3600;\n int m = (sum%3600)/60;\n int s = ((sum%3600)%60);\n System.out.println(h+\":\"+m+\":\"+s);\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int sum = sc.nextInt();\n int h = sum/3600;\n int m = (sum%3600)/60;\n int s = ((sum%3600)%60);\n System.out.println(h+\":\"+m+\":\"+s);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int sum = sc.nextInt();",
"sum",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int h = sum/3600;",
"h",
"sum/3600",
"sum",
"3600",
"int m = (sum%3600)/60;",
"m",
"(sum%3600)/60",
"(sum%3600)",
"sum",
"3600",
"60",
"int s = ((sum%3600)%60);",
"s",
"((sum%3600)%60)",
"(sum%3600)",
"sum",
"3600",
"60",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main{\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int sum = sc.nextInt();\n int h = sum/3600;\n int m = (sum%3600)/60;\n int s = ((sum%3600)%60);\n System.out.println(h+\":\"+m+\":\"+s);\n }\n}",
"public class Main{\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int sum = sc.nextInt();\n int h = sum/3600;\n int m = (sum%3600)/60;\n int s = ((sum%3600)%60);\n System.out.println(h+\":\"+m+\":\"+s);\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int sum = sc.nextInt();
int h = sum/3600;
int m = (sum%3600)/60;
int s = ((sum%3600)%60);
System.out.println(h+":"+m+":"+s);
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
38,
5,
13,
30,
4,
18,
18,
13,
13,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
14,
2,
2,
17,
13,
2,
13,
17,
30,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
88,
11
],
[
88,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
16,
17
],
[
16,
18
],
[
18,
19
],
[
19,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
19,
24
],
[
15,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
25,
29
],
[
29,
30
],
[
29,
31
],
[
25,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
25,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
40,
41
],
[
39,
42
],
[
25,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
48,
49
],
[
48,
50
],
[
43,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
54,
55
],
[
54,
56
],
[
51,
57
],
[
57,
58
],
[
57,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
59,
63
],
[
51,
64
],
[
64,
65
],
[
64,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
66,
70
],
[
51,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
71,
76
],
[
79,
77
],
[
77,
78
],
[
78,
79
],
[
79,
80
],
[
79,
81
],
[
78,
82
],
[
77,
83
],
[
79,
84
],
[
12,
85
],
[
85,
86
],
[
0,
87
],
[
87,
88
],
[
87,
89
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\ttry {\n\t\t\tInputStreamReader isr = new InputStreamReader(System.in);\n\t\t\tBufferedReader br = new BufferedReader(isr);\n\t\t\tString buf = br.readLine();\n\t\t\tint a = Integer.parseInt(buf);\n\t\t\t\n\t\t\tif(0 <= a || a < 86400){\n\t\t\t\tint hour = a /3600;\n\t\t\t\tint min = (a% 3600) / 60;\n\t\t\t\tint sec = (a% 3600) % 60;\n\t\t\t\t\n\t\t\tSystem.out.println(hour+\":\" + min + \":\" + sec);\n\t\t\t}\n\t\t} catch(IOException e) {\n\t\t\tSystem.err.println(e);\n\t\t}\n\t}\n\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\ttry {\n\t\t\tInputStreamReader isr = new InputStreamReader(System.in);\n\t\t\tBufferedReader br = new BufferedReader(isr);\n\t\t\tString buf = br.readLine();\n\t\t\tint a = Integer.parseInt(buf);\n\t\t\t\n\t\t\tif(0 <= a || a < 86400){\n\t\t\t\tint hour = a /3600;\n\t\t\t\tint min = (a% 3600) / 60;\n\t\t\t\tint sec = (a% 3600) % 60;\n\t\t\t\t\n\t\t\tSystem.out.println(hour+\":\" + min + \":\" + sec);\n\t\t\t}\n\t\t} catch(IOException e) {\n\t\t\tSystem.err.println(e);\n\t\t}\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\n\t\ttry {\n\t\t\tInputStreamReader isr = new InputStreamReader(System.in);\n\t\t\tBufferedReader br = new BufferedReader(isr);\n\t\t\tString buf = br.readLine();\n\t\t\tint a = Integer.parseInt(buf);\n\t\t\t\n\t\t\tif(0 <= a || a < 86400){\n\t\t\t\tint hour = a /3600;\n\t\t\t\tint min = (a% 3600) / 60;\n\t\t\t\tint sec = (a% 3600) % 60;\n\t\t\t\t\n\t\t\tSystem.out.println(hour+\":\" + min + \":\" + sec);\n\t\t\t}\n\t\t} catch(IOException e) {\n\t\t\tSystem.err.println(e);\n\t\t}\n\t}",
"main",
"{\n\n\t\ttry {\n\t\t\tInputStreamReader isr = new InputStreamReader(System.in);\n\t\t\tBufferedReader br = new BufferedReader(isr);\n\t\t\tString buf = br.readLine();\n\t\t\tint a = Integer.parseInt(buf);\n\t\t\t\n\t\t\tif(0 <= a || a < 86400){\n\t\t\t\tint hour = a /3600;\n\t\t\t\tint min = (a% 3600) / 60;\n\t\t\t\tint sec = (a% 3600) % 60;\n\t\t\t\t\n\t\t\tSystem.out.println(hour+\":\" + min + \":\" + sec);\n\t\t\t}\n\t\t} catch(IOException e) {\n\t\t\tSystem.err.println(e);\n\t\t}\n\t}",
"try {\n\t\t\tInputStreamReader isr = new InputStreamReader(System.in);\n\t\t\tBufferedReader br = new BufferedReader(isr);\n\t\t\tString buf = br.readLine();\n\t\t\tint a = Integer.parseInt(buf);\n\t\t\t\n\t\t\tif(0 <= a || a < 86400){\n\t\t\t\tint hour = a /3600;\n\t\t\t\tint min = (a% 3600) / 60;\n\t\t\t\tint sec = (a% 3600) % 60;\n\t\t\t\t\n\t\t\tSystem.out.println(hour+\":\" + min + \":\" + sec);\n\t\t\t}\n\t\t} catch(IOException e) {\n\t\t\tSystem.err.println(e);\n\t\t}",
"catch(IOException e) {\n\t\t\tSystem.err.println(e);\n\t\t}",
"IOException e",
"{\n\t\t\tSystem.err.println(e);\n\t\t}",
"System.err.println(e)",
"System.err.println",
"System.err",
"System",
"System.err",
"e",
"{\n\t\t\tInputStreamReader isr = new InputStreamReader(System.in);\n\t\t\tBufferedReader br = new BufferedReader(isr);\n\t\t\tString buf = br.readLine();\n\t\t\tint a = Integer.parseInt(buf);\n\t\t\t\n\t\t\tif(0 <= a || a < 86400){\n\t\t\t\tint hour = a /3600;\n\t\t\t\tint min = (a% 3600) / 60;\n\t\t\t\tint sec = (a% 3600) % 60;\n\t\t\t\t\n\t\t\tSystem.out.println(hour+\":\" + min + \":\" + sec);\n\t\t\t}\n\t\t}",
"InputStreamReader isr = new InputStreamReader(System.in);",
"isr",
"new InputStreamReader(System.in)",
"BufferedReader br = new BufferedReader(isr);",
"br",
"new BufferedReader(isr)",
"String buf = br.readLine();",
"buf",
"br.readLine()",
"br.readLine",
"br",
"int a = Integer.parseInt(buf);",
"a",
"Integer.parseInt(buf)",
"Integer.parseInt",
"Integer",
"buf",
"if(0 <= a || a < 86400){\n\t\t\t\tint hour = a /3600;\n\t\t\t\tint min = (a% 3600) / 60;\n\t\t\t\tint sec = (a% 3600) % 60;\n\t\t\t\t\n\t\t\tSystem.out.println(hour+\":\" + min + \":\" + sec);\n\t\t\t}",
"0 <= a || a < 86400",
"0 <= a",
"0",
"a",
"a < 86400",
"a",
"86400",
"{\n\t\t\t\tint hour = a /3600;\n\t\t\t\tint min = (a% 3600) / 60;\n\t\t\t\tint sec = (a% 3600) % 60;\n\t\t\t\t\n\t\t\tSystem.out.println(hour+\":\" + min + \":\" + sec);\n\t\t\t}",
"int hour = a /3600;",
"hour",
"a /3600",
"a",
"3600",
"int min = (a% 3600) / 60;",
"min",
"(a% 3600) / 60",
"(a% 3600)",
"a",
"3600",
"60",
"int sec = (a% 3600) % 60;",
"sec",
"(a% 3600) % 60",
"(a% 3600)",
"a",
"3600",
"60",
"System.out.println(hour+\":\" + min + \":\" + sec)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour+\":\" + min + \":\" + sec",
"\":\"",
"min",
"hour+\":\" + min + \":\" + sec",
"hour",
"\":\"",
"min",
"\":\"",
"sec",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\ttry {\n\t\t\tInputStreamReader isr = new InputStreamReader(System.in);\n\t\t\tBufferedReader br = new BufferedReader(isr);\n\t\t\tString buf = br.readLine();\n\t\t\tint a = Integer.parseInt(buf);\n\t\t\t\n\t\t\tif(0 <= a || a < 86400){\n\t\t\t\tint hour = a /3600;\n\t\t\t\tint min = (a% 3600) / 60;\n\t\t\t\tint sec = (a% 3600) % 60;\n\t\t\t\t\n\t\t\tSystem.out.println(hour+\":\" + min + \":\" + sec);\n\t\t\t}\n\t\t} catch(IOException e) {\n\t\t\tSystem.err.println(e);\n\t\t}\n\t}\n\n}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\ttry {\n\t\t\tInputStreamReader isr = new InputStreamReader(System.in);\n\t\t\tBufferedReader br = new BufferedReader(isr);\n\t\t\tString buf = br.readLine();\n\t\t\tint a = Integer.parseInt(buf);\n\t\t\t\n\t\t\tif(0 <= a || a < 86400){\n\t\t\t\tint hour = a /3600;\n\t\t\t\tint min = (a% 3600) / 60;\n\t\t\t\tint sec = (a% 3600) % 60;\n\t\t\t\t\n\t\t\tSystem.out.println(hour+\":\" + min + \":\" + sec);\n\t\t\t}\n\t\t} catch(IOException e) {\n\t\t\tSystem.err.println(e);\n\t\t}\n\t}\n\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) {
try {
InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(isr);
String buf = br.readLine();
int a = Integer.parseInt(buf);
if(0 <= a || a < 86400){
int hour = a /3600;
int min = (a% 3600) / 60;
int sec = (a% 3600) % 60;
System.out.println(hour+":" + min + ":" + sec);
}
} catch(IOException e) {
System.err.println(e);
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
17,
41,
13,
17,
41,
13,
41,
13,
41,
13,
41,
13,
0,
13,
2,
13,
13,
0,
13,
2,
13,
13,
0,
13,
2,
13,
13,
0,
13,
2,
13,
13,
0,
13,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
77,
5
],
[
77,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
14,
17
],
[
17,
18
],
[
18,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
8,
23
],
[
23,
24
],
[
23,
25
],
[
8,
26
],
[
26,
27
],
[
8,
28
],
[
28,
29
],
[
8,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
8,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
36,
38
],
[
8,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
41,
43
],
[
8,
44
],
[
44,
45
],
[
44,
46
],
[
46,
47
],
[
46,
48
],
[
8,
49
],
[
49,
50
],
[
49,
51
],
[
51,
52
],
[
51,
53
],
[
8,
54
],
[
54,
55
],
[
54,
56
],
[
8,
57
],
[
57,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
57,
62
],
[
65,
63
],
[
63,
64
],
[
64,
65
],
[
65,
66
],
[
65,
67
],
[
64,
68
],
[
63,
69
],
[
65,
70
],
[
8,
71
],
[
71,
72
],
[
72,
73
],
[
6,
74
],
[
74,
75
],
[
0,
76
],
[
76,
77
],
[
76,
78
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner scaner = new Scanner( System.in );\n\n\t\tint time = Integer.parseInt( scaner.next() );\n\t\tfinal int HOUR = 3600;\n\t\tfinal int MINUTE = 60;\n\n\t\tint hour ;\n\t\tint minute ;\n\t\tint second ;\n\t\tint remain;\n\n\t\thour = time / HOUR;\n\t\tremain = time % HOUR;\n\n\t\tminute = remain / MINUTE;\n\t\tremain = remain % MINUTE;\n\n\t\tsecond = remain;\n\n\t\tSystem.out.println( hour + \":\" + minute + \":\" + second );\n\n\t\tscaner.close();\n\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner scaner = new Scanner( System.in );\n\n\t\tint time = Integer.parseInt( scaner.next() );\n\t\tfinal int HOUR = 3600;\n\t\tfinal int MINUTE = 60;\n\n\t\tint hour ;\n\t\tint minute ;\n\t\tint second ;\n\t\tint remain;\n\n\t\thour = time / HOUR;\n\t\tremain = time % HOUR;\n\n\t\tminute = remain / MINUTE;\n\t\tremain = remain % MINUTE;\n\n\t\tsecond = remain;\n\n\t\tSystem.out.println( hour + \":\" + minute + \":\" + second );\n\n\t\tscaner.close();\n\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\n\t\tScanner scaner = new Scanner( System.in );\n\n\t\tint time = Integer.parseInt( scaner.next() );\n\t\tfinal int HOUR = 3600;\n\t\tfinal int MINUTE = 60;\n\n\t\tint hour ;\n\t\tint minute ;\n\t\tint second ;\n\t\tint remain;\n\n\t\thour = time / HOUR;\n\t\tremain = time % HOUR;\n\n\t\tminute = remain / MINUTE;\n\t\tremain = remain % MINUTE;\n\n\t\tsecond = remain;\n\n\t\tSystem.out.println( hour + \":\" + minute + \":\" + second );\n\n\t\tscaner.close();\n\n\t}",
"main",
"{\n\n\t\tScanner scaner = new Scanner( System.in );\n\n\t\tint time = Integer.parseInt( scaner.next() );\n\t\tfinal int HOUR = 3600;\n\t\tfinal int MINUTE = 60;\n\n\t\tint hour ;\n\t\tint minute ;\n\t\tint second ;\n\t\tint remain;\n\n\t\thour = time / HOUR;\n\t\tremain = time % HOUR;\n\n\t\tminute = remain / MINUTE;\n\t\tremain = remain % MINUTE;\n\n\t\tsecond = remain;\n\n\t\tSystem.out.println( hour + \":\" + minute + \":\" + second );\n\n\t\tscaner.close();\n\n\t}",
"Scanner scaner = new Scanner( System.in );",
"scaner",
"new Scanner( System.in )",
"int time = Integer.parseInt( scaner.next() );",
"time",
"Integer.parseInt( scaner.next() )",
"Integer.parseInt",
"Integer",
"scaner.next()",
"scaner.next",
"scaner",
"final int HOUR = 3600;",
"HOUR",
"3600",
"final int MINUTE = 60;",
"MINUTE",
"60",
"int hour ;",
"hour",
"int minute ;",
"minute",
"int second ;",
"second",
"int remain;",
"remain",
"hour = time / HOUR",
"hour",
"time / HOUR",
"time",
"HOUR",
"remain = time % HOUR",
"remain",
"time % HOUR",
"time",
"HOUR",
"minute = remain / MINUTE",
"minute",
"remain / MINUTE",
"remain",
"MINUTE",
"remain = remain % MINUTE",
"remain",
"remain % MINUTE",
"remain",
"MINUTE",
"second = remain",
"second",
"remain",
"System.out.println( hour + \":\" + minute + \":\" + second )",
"System.out.println",
"System.out",
"System",
"System.out",
"hour + \":\" + minute + \":\" + second",
"\":\"",
"minute",
"hour + \":\" + minute + \":\" + second",
"hour",
"\":\"",
"minute",
"\":\"",
"second",
"scaner.close()",
"scaner.close",
"scaner",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner scaner = new Scanner( System.in );\n\n\t\tint time = Integer.parseInt( scaner.next() );\n\t\tfinal int HOUR = 3600;\n\t\tfinal int MINUTE = 60;\n\n\t\tint hour ;\n\t\tint minute ;\n\t\tint second ;\n\t\tint remain;\n\n\t\thour = time / HOUR;\n\t\tremain = time % HOUR;\n\n\t\tminute = remain / MINUTE;\n\t\tremain = remain % MINUTE;\n\n\t\tsecond = remain;\n\n\t\tSystem.out.println( hour + \":\" + minute + \":\" + second );\n\n\t\tscaner.close();\n\n\t}\n\n}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner scaner = new Scanner( System.in );\n\n\t\tint time = Integer.parseInt( scaner.next() );\n\t\tfinal int HOUR = 3600;\n\t\tfinal int MINUTE = 60;\n\n\t\tint hour ;\n\t\tint minute ;\n\t\tint second ;\n\t\tint remain;\n\n\t\thour = time / HOUR;\n\t\tremain = time % HOUR;\n\n\t\tminute = remain / MINUTE;\n\t\tremain = remain % MINUTE;\n\n\t\tsecond = remain;\n\n\t\tSystem.out.println( hour + \":\" + minute + \":\" + second );\n\n\t\tscaner.close();\n\n\t}\n\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scaner = new Scanner( System.in );
int time = Integer.parseInt( scaner.next() );
final int HOUR = 3600;
final int MINUTE = 60;
int hour ;
int minute ;
int second ;
int remain;
hour = time / HOUR;
remain = time % HOUR;
minute = remain / MINUTE;
remain = remain % MINUTE;
second = remain;
System.out.println( hour + ":" + minute + ":" + second );
scaner.close();
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
56,
5
],
[
56,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
24,
28
],
[
8,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
31,
35
],
[
8,
36
],
[
36,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
36,
41
],
[
44,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
43,
47
],
[
42,
48
],
[
44,
49
],
[
8,
50
],
[
50,
51
],
[
51,
52
],
[
6,
53
],
[
53,
54
],
[
0,
55
],
[
55,
56
],
[
55,
57
]
] | [
"import java.util.Scanner;\n\npublic class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int S = scan.nextInt();\n int h = S / 3600;\n int d = (S % 3600) / 60;\n int s = (S % 3600) % 60;\n System.out.println(h+\":\"+d+\":\"+s);\n scan.close();\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int S = scan.nextInt();\n int h = S / 3600;\n int d = (S % 3600) / 60;\n int s = (S % 3600) % 60;\n System.out.println(h+\":\"+d+\":\"+s);\n scan.close();\n }\n}",
"Main",
"public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int S = scan.nextInt();\n int h = S / 3600;\n int d = (S % 3600) / 60;\n int s = (S % 3600) % 60;\n System.out.println(h+\":\"+d+\":\"+s);\n scan.close();\n }",
"main",
"{\n Scanner scan = new Scanner(System.in);\n int S = scan.nextInt();\n int h = S / 3600;\n int d = (S % 3600) / 60;\n int s = (S % 3600) % 60;\n System.out.println(h+\":\"+d+\":\"+s);\n scan.close();\n }",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int S = scan.nextInt();",
"S",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int h = S / 3600;",
"h",
"S / 3600",
"S",
"3600",
"int d = (S % 3600) / 60;",
"d",
"(S % 3600) / 60",
"(S % 3600)",
"S",
"3600",
"60",
"int s = (S % 3600) % 60;",
"s",
"(S % 3600) % 60",
"(S % 3600)",
"S",
"3600",
"60",
"System.out.println(h+\":\"+d+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+d+\":\"+s",
"\":\"",
"d",
"h+\":\"+d+\":\"+s",
"h",
"\":\"",
"d",
"\":\"",
"s",
"scan.close()",
"scan.close",
"scan",
"String[] args",
"args",
"public class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int S = scan.nextInt();\n int h = S / 3600;\n int d = (S % 3600) / 60;\n int s = (S % 3600) % 60;\n System.out.println(h+\":\"+d+\":\"+s);\n scan.close();\n }\n}",
"public class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int S = scan.nextInt();\n int h = S / 3600;\n int d = (S % 3600) / 60;\n int s = (S % 3600) % 60;\n System.out.println(h+\":\"+d+\":\"+s);\n scan.close();\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int S = scan.nextInt();
int h = S / 3600;
int d = (S % 3600) / 60;
int s = (S % 3600) % 60;
System.out.println(h+":"+d+":"+s);
scan.close();
}
}
|
[
7,
15,
13,
17,
6,
13,
41,
13,
41,
13,
41,
13,
41,
13,
12,
13,
30,
41,
13,
20,
0,
13,
4,
18,
13,
0,
13,
2,
13,
17,
0,
13,
2,
2,
13,
2,
13,
17,
17,
0,
13,
2,
2,
13,
2,
13,
17,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
12,
13,
30,
41,
13,
20,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
76,
5
],
[
76,
6
],
[
6,
7
],
[
76,
8
],
[
8,
9
],
[
76,
10
],
[
10,
11
],
[
76,
12
],
[
12,
13
],
[
76,
14
],
[
14,
15
],
[
14,
16
],
[
16,
17
],
[
17,
18
],
[
17,
19
],
[
16,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
16,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
27,
29
],
[
16,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
32,
38
],
[
16,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
44,
46
],
[
41,
47
],
[
47,
48
],
[
47,
49
],
[
16,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
50,
55
],
[
58,
56
],
[
56,
57
],
[
57,
58
],
[
58,
59
],
[
58,
60
],
[
57,
61
],
[
56,
62
],
[
58,
63
],
[
76,
64
],
[
64,
65
],
[
64,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
66,
70
],
[
70,
71
],
[
71,
72
],
[
64,
73
],
[
73,
74
],
[
0,
75
],
[
75,
76
],
[
75,
77
]
] | [
"import java.util.Scanner;\n\npublic class Main{\n\t\n\tint S;\n\tint hour;\n\tint min;\n\tint seco;\n\t\n\tpublic void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tS =sc.nextInt();\n\t\t\n\t\thour = S / 3600;\n\t\tmin = (S - hour*3600) / 60;\n\t\tseco= (S - hour*3600) - (min*60);\n\t\t\n\t\tSystem.out.println(hour+\":\"+min+\":\"+seco);\n\t\t\n\t}\n\t\n\tpublic static void main(String[]args){\n\t\tMain obj = new Main();\n\t\tobj.solve();\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n\t\n\tint S;\n\tint hour;\n\tint min;\n\tint seco;\n\t\n\tpublic void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tS =sc.nextInt();\n\t\t\n\t\thour = S / 3600;\n\t\tmin = (S - hour*3600) / 60;\n\t\tseco= (S - hour*3600) - (min*60);\n\t\t\n\t\tSystem.out.println(hour+\":\"+min+\":\"+seco);\n\t\t\n\t}\n\t\n\tpublic static void main(String[]args){\n\t\tMain obj = new Main();\n\t\tobj.solve();\n\t}\n}",
"Main",
"int S;",
"S",
"int hour;",
"hour",
"int min;",
"min",
"int seco;",
"seco",
"public void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tS =sc.nextInt();\n\t\t\n\t\thour = S / 3600;\n\t\tmin = (S - hour*3600) / 60;\n\t\tseco= (S - hour*3600) - (min*60);\n\t\t\n\t\tSystem.out.println(hour+\":\"+min+\":\"+seco);\n\t\t\n\t}",
"solve",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tS =sc.nextInt();\n\t\t\n\t\thour = S / 3600;\n\t\tmin = (S - hour*3600) / 60;\n\t\tseco= (S - hour*3600) - (min*60);\n\t\t\n\t\tSystem.out.println(hour+\":\"+min+\":\"+seco);\n\t\t\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"S =sc.nextInt()",
"S",
"sc.nextInt()",
"sc.nextInt",
"sc",
"hour = S / 3600",
"hour",
"S / 3600",
"S",
"3600",
"min = (S - hour*3600) / 60",
"min",
"(S - hour*3600) / 60",
"(S - hour*3600)",
"S",
"hour*3600",
"hour",
"3600",
"60",
"seco= (S - hour*3600) - (min*60)",
"seco",
"(S - hour*3600) - (min*60)",
"(S - hour*3600)",
"S",
"hour*3600",
"hour",
"3600",
"(min*60)",
"min",
"60",
"System.out.println(hour+\":\"+min+\":\"+seco)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour+\":\"+min+\":\"+seco",
"\":\"",
"min",
"hour+\":\"+min+\":\"+seco",
"hour",
"\":\"",
"min",
"\":\"",
"seco",
"public static void main(String[]args){\n\t\tMain obj = new Main();\n\t\tobj.solve();\n\t}",
"main",
"{\n\t\tMain obj = new Main();\n\t\tobj.solve();\n\t}",
"Main obj = new Main();",
"obj",
"new Main()",
"obj.solve()",
"obj.solve",
"obj",
"String[]args",
"args",
"public class Main{\n\t\n\tint S;\n\tint hour;\n\tint min;\n\tint seco;\n\t\n\tpublic void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tS =sc.nextInt();\n\t\t\n\t\thour = S / 3600;\n\t\tmin = (S - hour*3600) / 60;\n\t\tseco= (S - hour*3600) - (min*60);\n\t\t\n\t\tSystem.out.println(hour+\":\"+min+\":\"+seco);\n\t\t\n\t}\n\t\n\tpublic static void main(String[]args){\n\t\tMain obj = new Main();\n\t\tobj.solve();\n\t}\n}",
"public class Main{\n\t\n\tint S;\n\tint hour;\n\tint min;\n\tint seco;\n\t\n\tpublic void solve(){\n\t\tScanner sc = new Scanner(System.in);\n\t\tS =sc.nextInt();\n\t\t\n\t\thour = S / 3600;\n\t\tmin = (S - hour*3600) / 60;\n\t\tseco= (S - hour*3600) - (min*60);\n\t\t\n\t\tSystem.out.println(hour+\":\"+min+\":\"+seco);\n\t\t\n\t}\n\t\n\tpublic static void main(String[]args){\n\t\tMain obj = new Main();\n\t\tobj.solve();\n\t}\n}",
"Main"
] | import java.util.Scanner;
public class Main{
int S;
int hour;
int min;
int seco;
public void solve(){
Scanner sc = new Scanner(System.in);
S =sc.nextInt();
hour = S / 3600;
min = (S - hour*3600) / 60;
seco= (S - hour*3600) - (min*60);
System.out.println(hour+":"+min+":"+seco);
}
public static void main(String[]args){
Main obj = new Main();
obj.solve();
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
2,
13,
17,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
57,
5
],
[
57,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
14,
17
],
[
17,
18
],
[
18,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
22,
24
],
[
8,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
27,
29
],
[
8,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
35,
40
],
[
43,
41
],
[
41,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
42,
46
],
[
41,
47
],
[
43,
48
],
[
48,
49
],
[
48,
50
],
[
8,
51
],
[
51,
52
],
[
52,
53
],
[
6,
54
],
[
54,
55
],
[
0,
56
],
[
56,
57
],
[
56,
58
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint s = Integer.parseInt(scan.next());\n\t\tint h = s / 3600;\n\t\ts = s % 3600;\n\t\tint m = s / 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s % 60);\n\t\tscan.close();\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint s = Integer.parseInt(scan.next());\n\t\tint h = s / 3600;\n\t\ts = s % 3600;\n\t\tint m = s / 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s % 60);\n\t\tscan.close();\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint s = Integer.parseInt(scan.next());\n\t\tint h = s / 3600;\n\t\ts = s % 3600;\n\t\tint m = s / 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s % 60);\n\t\tscan.close();\n\t}",
"main",
"{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint s = Integer.parseInt(scan.next());\n\t\tint h = s / 3600;\n\t\ts = s % 3600;\n\t\tint m = s / 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s % 60);\n\t\tscan.close();\n\t}",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int s = Integer.parseInt(scan.next());",
"s",
"Integer.parseInt(scan.next())",
"Integer.parseInt",
"Integer",
"scan.next()",
"scan.next",
"scan",
"int h = s / 3600;",
"h",
"s / 3600",
"s",
"3600",
"s = s % 3600",
"s",
"s % 3600",
"s",
"3600",
"int m = s / 60;",
"m",
"s / 60",
"s",
"60",
"System.out.println(h + \":\" + m + \":\" + s % 60)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s % 60",
"\":\"",
"m",
"h + \":\" + m + \":\" + s % 60",
"h",
"\":\"",
"m",
"\":\"",
"s % 60",
"s",
"60",
"scan.close()",
"scan.close",
"scan",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint s = Integer.parseInt(scan.next());\n\t\tint h = s / 3600;\n\t\ts = s % 3600;\n\t\tint m = s / 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s % 60);\n\t\tscan.close();\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint s = Integer.parseInt(scan.next());\n\t\tint h = s / 3600;\n\t\ts = s % 3600;\n\t\tint m = s / 60;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s % 60);\n\t\tscan.close();\n\t}\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int s = Integer.parseInt(scan.next());
int h = s / 3600;
s = s % 3600;
int m = s / 60;
System.out.println(h + ":" + m + ":" + s % 60);
scan.close();
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
41,
13,
41,
13,
0,
13,
4,
18,
13,
4,
18,
13,
0,
13,
2,
2,
0,
13,
2,
2,
13,
17,
17,
17,
17,
0,
13,
2,
0,
13,
2,
13,
17,
17,
4,
18,
18,
13,
13,
17,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
66,
11
],
[
66,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
14,
20
],
[
20,
21
],
[
14,
22
],
[
22,
23
],
[
14,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
27,
28
],
[
26,
29
],
[
29,
30
],
[
30,
31
],
[
14,
32
],
[
32,
33
],
[
32,
34
],
[
35,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
39,
39
],
[
39,
40
],
[
39,
41
],
[
39,
42
],
[
35,
43
],
[
35,
44
],
[
14,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
50,
51
],
[
50,
52
],
[
47,
53
],
[
14,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
54,
59
],
[
54,
60
],
[
54,
61
],
[
54,
62
],
[
12,
63
],
[
63,
64
],
[
0,
65
],
[
65,
66
],
[
65,
67
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\tpublic static void main(String[] args) throws NumberFormatException, IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tlong hour,min,sec;\n\t\tsec = Long.parseLong(br.readLine());\n\t\tsec -= (hour = sec / 60 /60) * 60 * 60;\n\t\tsec -= (min = sec / 60) * 60;\n\t\tSystem.out.printf(\"%d:%d:%d%n\", hour, min, sec);\n\t}\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n\tpublic static void main(String[] args) throws NumberFormatException, IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tlong hour,min,sec;\n\t\tsec = Long.parseLong(br.readLine());\n\t\tsec -= (hour = sec / 60 /60) * 60 * 60;\n\t\tsec -= (min = sec / 60) * 60;\n\t\tSystem.out.printf(\"%d:%d:%d%n\", hour, min, sec);\n\t}\n}",
"Main",
"public static void main(String[] args) throws NumberFormatException, IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tlong hour,min,sec;\n\t\tsec = Long.parseLong(br.readLine());\n\t\tsec -= (hour = sec / 60 /60) * 60 * 60;\n\t\tsec -= (min = sec / 60) * 60;\n\t\tSystem.out.printf(\"%d:%d:%d%n\", hour, min, sec);\n\t}",
"main",
"{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tlong hour,min,sec;\n\t\tsec = Long.parseLong(br.readLine());\n\t\tsec -= (hour = sec / 60 /60) * 60 * 60;\n\t\tsec -= (min = sec / 60) * 60;\n\t\tSystem.out.printf(\"%d:%d:%d%n\", hour, min, sec);\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"long hour",
"hour",
"min",
"min",
"sec;",
"sec",
"sec = Long.parseLong(br.readLine())",
"sec",
"Long.parseLong(br.readLine())",
"Long.parseLong",
"Long",
"br.readLine()",
"br.readLine",
"br",
"sec -= (hour = sec / 60 /60) * 60 * 60",
"sec",
"(hour = sec / 60 /60) * 60 * 60",
"(hour = sec / 60 /60) * 60 * 60",
"(hour = sec / 60 /60)",
"hour",
"sec / 60 /60",
"sec / 60 /60",
"sec",
"60",
"60",
"60",
"60",
"sec -= (min = sec / 60) * 60",
"sec",
"(min = sec / 60) * 60",
"(min = sec / 60)",
"min",
"sec / 60",
"sec",
"60",
"60",
"System.out.printf(\"%d:%d:%d%n\", hour, min, sec)",
"System.out.printf",
"System.out",
"System",
"System.out",
"\"%d:%d:%d%n\"",
"hour",
"min",
"sec",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) throws NumberFormatException, IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tlong hour,min,sec;\n\t\tsec = Long.parseLong(br.readLine());\n\t\tsec -= (hour = sec / 60 /60) * 60 * 60;\n\t\tsec -= (min = sec / 60) * 60;\n\t\tSystem.out.printf(\"%d:%d:%d%n\", hour, min, sec);\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) throws NumberFormatException, IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tlong hour,min,sec;\n\t\tsec = Long.parseLong(br.readLine());\n\t\tsec -= (hour = sec / 60 /60) * 60 * 60;\n\t\tsec -= (min = sec / 60) * 60;\n\t\tSystem.out.printf(\"%d:%d:%d%n\", hour, min, sec);\n\t}\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws NumberFormatException, IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
long hour,min,sec;
sec = Long.parseLong(br.readLine());
sec -= (hour = sec / 60 /60) * 60 * 60;
sec -= (min = sec / 60) * 60;
System.out.printf("%d:%d:%d%n", hour, min, sec);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
53,
5
],
[
53,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
24,
28
],
[
8,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
31,
35
],
[
8,
36
],
[
36,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
36,
41
],
[
44,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
43,
47
],
[
42,
48
],
[
44,
49
],
[
6,
50
],
[
50,
51
],
[
0,
52
],
[
52,
53
],
[
52,
54
]
] | [
"import java.util.*;\npublic class Main {\n\tpublic static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\tint a = scan.nextInt();\n\tint h = a / 3600;\n\tint m = (a % 3600)/60;\n\tint s = (a % 3600)%60;\n\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\tpublic static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\tint a = scan.nextInt();\n\tint h = a / 3600;\n\tint m = (a % 3600)/60;\n\tint s = (a % 3600)%60;\n\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\tint a = scan.nextInt();\n\tint h = a / 3600;\n\tint m = (a % 3600)/60;\n\tint s = (a % 3600)%60;\n\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"main",
"{\n\tScanner scan = new Scanner(System.in);\n\tint a = scan.nextInt();\n\tint h = a / 3600;\n\tint m = (a % 3600)/60;\n\tint s = (a % 3600)%60;\n\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int a = scan.nextInt();",
"a",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int h = a / 3600;",
"h",
"a / 3600",
"a",
"3600",
"int m = (a % 3600)/60;",
"m",
"(a % 3600)/60",
"(a % 3600)",
"a",
"3600",
"60",
"int s = (a % 3600)%60;",
"s",
"(a % 3600)%60",
"(a % 3600)",
"a",
"3600",
"60",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\tint a = scan.nextInt();\n\tint h = a / 3600;\n\tint m = (a % 3600)/60;\n\tint s = (a % 3600)%60;\n\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\tint a = scan.nextInt();\n\tint h = a / 3600;\n\tint m = (a % 3600)/60;\n\tint s = (a % 3600)%60;\n\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n}",
"Main"
] | import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int h = a / 3600;
int m = (a % 3600)/60;
int s = (a % 3600)%60;
System.out.println(h+":"+m+":"+s);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
4,
18,
20,
23,
13,
12,
13,
30,
41,
13,
41,
13,
41,
13,
41,
13,
41,
13,
20,
0,
13,
4,
18,
13,
4,
18,
13,
0,
13,
2,
13,
17,
0,
13,
2,
2,
13,
17,
17,
0,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
70,
5
],
[
70,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
10,
11
],
[
6,
12
],
[
12,
13
],
[
70,
14
],
[
14,
15
],
[
14,
16
],
[
16,
17
],
[
17,
18
],
[
16,
19
],
[
19,
20
],
[
16,
21
],
[
21,
22
],
[
16,
23
],
[
23,
24
],
[
16,
25
],
[
25,
26
],
[
25,
27
],
[
16,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
30,
33
],
[
33,
34
],
[
34,
35
],
[
16,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
38,
40
],
[
16,
41
],
[
41,
42
],
[
41,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
43,
47
],
[
16,
48
],
[
48,
49
],
[
48,
50
],
[
51,
51
],
[
51,
52
],
[
51,
53
],
[
51,
54
],
[
16,
55
],
[
55,
56
],
[
56,
57
],
[
57,
58
],
[
57,
59
],
[
55,
60
],
[
63,
61
],
[
61,
62
],
[
62,
63
],
[
63,
64
],
[
63,
65
],
[
62,
66
],
[
61,
67
],
[
63,
68
],
[
0,
69
],
[
69,
70
],
[
69,
71
]
] | [
"import java.util.Scanner;\n\n/**\n * Created by labuser on 2016/04/15.\n */\npublic class Main {\n public static void main(String[] args) {\n new Main().run();\n }\n\n private void run() {\n int s;\n int h;\n int m;\n int sl;\n\n Scanner sc = new Scanner(System.in);\n s = Integer.parseInt(sc.nextLine());\n\n h = s / 3600;\n m = s % 3600 / 60;\n sl = s % 3600 % 60;\n System.out.println(h+\":\"+m+\":\"+sl);\n\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n public static void main(String[] args) {\n new Main().run();\n }\n\n private void run() {\n int s;\n int h;\n int m;\n int sl;\n\n Scanner sc = new Scanner(System.in);\n s = Integer.parseInt(sc.nextLine());\n\n h = s / 3600;\n m = s % 3600 / 60;\n sl = s % 3600 % 60;\n System.out.println(h+\":\"+m+\":\"+sl);\n\n }\n}",
"Main",
"public static void main(String[] args) {\n new Main().run();\n }",
"main",
"{\n new Main().run();\n }",
"new Main().run()",
"new Main().run",
"new Main()",
"String[] args",
"args",
"private void run() {\n int s;\n int h;\n int m;\n int sl;\n\n Scanner sc = new Scanner(System.in);\n s = Integer.parseInt(sc.nextLine());\n\n h = s / 3600;\n m = s % 3600 / 60;\n sl = s % 3600 % 60;\n System.out.println(h+\":\"+m+\":\"+sl);\n\n }",
"run",
"{\n int s;\n int h;\n int m;\n int sl;\n\n Scanner sc = new Scanner(System.in);\n s = Integer.parseInt(sc.nextLine());\n\n h = s / 3600;\n m = s % 3600 / 60;\n sl = s % 3600 % 60;\n System.out.println(h+\":\"+m+\":\"+sl);\n\n }",
"int s;",
"s",
"int h;",
"h",
"int m;",
"m",
"int sl;",
"sl",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"s = Integer.parseInt(sc.nextLine())",
"s",
"Integer.parseInt(sc.nextLine())",
"Integer.parseInt",
"Integer",
"sc.nextLine()",
"sc.nextLine",
"sc",
"h = s / 3600",
"h",
"s / 3600",
"s",
"3600",
"m = s % 3600 / 60",
"m",
"s % 3600 / 60",
"s % 3600",
"s",
"3600",
"60",
"sl = s % 3600 % 60",
"sl",
"s % 3600 % 60",
"s % 3600 % 60",
"s",
"3600",
"60",
"System.out.println(h+\":\"+m+\":\"+sl)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+sl",
"\":\"",
"m",
"h+\":\"+m+\":\"+sl",
"h",
"\":\"",
"m",
"\":\"",
"sl",
"public class Main {\n public static void main(String[] args) {\n new Main().run();\n }\n\n private void run() {\n int s;\n int h;\n int m;\n int sl;\n\n Scanner sc = new Scanner(System.in);\n s = Integer.parseInt(sc.nextLine());\n\n h = s / 3600;\n m = s % 3600 / 60;\n sl = s % 3600 % 60;\n System.out.println(h+\":\"+m+\":\"+sl);\n\n }\n}",
"public class Main {\n public static void main(String[] args) {\n new Main().run();\n }\n\n private void run() {\n int s;\n int h;\n int m;\n int sl;\n\n Scanner sc = new Scanner(System.in);\n s = Integer.parseInt(sc.nextLine());\n\n h = s / 3600;\n m = s % 3600 / 60;\n sl = s % 3600 % 60;\n System.out.println(h+\":\"+m+\":\"+sl);\n\n }\n}",
"Main"
] | import java.util.Scanner;
/**
* Created by labuser on 2016/04/15.
*/
public class Main {
public static void main(String[] args) {
new Main().run();
}
private void run() {
int s;
int h;
int m;
int sl;
Scanner sc = new Scanner(System.in);
s = Integer.parseInt(sc.nextLine());
h = s / 3600;
m = s % 3600 / 60;
sl = s % 3600 % 60;
System.out.println(h+":"+m+":"+sl);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
17,
41,
13,
17,
41,
13,
17,
14,
2,
13,
17,
30,
0,
13,
4,
18,
13,
2,
13,
17,
0,
13,
2,
4,
18,
13,
2,
13,
17,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
74,
5
],
[
74,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
18,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
8,
23
],
[
23,
24
],
[
23,
25
],
[
8,
26
],
[
26,
27
],
[
26,
28
],
[
8,
29
],
[
29,
30
],
[
30,
31
],
[
30,
32
],
[
29,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
36,
39
],
[
39,
40
],
[
39,
41
],
[
33,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
45,
48
],
[
48,
49
],
[
48,
50
],
[
44,
51
],
[
33,
52
],
[
52,
53
],
[
52,
54
],
[
54,
55
],
[
54,
56
],
[
8,
57
],
[
57,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
57,
62
],
[
65,
63
],
[
63,
64
],
[
64,
65
],
[
65,
66
],
[
65,
67
],
[
64,
68
],
[
63,
69
],
[
65,
70
],
[
6,
71
],
[
71,
72
],
[
0,
73
],
[
73,
74
],
[
73,
75
]
] | [
"import java.util.Scanner;\n\n\npublic class Main {\n\n\tpublic static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tint second = sc.nextInt();\n\t\tsc.close();\n\n\t\tint h = 0,m = 0,s = 0;\n\n\t\tif(second != 0){\n\t\t\th = (int)(Math.floor(second / 3600));\n\t\t\tm = (int)(Math.floor(second / 60)) % 60;\n\t\t\ts = second % 60;\n\t\t}\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n\tpublic static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tint second = sc.nextInt();\n\t\tsc.close();\n\n\t\tint h = 0,m = 0,s = 0;\n\n\t\tif(second != 0){\n\t\t\th = (int)(Math.floor(second / 3600));\n\t\t\tm = (int)(Math.floor(second / 60)) % 60;\n\t\t\ts = second % 60;\n\t\t}\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n\n}",
"Main",
"public static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tint second = sc.nextInt();\n\t\tsc.close();\n\n\t\tint h = 0,m = 0,s = 0;\n\n\t\tif(second != 0){\n\t\t\th = (int)(Math.floor(second / 3600));\n\t\t\tm = (int)(Math.floor(second / 60)) % 60;\n\t\t\ts = second % 60;\n\t\t}\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"main",
"{\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tint second = sc.nextInt();\n\t\tsc.close();\n\n\t\tint h = 0,m = 0,s = 0;\n\n\t\tif(second != 0){\n\t\t\th = (int)(Math.floor(second / 3600));\n\t\t\tm = (int)(Math.floor(second / 60)) % 60;\n\t\t\ts = second % 60;\n\t\t}\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int second = sc.nextInt();",
"second",
"sc.nextInt()",
"sc.nextInt",
"sc",
"sc.close()",
"sc.close",
"sc",
"int h = 0",
"h",
"0",
"m = 0",
"m",
"0",
"s = 0;",
"s",
"0",
"if(second != 0){\n\t\t\th = (int)(Math.floor(second / 3600));\n\t\t\tm = (int)(Math.floor(second / 60)) % 60;\n\t\t\ts = second % 60;\n\t\t}",
"second != 0",
"second",
"0",
"{\n\t\t\th = (int)(Math.floor(second / 3600));\n\t\t\tm = (int)(Math.floor(second / 60)) % 60;\n\t\t\ts = second % 60;\n\t\t}",
"h = (int)(Math.floor(second / 3600))",
"h",
"(int)(Math.floor(second / 3600))",
"Math.floor",
"Math",
"second / 3600",
"second",
"3600",
"m = (int)(Math.floor(second / 60)) % 60",
"m",
"(int)(Math.floor(second / 60)) % 60",
"(int)(Math.floor(second / 60))",
"Math.floor",
"Math",
"second / 60",
"second",
"60",
"60",
"s = second % 60",
"s",
"second % 60",
"second",
"60",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tint second = sc.nextInt();\n\t\tsc.close();\n\n\t\tint h = 0,m = 0,s = 0;\n\n\t\tif(second != 0){\n\t\t\th = (int)(Math.floor(second / 3600));\n\t\t\tm = (int)(Math.floor(second / 60)) % 60;\n\t\t\ts = second % 60;\n\t\t}\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n\n}",
"public class Main {\n\n\tpublic static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tint second = sc.nextInt();\n\t\tsc.close();\n\n\t\tint h = 0,m = 0,s = 0;\n\n\t\tif(second != 0){\n\t\t\th = (int)(Math.floor(second / 3600));\n\t\t\tm = (int)(Math.floor(second / 60)) % 60;\n\t\t\ts = second % 60;\n\t\t}\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int second = sc.nextInt();
sc.close();
int h = 0,m = 0,s = 0;
if(second != 0){
h = (int)(Math.floor(second / 3600));
m = (int)(Math.floor(second / 60)) % 60;
s = second % 60;
}
System.out.println(h+":"+m+":"+s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
4,
18,
13,
17,
13,
13,
13,
4,
18,
18,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
63,
8
],
[
63,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
11,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
22,
25
],
[
11,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
28,
30
],
[
11,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
11,
38
],
[
38,
39
],
[
38,
40
],
[
41,
41
],
[
41,
42
],
[
41,
43
],
[
41,
44
],
[
11,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
48,
49
],
[
47,
50
],
[
47,
51
],
[
47,
52
],
[
47,
53
],
[
11,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
54,
59
],
[
9,
60
],
[
60,
61
],
[
0,
62
],
[
62,
63
],
[
62,
64
]
] | [
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\npublic class Main {\n public static void main(String[] args) throws Exception {\n // Here your code !\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n int S = Integer.valueOf(line);\n int h = S/3600;\n int m = S%3600/60;\n int s = S%60%60;\n String time = String.format(\"%s:%s:%s\",h,m,s);\n System.out.println(time);\n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n public static void main(String[] args) throws Exception {\n // Here your code !\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n int S = Integer.valueOf(line);\n int h = S/3600;\n int m = S%3600/60;\n int s = S%60%60;\n String time = String.format(\"%s:%s:%s\",h,m,s);\n System.out.println(time);\n }\n}",
"Main",
"public static void main(String[] args) throws Exception {\n // Here your code !\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n int S = Integer.valueOf(line);\n int h = S/3600;\n int m = S%3600/60;\n int s = S%60%60;\n String time = String.format(\"%s:%s:%s\",h,m,s);\n System.out.println(time);\n }",
"main",
"{\n // Here your code !\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n int S = Integer.valueOf(line);\n int h = S/3600;\n int m = S%3600/60;\n int s = S%60%60;\n String time = String.format(\"%s:%s:%s\",h,m,s);\n System.out.println(time);\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String line = br.readLine();",
"line",
"br.readLine()",
"br.readLine",
"br",
"int S = Integer.valueOf(line);",
"S",
"Integer.valueOf(line)",
"Integer.valueOf",
"Integer",
"line",
"int h = S/3600;",
"h",
"S/3600",
"S",
"3600",
"int m = S%3600/60;",
"m",
"S%3600/60",
"S%3600",
"S",
"3600",
"60",
"int s = S%60%60;",
"s",
"S%60%60",
"S%60%60",
"S",
"60",
"60",
"String time = String.format(\"%s:%s:%s\",h,m,s);",
"time",
"String.format(\"%s:%s:%s\",h,m,s)",
"String.format",
"String",
"\"%s:%s:%s\"",
"h",
"m",
"s",
"System.out.println(time)",
"System.out.println",
"System.out",
"System",
"System.out",
"time",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) throws Exception {\n // Here your code !\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n int S = Integer.valueOf(line);\n int h = S/3600;\n int m = S%3600/60;\n int s = S%60%60;\n String time = String.format(\"%s:%s:%s\",h,m,s);\n System.out.println(time);\n }\n}",
"public class Main {\n public static void main(String[] args) throws Exception {\n // Here your code !\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n int S = Integer.valueOf(line);\n int h = S/3600;\n int m = S%3600/60;\n int s = S%60%60;\n String time = String.format(\"%s:%s:%s\",h,m,s);\n System.out.println(time);\n }\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws Exception {
// Here your code !
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String line = br.readLine();
int S = Integer.valueOf(line);
int h = S/3600;
int m = S%3600/60;
int s = S%60%60;
String time = String.format("%s:%s:%s",h,m,s);
System.out.println(time);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
2,
13,
17,
17,
2,
2,
13,
17,
17,
17,
2,
2,
13,
17,
17,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
47,
5
],
[
47,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
14,
17
],
[
17,
18
],
[
18,
19
],
[
8,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
28,
26
],
[
26,
27
],
[
33,
28
],
[
28,
29
],
[
29,
30
],
[
29,
31
],
[
28,
32
],
[
33,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
26,
38
],
[
28,
39
],
[
40,
40
],
[
40,
41
],
[
40,
42
],
[
40,
43
],
[
6,
44
],
[
44,
45
],
[
0,
46
],
[
46,
47
],
[
46,
48
]
] | [
"import java.io.*;\npublic class Main{\n\tpublic static void main(String [] args) throws NumberFormatException, IOException{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tint t=Integer.parseInt(br.readLine());\n\t\tSystem.out.println(t/3600+\":\"+t%3600/60+\":\"+t%3600%60);\n\t}}",
"import java.io.*;",
"io.*",
"java",
"public class Main{\n\tpublic static void main(String [] args) throws NumberFormatException, IOException{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tint t=Integer.parseInt(br.readLine());\n\t\tSystem.out.println(t/3600+\":\"+t%3600/60+\":\"+t%3600%60);\n\t}}",
"Main",
"public static void main(String [] args) throws NumberFormatException, IOException{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tint t=Integer.parseInt(br.readLine());\n\t\tSystem.out.println(t/3600+\":\"+t%3600/60+\":\"+t%3600%60);\n\t}",
"main",
"{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tint t=Integer.parseInt(br.readLine());\n\t\tSystem.out.println(t/3600+\":\"+t%3600/60+\":\"+t%3600%60);\n\t}",
"BufferedReader br=new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"int t=Integer.parseInt(br.readLine());",
"t",
"Integer.parseInt(br.readLine())",
"Integer.parseInt",
"Integer",
"br.readLine()",
"br.readLine",
"br",
"System.out.println(t/3600+\":\"+t%3600/60+\":\"+t%3600%60)",
"System.out.println",
"System.out",
"System",
"System.out",
"t/3600+\":\"+t%3600/60+\":\"+t%3600%60",
"\":\"",
"t%3600/60",
"t/3600+\":\"+t%3600/60+\":\"+t%3600%60",
"t/3600",
"t",
"3600",
"\":\"",
"t%3600/60",
"t%3600",
"t",
"3600",
"60",
"\":\"",
"t%3600%60",
"t%3600%60",
"t",
"3600",
"60",
"String [] args",
"args",
"public class Main{\n\tpublic static void main(String [] args) throws NumberFormatException, IOException{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tint t=Integer.parseInt(br.readLine());\n\t\tSystem.out.println(t/3600+\":\"+t%3600/60+\":\"+t%3600%60);\n\t}}",
"public class Main{\n\tpublic static void main(String [] args) throws NumberFormatException, IOException{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tint t=Integer.parseInt(br.readLine());\n\t\tSystem.out.println(t/3600+\":\"+t%3600/60+\":\"+t%3600%60);\n\t}}",
"Main"
] | import java.io.*;
public class Main{
public static void main(String [] args) throws NumberFormatException, IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
int t=Integer.parseInt(br.readLine());
System.out.println(t/3600+":"+t%3600/60+":"+t%3600%60);
}} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
63,
5
],
[
63,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
8,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
25,
27
],
[
8,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
30,
32
],
[
8,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
8,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
40,
42
],
[
8,
43
],
[
43,
44
],
[
43,
45
],
[
8,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
46,
51
],
[
54,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
52,
58
],
[
54,
59
],
[
6,
60
],
[
60,
61
],
[
0,
62
],
[
62,
63
],
[
62,
64
]
] | [
"import java.io.*;\n \npublic class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n \n String s = br.readLine();\n int x = Integer.parseInt(s);\n int secound = x % 60;\n x = x / 60;\n int minutes = x % 60;\n x = x / 60;\n int hour = x;\n \n \n System.out.println(hour + \":\" + minutes + \":\" + secound);\n }\n \n}\n ",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n \n String s = br.readLine();\n int x = Integer.parseInt(s);\n int secound = x % 60;\n x = x / 60;\n int minutes = x % 60;\n x = x / 60;\n int hour = x;\n \n \n System.out.println(hour + \":\" + minutes + \":\" + secound);\n }\n \n}",
"Main",
"public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n \n String s = br.readLine();\n int x = Integer.parseInt(s);\n int secound = x % 60;\n x = x / 60;\n int minutes = x % 60;\n x = x / 60;\n int hour = x;\n \n \n System.out.println(hour + \":\" + minutes + \":\" + secound);\n }",
"main",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n \n String s = br.readLine();\n int x = Integer.parseInt(s);\n int secound = x % 60;\n x = x / 60;\n int minutes = x % 60;\n x = x / 60;\n int hour = x;\n \n \n System.out.println(hour + \":\" + minutes + \":\" + secound);\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String s = br.readLine();",
"s",
"br.readLine()",
"br.readLine",
"br",
"int x = Integer.parseInt(s);",
"x",
"Integer.parseInt(s)",
"Integer.parseInt",
"Integer",
"s",
"int secound = x % 60;",
"secound",
"x % 60",
"x",
"60",
"x = x / 60",
"x",
"x / 60",
"x",
"60",
"int minutes = x % 60;",
"minutes",
"x % 60",
"x",
"60",
"x = x / 60",
"x",
"x / 60",
"x",
"60",
"int hour = x;",
"hour",
"x",
"System.out.println(hour + \":\" + minutes + \":\" + secound)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour + \":\" + minutes + \":\" + secound",
"\":\"",
"minutes",
"hour + \":\" + minutes + \":\" + secound",
"hour",
"\":\"",
"minutes",
"\":\"",
"secound",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n \n String s = br.readLine();\n int x = Integer.parseInt(s);\n int secound = x % 60;\n x = x / 60;\n int minutes = x % 60;\n x = x / 60;\n int hour = x;\n \n \n System.out.println(hour + \":\" + minutes + \":\" + secound);\n }\n \n}",
"public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n \n String s = br.readLine();\n int x = Integer.parseInt(s);\n int secound = x % 60;\n x = x / 60;\n int minutes = x % 60;\n x = x / 60;\n int hour = x;\n \n \n System.out.println(hour + \":\" + minutes + \":\" + secound);\n }\n \n}",
"Main"
] | import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String s = br.readLine();
int x = Integer.parseInt(s);
int secound = x % 60;
x = x / 60;
int minutes = x % 60;
x = x / 60;
int hour = x;
System.out.println(hour + ":" + minutes + ":" + secound);
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
38,
5,
13,
30,
4,
18,
18,
13,
13,
13,
30,
41,
13,
4,
18,
13,
4,
18,
13,
14,
2,
2,
13,
17,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
29,
41,
13,
2,
13,
2,
17,
17,
41,
13,
2,
13,
2,
17,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
17,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
86,
8
],
[
86,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
16,
17
],
[
16,
18
],
[
18,
19
],
[
19,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
19,
24
],
[
15,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
28,
31
],
[
31,
32
],
[
32,
33
],
[
25,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
35,
39
],
[
39,
40
],
[
39,
41
],
[
34,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
43,
48
],
[
42,
49
],
[
25,
50
],
[
50,
51
],
[
50,
52
],
[
52,
53
],
[
52,
54
],
[
54,
55
],
[
54,
56
],
[
25,
57
],
[
57,
58
],
[
57,
59
],
[
59,
60
],
[
59,
61
],
[
61,
62
],
[
61,
63
],
[
25,
64
],
[
64,
65
],
[
64,
66
],
[
66,
67
],
[
66,
68
],
[
25,
69
],
[
69,
70
],
[
69,
71
],
[
71,
72
],
[
71,
73
],
[
25,
74
],
[
74,
75
],
[
75,
76
],
[
76,
77
],
[
76,
78
],
[
74,
79
],
[
74,
80
],
[
74,
81
],
[
74,
82
],
[
9,
83
],
[
83,
84
],
[
0,
85
],
[
85,
86
],
[
85,
87
]
] | [
"import java.util.NoSuchElementException;\nimport java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n try {\n int s = Integer.parseInt(sc.nextLine());\n if (s >= 86400 || s < 0) {\n System.out.println(\"Input is incorrect\");\n return;\n }\n int h = s / (60 * 60);\n int r = s % (60 * 60);\n int m = r / 60;\n r = s % 60;\n System.out.printf(\"%d:%d:%d\\n\", h, m, r);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n }\n }\n}\n",
"import java.util.NoSuchElementException;",
"NoSuchElementException",
"java.util",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n try {\n int s = Integer.parseInt(sc.nextLine());\n if (s >= 86400 || s < 0) {\n System.out.println(\"Input is incorrect\");\n return;\n }\n int h = s / (60 * 60);\n int r = s % (60 * 60);\n int m = r / 60;\n r = s % 60;\n System.out.printf(\"%d:%d:%d\\n\", h, m, r);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n }\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n try {\n int s = Integer.parseInt(sc.nextLine());\n if (s >= 86400 || s < 0) {\n System.out.println(\"Input is incorrect\");\n return;\n }\n int h = s / (60 * 60);\n int r = s % (60 * 60);\n int m = r / 60;\n r = s % 60;\n System.out.printf(\"%d:%d:%d\\n\", h, m, r);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n }\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n try {\n int s = Integer.parseInt(sc.nextLine());\n if (s >= 86400 || s < 0) {\n System.out.println(\"Input is incorrect\");\n return;\n }\n int h = s / (60 * 60);\n int r = s % (60 * 60);\n int m = r / 60;\n r = s % 60;\n System.out.printf(\"%d:%d:%d\\n\", h, m, r);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"try {\n int s = Integer.parseInt(sc.nextLine());\n if (s >= 86400 || s < 0) {\n System.out.println(\"Input is incorrect\");\n return;\n }\n int h = s / (60 * 60);\n int r = s % (60 * 60);\n int m = r / 60;\n r = s % 60;\n System.out.printf(\"%d:%d:%d\\n\", h, m, r);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n }",
"catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n }",
"NoSuchElementException | NumberFormatException e",
"{\n System.out.println(e);\n }",
"System.out.println(e)",
"System.out.println",
"System.out",
"System",
"System.out",
"e",
"{\n int s = Integer.parseInt(sc.nextLine());\n if (s >= 86400 || s < 0) {\n System.out.println(\"Input is incorrect\");\n return;\n }\n int h = s / (60 * 60);\n int r = s % (60 * 60);\n int m = r / 60;\n r = s % 60;\n System.out.printf(\"%d:%d:%d\\n\", h, m, r);\n }",
"int s = Integer.parseInt(sc.nextLine());",
"s",
"Integer.parseInt(sc.nextLine())",
"Integer.parseInt",
"Integer",
"sc.nextLine()",
"sc.nextLine",
"sc",
"if (s >= 86400 || s < 0) {\n System.out.println(\"Input is incorrect\");\n return;\n }",
"s >= 86400 || s < 0",
"s >= 86400",
"s",
"86400",
"s < 0",
"s",
"0",
"{\n System.out.println(\"Input is incorrect\");\n return;\n }",
"System.out.println(\"Input is incorrect\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Input is incorrect\"",
"return;",
"int h = s / (60 * 60);",
"h",
"s / (60 * 60)",
"s",
"(60 * 60)",
"60",
"60",
"int r = s % (60 * 60);",
"r",
"s % (60 * 60)",
"s",
"(60 * 60)",
"60",
"60",
"int m = r / 60;",
"m",
"r / 60",
"r",
"60",
"r = s % 60",
"r",
"s % 60",
"s",
"60",
"System.out.printf(\"%d:%d:%d\\n\", h, m, r)",
"System.out.printf",
"System.out",
"System",
"System.out",
"\"%d:%d:%d\\n\"",
"h",
"m",
"r",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n try {\n int s = Integer.parseInt(sc.nextLine());\n if (s >= 86400 || s < 0) {\n System.out.println(\"Input is incorrect\");\n return;\n }\n int h = s / (60 * 60);\n int r = s % (60 * 60);\n int m = r / 60;\n r = s % 60;\n System.out.printf(\"%d:%d:%d\\n\", h, m, r);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n }\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n try {\n int s = Integer.parseInt(sc.nextLine());\n if (s >= 86400 || s < 0) {\n System.out.println(\"Input is incorrect\");\n return;\n }\n int h = s / (60 * 60);\n int r = s % (60 * 60);\n int m = r / 60;\n r = s % 60;\n System.out.printf(\"%d:%d:%d\\n\", h, m, r);\n } catch (NoSuchElementException | NumberFormatException e) {\n System.out.println(e);\n }\n }\n}",
"Main"
] | import java.util.NoSuchElementException;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
try {
int s = Integer.parseInt(sc.nextLine());
if (s >= 86400 || s < 0) {
System.out.println("Input is incorrect");
return;
}
int h = s / (60 * 60);
int r = s % (60 * 60);
int m = r / 60;
r = s % 60;
System.out.printf("%d:%d:%d\n", h, m, r);
} catch (NoSuchElementException | NumberFormatException e) {
System.out.println(e);
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
24,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
29,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
34,
36
],
[
8,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
37,
42
],
[
45,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
43,
49
],
[
45,
50
],
[
6,
51
],
[
51,
52
]
] | [
"import java.util.*;\n\nclass Main{\n public static void main(String args[]){\n Scanner inputs = new Scanner(System.in);\n int seconds = inputs.nextInt();\n int minutes = seconds / 60;\n seconds = seconds % 60;\n int hours = minutes / 60;\n minutes = minutes % 60;\n System.out.println(hours + \":\" + minutes + \":\" + seconds);\n }\n}",
"import java.util.*;",
"util.*",
"java",
"class Main{\n public static void main(String args[]){\n Scanner inputs = new Scanner(System.in);\n int seconds = inputs.nextInt();\n int minutes = seconds / 60;\n seconds = seconds % 60;\n int hours = minutes / 60;\n minutes = minutes % 60;\n System.out.println(hours + \":\" + minutes + \":\" + seconds);\n }\n}",
"Main",
"public static void main(String args[]){\n Scanner inputs = new Scanner(System.in);\n int seconds = inputs.nextInt();\n int minutes = seconds / 60;\n seconds = seconds % 60;\n int hours = minutes / 60;\n minutes = minutes % 60;\n System.out.println(hours + \":\" + minutes + \":\" + seconds);\n }",
"main",
"{\n Scanner inputs = new Scanner(System.in);\n int seconds = inputs.nextInt();\n int minutes = seconds / 60;\n seconds = seconds % 60;\n int hours = minutes / 60;\n minutes = minutes % 60;\n System.out.println(hours + \":\" + minutes + \":\" + seconds);\n }",
"Scanner inputs = new Scanner(System.in);",
"inputs",
"new Scanner(System.in)",
"int seconds = inputs.nextInt();",
"seconds",
"inputs.nextInt()",
"inputs.nextInt",
"inputs",
"int minutes = seconds / 60;",
"minutes",
"seconds / 60",
"seconds",
"60",
"seconds = seconds % 60",
"seconds",
"seconds % 60",
"seconds",
"60",
"int hours = minutes / 60;",
"hours",
"minutes / 60",
"minutes",
"60",
"minutes = minutes % 60",
"minutes",
"minutes % 60",
"minutes",
"60",
"System.out.println(hours + \":\" + minutes + \":\" + seconds)",
"System.out.println",
"System.out",
"System",
"System.out",
"hours + \":\" + minutes + \":\" + seconds",
"\":\"",
"minutes",
"hours + \":\" + minutes + \":\" + seconds",
"hours",
"\":\"",
"minutes",
"\":\"",
"seconds",
"String args[]",
"args"
] | import java.util.*;
class Main{
public static void main(String args[]){
Scanner inputs = new Scanner(System.in);
int seconds = inputs.nextInt();
int minutes = seconds / 60;
seconds = seconds % 60;
int hours = minutes / 60;
minutes = minutes % 60;
System.out.println(hours + ":" + minutes + ":" + seconds);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
2,
13,
17,
0,
13,
2,
13,
2,
13,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
67,
11
],
[
67,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
20,
23
],
[
23,
24
],
[
24,
25
],
[
14,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
28,
30
],
[
14,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
14,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
40,
42
],
[
14,
43
],
[
43,
44
],
[
43,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
47,
49
],
[
14,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
50,
55
],
[
58,
56
],
[
56,
57
],
[
57,
58
],
[
58,
59
],
[
58,
60
],
[
57,
61
],
[
56,
62
],
[
58,
63
],
[
12,
64
],
[
64,
65
],
[
0,
66
],
[
66,
67
],
[
66,
68
]
] | [
"\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n\t/**\n\t * @param args\n\t * @throws IOException \n\t * @throws NumberFormatException \n\t */\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\t// TODO Auto-generated method stub\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tint second = Integer.parseInt(br.readLine());\n\t\tint hour = second/3600;\n\t\tsecond = second - hour * 3600;\n\t\tint minute = second/60;\n\t\tsecond = second - minute*60;\n\t\tSystem.out.println(hour+\":\"+minute+\":\"+second);\n\t}\n\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n\n\t/**\n\t * @param args\n\t * @throws IOException \n\t * @throws NumberFormatException \n\t */\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\t// TODO Auto-generated method stub\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tint second = Integer.parseInt(br.readLine());\n\t\tint hour = second/3600;\n\t\tsecond = second - hour * 3600;\n\t\tint minute = second/60;\n\t\tsecond = second - minute*60;\n\t\tSystem.out.println(hour+\":\"+minute+\":\"+second);\n\t}\n\n}",
"Main",
"/**\n\t * @param args\n\t * @throws IOException \n\t * @throws NumberFormatException \n\t */\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\t// TODO Auto-generated method stub\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tint second = Integer.parseInt(br.readLine());\n\t\tint hour = second/3600;\n\t\tsecond = second - hour * 3600;\n\t\tint minute = second/60;\n\t\tsecond = second - minute*60;\n\t\tSystem.out.println(hour+\":\"+minute+\":\"+second);\n\t}",
"main",
"{\n\t\t// TODO Auto-generated method stub\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tint second = Integer.parseInt(br.readLine());\n\t\tint hour = second/3600;\n\t\tsecond = second - hour * 3600;\n\t\tint minute = second/60;\n\t\tsecond = second - minute*60;\n\t\tSystem.out.println(hour+\":\"+minute+\":\"+second);\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"int second = Integer.parseInt(br.readLine());",
"second",
"Integer.parseInt(br.readLine())",
"Integer.parseInt",
"Integer",
"br.readLine()",
"br.readLine",
"br",
"int hour = second/3600;",
"hour",
"second/3600",
"second",
"3600",
"second = second - hour * 3600",
"second",
"second - hour * 3600",
"second",
"hour * 3600",
"hour",
"3600",
"int minute = second/60;",
"minute",
"second/60",
"second",
"60",
"second = second - minute*60",
"second",
"second - minute*60",
"second",
"minute*60",
"minute",
"60",
"System.out.println(hour+\":\"+minute+\":\"+second)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour+\":\"+minute+\":\"+second",
"\":\"",
"minute",
"hour+\":\"+minute+\":\"+second",
"hour",
"\":\"",
"minute",
"\":\"",
"second",
"String[] args",
"args",
"public class Main {\n\n\t/**\n\t * @param args\n\t * @throws IOException \n\t * @throws NumberFormatException \n\t */\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\t// TODO Auto-generated method stub\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tint second = Integer.parseInt(br.readLine());\n\t\tint hour = second/3600;\n\t\tsecond = second - hour * 3600;\n\t\tint minute = second/60;\n\t\tsecond = second - minute*60;\n\t\tSystem.out.println(hour+\":\"+minute+\":\"+second);\n\t}\n\n}",
"public class Main {\n\n\t/**\n\t * @param args\n\t * @throws IOException \n\t * @throws NumberFormatException \n\t */\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\t// TODO Auto-generated method stub\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tint second = Integer.parseInt(br.readLine());\n\t\tint hour = second/3600;\n\t\tsecond = second - hour * 3600;\n\t\tint minute = second/60;\n\t\tsecond = second - minute*60;\n\t\tSystem.out.println(hour+\":\"+minute+\":\"+second);\n\t}\n\n}",
"Main"
] |
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
/**
* @param args
* @throws IOException
* @throws NumberFormatException
*/
public static void main(String[] args) throws NumberFormatException, IOException {
// TODO Auto-generated method stub
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int second = Integer.parseInt(br.readLine());
int hour = second/3600;
second = second - hour * 3600;
int minute = second/60;
second = second - minute*60;
System.out.println(hour+":"+minute+":"+second);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
17,
41,
13,
17,
41,
13,
17,
14,
2,
13,
17,
30,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
14,
2,
13,
17,
30,
0,
13,
2,
13,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
30,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
118,
5
],
[
118,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
8,
23
],
[
23,
24
],
[
23,
25
],
[
8,
26
],
[
26,
27
],
[
26,
28
],
[
8,
29
],
[
29,
30
],
[
29,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
32,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
39,
41
],
[
36,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
44,
46
],
[
36,
47
],
[
47,
48
],
[
47,
49
],
[
49,
50
],
[
49,
51
],
[
36,
52
],
[
52,
53
],
[
52,
54
],
[
54,
55
],
[
54,
56
],
[
36,
57
],
[
57,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
57,
62
],
[
65,
63
],
[
63,
64
],
[
64,
65
],
[
65,
66
],
[
65,
67
],
[
64,
68
],
[
63,
69
],
[
65,
70
],
[
32,
71
],
[
71,
72
],
[
72,
73
],
[
72,
74
],
[
71,
75
],
[
75,
76
],
[
76,
77
],
[
76,
78
],
[
78,
79
],
[
78,
80
],
[
75,
81
],
[
81,
82
],
[
81,
83
],
[
83,
84
],
[
83,
85
],
[
75,
86
],
[
86,
87
],
[
87,
88
],
[
88,
89
],
[
88,
90
],
[
86,
91
],
[
94,
92
],
[
92,
93
],
[
93,
94
],
[
94,
95
],
[
94,
96
],
[
93,
97
],
[
92,
98
],
[
94,
99
],
[
71,
100
],
[
100,
101
],
[
101,
102
],
[
102,
103
],
[
103,
104
],
[
103,
105
],
[
101,
106
],
[
109,
107
],
[
107,
108
],
[
108,
109
],
[
109,
110
],
[
109,
111
],
[
108,
112
],
[
107,
113
],
[
109,
114
],
[
6,
115
],
[
115,
116
],
[
0,
117
],
[
117,
118
],
[
117,
119
]
] | [
"import java.io.*;\npublic class Main {\n public static void main(String[] args)throws IOException {\n BufferedReader br =new BufferedReader(new InputStreamReader(System.in));\n String line=br.readLine();\n int time = Integer.parseInt(line);\n int sec=0,min=0,hour=0;\n \n if (time>=3600) {\n hour=time/3600;\n time=time%3600;\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else if (time>=60) {\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else{\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n }\n}",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n public static void main(String[] args)throws IOException {\n BufferedReader br =new BufferedReader(new InputStreamReader(System.in));\n String line=br.readLine();\n int time = Integer.parseInt(line);\n int sec=0,min=0,hour=0;\n \n if (time>=3600) {\n hour=time/3600;\n time=time%3600;\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else if (time>=60) {\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else{\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n }\n}",
"Main",
"public static void main(String[] args)throws IOException {\n BufferedReader br =new BufferedReader(new InputStreamReader(System.in));\n String line=br.readLine();\n int time = Integer.parseInt(line);\n int sec=0,min=0,hour=0;\n \n if (time>=3600) {\n hour=time/3600;\n time=time%3600;\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else if (time>=60) {\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else{\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n }",
"main",
"{\n BufferedReader br =new BufferedReader(new InputStreamReader(System.in));\n String line=br.readLine();\n int time = Integer.parseInt(line);\n int sec=0,min=0,hour=0;\n \n if (time>=3600) {\n hour=time/3600;\n time=time%3600;\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else if (time>=60) {\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else{\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n }",
"BufferedReader br =new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String line=br.readLine();",
"line",
"br.readLine()",
"br.readLine",
"br",
"int time = Integer.parseInt(line);",
"time",
"Integer.parseInt(line)",
"Integer.parseInt",
"Integer",
"line",
"int sec=0",
"sec",
"0",
"min=0",
"min",
"0",
"hour=0;",
"hour",
"0",
"if (time>=3600) {\n hour=time/3600;\n time=time%3600;\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else if (time>=60) {\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else{\n System.out.println(hour+\":\"+min+\":\"+sec);\n }",
"time>=3600",
"time",
"3600",
"{\n hour=time/3600;\n time=time%3600;\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }",
"hour=time/3600",
"hour",
"time/3600",
"time",
"3600",
"time=time%3600",
"time",
"time%3600",
"time",
"3600",
"min=time/60",
"min",
"time/60",
"time",
"60",
"sec=time%60",
"sec",
"time%60",
"time",
"60",
"System.out.println(hour+\":\"+min+\":\"+sec)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour+\":\"+min+\":\"+sec",
"\":\"",
"min",
"hour+\":\"+min+\":\"+sec",
"hour",
"\":\"",
"min",
"\":\"",
"sec",
"if (time>=60) {\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else{\n System.out.println(hour+\":\"+min+\":\"+sec);\n }",
"time>=60",
"time",
"60",
"{\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }",
"min=time/60",
"min",
"time/60",
"time",
"60",
"sec=time%60",
"sec",
"time%60",
"time",
"60",
"System.out.println(hour+\":\"+min+\":\"+sec)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour+\":\"+min+\":\"+sec",
"\":\"",
"min",
"hour+\":\"+min+\":\"+sec",
"hour",
"\":\"",
"min",
"\":\"",
"sec",
"{\n System.out.println(hour+\":\"+min+\":\"+sec);\n }",
"System.out.println(hour+\":\"+min+\":\"+sec)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour+\":\"+min+\":\"+sec",
"\":\"",
"min",
"hour+\":\"+min+\":\"+sec",
"hour",
"\":\"",
"min",
"\":\"",
"sec",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args)throws IOException {\n BufferedReader br =new BufferedReader(new InputStreamReader(System.in));\n String line=br.readLine();\n int time = Integer.parseInt(line);\n int sec=0,min=0,hour=0;\n \n if (time>=3600) {\n hour=time/3600;\n time=time%3600;\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else if (time>=60) {\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else{\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n }\n}",
"public class Main {\n public static void main(String[] args)throws IOException {\n BufferedReader br =new BufferedReader(new InputStreamReader(System.in));\n String line=br.readLine();\n int time = Integer.parseInt(line);\n int sec=0,min=0,hour=0;\n \n if (time>=3600) {\n hour=time/3600;\n time=time%3600;\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else if (time>=60) {\n min=time/60;\n sec=time%60;\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n else{\n System.out.println(hour+\":\"+min+\":\"+sec);\n }\n }\n}",
"Main"
] | import java.io.*;
public class Main {
public static void main(String[] args)throws IOException {
BufferedReader br =new BufferedReader(new InputStreamReader(System.in));
String line=br.readLine();
int time = Integer.parseInt(line);
int sec=0,min=0,hour=0;
if (time>=3600) {
hour=time/3600;
time=time%3600;
min=time/60;
sec=time%60;
System.out.println(hour+":"+min+":"+sec);
}
else if (time>=60) {
min=time/60;
sec=time%60;
System.out.println(hour+":"+min+":"+sec);
}
else{
System.out.println(hour+":"+min+":"+sec);
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
2,
13,
17,
17,
2,
2,
13,
17,
17,
17,
2,
2,
13,
17,
17,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
8,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
23,
28
],
[
31,
29
],
[
29,
30
],
[
36,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
31,
35
],
[
36,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
36,
40
],
[
29,
41
],
[
31,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
42,
46
],
[
6,
47
],
[
47,
48
]
] | [
"import java.io.*;\n \nclass Main{\n public static void main (String[ ] args) throws Exception{\n BufferedReader br = new BufferedReader (new InputStreamReader (System.in));\n String str = br.readLine();\n\n int a = Integer.parseInt(str);\n \n System.out.println((a/3600) + \":\" + (a%3600/60) + \":\" +(a%3600%60));\n }\n}",
"import java.io.*;",
"io.*",
"java",
"class Main{\n public static void main (String[ ] args) throws Exception{\n BufferedReader br = new BufferedReader (new InputStreamReader (System.in));\n String str = br.readLine();\n\n int a = Integer.parseInt(str);\n \n System.out.println((a/3600) + \":\" + (a%3600/60) + \":\" +(a%3600%60));\n }\n}",
"Main",
"public static void main (String[ ] args) throws Exception{\n BufferedReader br = new BufferedReader (new InputStreamReader (System.in));\n String str = br.readLine();\n\n int a = Integer.parseInt(str);\n \n System.out.println((a/3600) + \":\" + (a%3600/60) + \":\" +(a%3600%60));\n }",
"main",
"{\n BufferedReader br = new BufferedReader (new InputStreamReader (System.in));\n String str = br.readLine();\n\n int a = Integer.parseInt(str);\n \n System.out.println((a/3600) + \":\" + (a%3600/60) + \":\" +(a%3600%60));\n }",
"BufferedReader br = new BufferedReader (new InputStreamReader (System.in));",
"br",
"new BufferedReader (new InputStreamReader (System.in))",
"String str = br.readLine();",
"str",
"br.readLine()",
"br.readLine",
"br",
"int a = Integer.parseInt(str);",
"a",
"Integer.parseInt(str)",
"Integer.parseInt",
"Integer",
"str",
"System.out.println((a/3600) + \":\" + (a%3600/60) + \":\" +(a%3600%60))",
"System.out.println",
"System.out",
"System",
"System.out",
"(a/3600) + \":\" + (a%3600/60) + \":\" +(a%3600%60)",
"\":\"",
"(a%3600/60)",
"(a/3600) + \":\" + (a%3600/60) + \":\" +(a%3600%60)",
"(a/3600)",
"a",
"3600",
"\":\"",
"(a%3600/60)",
"a%3600",
"a",
"3600",
"60",
"\":\"",
"(a%3600%60)",
"a%3600%60",
"a",
"3600",
"60",
"String[ ] args",
"args"
] | import java.io.*;
class Main{
public static void main (String[ ] args) throws Exception{
BufferedReader br = new BufferedReader (new InputStreamReader (System.in));
String str = br.readLine();
int a = Integer.parseInt(str);
System.out.println((a/3600) + ":" + (a%3600/60) + ":" +(a%3600%60));
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
41,
13,
41,
13,
0,
13,
2,
13,
17,
0,
13,
2,
2,
13,
17,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
11,
20
],
[
20,
21
],
[
11,
22
],
[
22,
23
],
[
11,
24
],
[
24,
25
],
[
11,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
28,
30
],
[
11,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
11,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
40,
42
],
[
11,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
43,
48
],
[
51,
49
],
[
49,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
49,
55
],
[
51,
56
],
[
9,
57
],
[
57,
58
]
] | [
"import java.io.*;\nimport java.util.*;\n\nclass Main\n{\n public static void main(String[] args)\n {\n\tScanner sc = new Scanner(System.in);\n\t\nint se =sc.nextInt();\n\nint sec, min, hour;\nhour = se/3600;\nmin =(se%3600)/60;\nsec = se % 60;\n\nSystem.out.println(hour+\":\"+min+\":\"+sec);\n\n }\n}",
"import java.io.*;",
"io.*",
"java",
"import java.util.*;",
"util.*",
"java",
"class Main\n{\n public static void main(String[] args)\n {\n\tScanner sc = new Scanner(System.in);\n\t\nint se =sc.nextInt();\n\nint sec, min, hour;\nhour = se/3600;\nmin =(se%3600)/60;\nsec = se % 60;\n\nSystem.out.println(hour+\":\"+min+\":\"+sec);\n\n }\n}",
"Main",
"public static void main(String[] args)\n {\n\tScanner sc = new Scanner(System.in);\n\t\nint se =sc.nextInt();\n\nint sec, min, hour;\nhour = se/3600;\nmin =(se%3600)/60;\nsec = se % 60;\n\nSystem.out.println(hour+\":\"+min+\":\"+sec);\n\n }",
"main",
"{\n\tScanner sc = new Scanner(System.in);\n\t\nint se =sc.nextInt();\n\nint sec, min, hour;\nhour = se/3600;\nmin =(se%3600)/60;\nsec = se % 60;\n\nSystem.out.println(hour+\":\"+min+\":\"+sec);\n\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int se =sc.nextInt();",
"se",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int sec",
"sec",
"min",
"min",
"hour;",
"hour",
"hour = se/3600",
"hour",
"se/3600",
"se",
"3600",
"min =(se%3600)/60",
"min",
"(se%3600)/60",
"(se%3600)",
"se",
"3600",
"60",
"sec = se % 60",
"sec",
"se % 60",
"se",
"60",
"System.out.println(hour+\":\"+min+\":\"+sec)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour+\":\"+min+\":\"+sec",
"\":\"",
"min",
"hour+\":\"+min+\":\"+sec",
"hour",
"\":\"",
"min",
"\":\"",
"sec",
"String[] args",
"args"
] | import java.io.*;
import java.util.*;
class Main
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
int se =sc.nextInt();
int sec, min, hour;
hour = se/3600;
min =(se%3600)/60;
sec = se % 60;
System.out.println(hour+":"+min+":"+sec);
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
41,
13,
41,
13,
41,
13,
0,
13,
4,
18,
13,
0,
13,
2,
13,
17,
0,
13,
2,
2,
13,
17,
17,
0,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
61,
5
],
[
61,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
8,
14
],
[
14,
15
],
[
8,
16
],
[
16,
17
],
[
8,
18
],
[
18,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
8,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
27,
29
],
[
8,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
32,
36
],
[
8,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
39,
43
],
[
8,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
44,
49
],
[
52,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
51,
55
],
[
50,
56
],
[
52,
57
],
[
6,
58
],
[
58,
59
],
[
0,
60
],
[
60,
61
],
[
60,
62
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) throws Exception {\n \n Scanner sc = new Scanner(System.in);\n \n //変数time, hour, minute, secondを宣言\n int time, hour, minute, second;\n \n //変数timeに値を入力する\n time = sc.nextInt(); \n \n //hour(時間) minute(分) second(秒)の計算\n hour = time / 3600;\n minute = (time % 3600) / 60;\n second = (time % 3600) % 60 ;\n \n //hour(時間) minute(分) second(秒)を出力する\n System.out.println(hour + \":\" + minute + \":\" + second);\n \n }\n}\n\n\n/*覚えよう!!\n\n・変数に計算結果を代入する:面積 = 縦 × 横\n ※計算は変数名でも数値でもいける\n\n・四則演算:足し算「+」、引き算「-」、掛け算「*」、割り算「/」\n 1 + 2 = 3;\n 4 - 3 = 1;\n 2 * 5 = 10;\n 8 / 2 = 4;\n\n・余りの計算:割り算の余り「%」\n 5 % 3 = 2;\n \n \n・printlnの複数表示:「+」を使用\n 例:println(\"Kobe\" + \"Kagikou\"); = KobeKajikou\n println(\"明治 + 20 + \"年\"); = 明治20年 数値が入ってもOK!\n\n\n*/\n\n\n/*前回の内容!!\n\n・変数の宣言は「型」と「変数名」の2つ必要\n 例:型_変数名 → int x;\n \n・キーボードから入力するときは・・・「 import java.util.Scanner; 」 と 「 Scanner sc = new Scanner(System.in) ; 」が必要\n\n・入力するとき・・・変数名 = sc.nextInt(); nextの後は型を書く、頭文字は大文字 \n ※ scは変更しても大丈夫しかし全て変更後の文字に統一 例:nyuryoku\n\n・println・・・画面に出力するときに使用\n\n・文字列の表示・・・\"〇〇〇の間に入力\"ことが約束\n\n*/",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n public static void main(String[] args) throws Exception {\n \n Scanner sc = new Scanner(System.in);\n \n //変数time, hour, minute, secondを宣言\n int time, hour, minute, second;\n \n //変数timeに値を入力する\n time = sc.nextInt(); \n \n //hour(時間) minute(分) second(秒)の計算\n hour = time / 3600;\n minute = (time % 3600) / 60;\n second = (time % 3600) % 60 ;\n \n //hour(時間) minute(分) second(秒)を出力する\n System.out.println(hour + \":\" + minute + \":\" + second);\n \n }\n}",
"Main",
"public static void main(String[] args) throws Exception {\n \n Scanner sc = new Scanner(System.in);\n \n //変数time, hour, minute, secondを宣言\n int time, hour, minute, second;\n \n //変数timeに値を入力する\n time = sc.nextInt(); \n \n //hour(時間) minute(分) second(秒)の計算\n hour = time / 3600;\n minute = (time % 3600) / 60;\n second = (time % 3600) % 60 ;\n \n //hour(時間) minute(分) second(秒)を出力する\n System.out.println(hour + \":\" + minute + \":\" + second);\n \n }",
"main",
"{\n \n Scanner sc = new Scanner(System.in);\n \n //変数time, hour, minute, secondを宣言\n int time, hour, minute, second;\n \n //変数timeに値を入力する\n time = sc.nextInt(); \n \n //hour(時間) minute(分) second(秒)の計算\n hour = time / 3600;\n minute = (time % 3600) / 60;\n second = (time % 3600) % 60 ;\n \n //hour(時間) minute(分) second(秒)を出力する\n System.out.println(hour + \":\" + minute + \":\" + second);\n \n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int time",
"time",
"hour",
"hour",
"minute",
"minute",
"second;",
"second",
"time = sc.nextInt()",
"time",
"sc.nextInt()",
"sc.nextInt",
"sc",
"hour = time / 3600",
"hour",
"time / 3600",
"time",
"3600",
"minute = (time % 3600) / 60",
"minute",
"(time % 3600) / 60",
"(time % 3600)",
"time",
"3600",
"60",
"second = (time % 3600) % 60",
"second",
"(time % 3600) % 60",
"(time % 3600)",
"time",
"3600",
"60",
"System.out.println(hour + \":\" + minute + \":\" + second)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour + \":\" + minute + \":\" + second",
"\":\"",
"minute",
"hour + \":\" + minute + \":\" + second",
"hour",
"\":\"",
"minute",
"\":\"",
"second",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) throws Exception {\n \n Scanner sc = new Scanner(System.in);\n \n //変数time, hour, minute, secondを宣言\n int time, hour, minute, second;\n \n //変数timeに値を入力する\n time = sc.nextInt(); \n \n //hour(時間) minute(分) second(秒)の計算\n hour = time / 3600;\n minute = (time % 3600) / 60;\n second = (time % 3600) % 60 ;\n \n //hour(時間) minute(分) second(秒)を出力する\n System.out.println(hour + \":\" + minute + \":\" + second);\n \n }\n}",
"public class Main {\n public static void main(String[] args) throws Exception {\n \n Scanner sc = new Scanner(System.in);\n \n //変数time, hour, minute, secondを宣言\n int time, hour, minute, second;\n \n //変数timeに値を入力する\n time = sc.nextInt(); \n \n //hour(時間) minute(分) second(秒)の計算\n hour = time / 3600;\n minute = (time % 3600) / 60;\n second = (time % 3600) % 60 ;\n \n //hour(時間) minute(分) second(秒)を出力する\n System.out.println(hour + \":\" + minute + \":\" + second);\n \n }\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
//変数time, hour, minute, secondを宣言
int time, hour, minute, second;
//変数timeに値を入力する
time = sc.nextInt();
//hour(時間) minute(分) second(秒)の計算
hour = time / 3600;
minute = (time % 3600) / 60;
second = (time % 3600) % 60 ;
//hour(時間) minute(分) second(秒)を出力する
System.out.println(hour + ":" + minute + ":" + second);
}
}
/*覚えよう!!
・変数に計算結果を代入する:面積 = 縦 × 横
※計算は変数名でも数値でもいける
・四則演算:足し算「+」、引き算「-」、掛け算「*」、割り算「/」
1 + 2 = 3;
4 - 3 = 1;
2 * 5 = 10;
8 / 2 = 4;
・余りの計算:割り算の余り「%」
5 % 3 = 2;
・printlnの複数表示:「+」を使用
例:println("Kobe" + "Kagikou"); = KobeKajikou
println("明治 + 20 + "年"); = 明治20年 数値が入ってもOK!
*/
/*前回の内容!!
・変数の宣言は「型」と「変数名」の2つ必要
例:型_変数名 → int x;
・キーボードから入力するときは・・・「 import java.util.Scanner; 」 と 「 Scanner sc = new Scanner(System.in) ; 」が必要
・入力するとき・・・変数名 = sc.nextInt(); nextの後は型を書く、頭文字は大文字
※ scは変更しても大丈夫しかし全て変更後の文字に統一 例:nyuryoku
・println・・・画面に出力するときに使用
・文字列の表示・・・"〇〇〇の間に入力"ことが約束
*/
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
4,
18,
20,
41,
13,
2,
17,
17,
41,
13,
2,
13,
13,
41,
13,
2,
2,
13,
13,
17,
41,
13,
2,
2,
13,
13,
17,
4,
18,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
56,
8
],
[
56,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
11,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
11,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
24,
26
],
[
11,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
30,
32
],
[
29,
33
],
[
11,
34
],
[
34,
35
],
[
34,
36
],
[
37,
37
],
[
37,
38
],
[
37,
39
],
[
37,
40
],
[
11,
41
],
[
41,
42
],
[
42,
43
],
[
41,
44
],
[
47,
45
],
[
45,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
46,
50
],
[
45,
51
],
[
47,
52
],
[
9,
53
],
[
53,
54
],
[
0,
55
],
[
55,
56
],
[
55,
57
]
] | [
"import static java.lang.System.out;\nimport java.util.Scanner;\n\n\npublic class Main {\n public static void main(String...args) {\n\n int S = new Scanner(System.in).nextInt();\n int timer = (60 * 60);\n int h = S / timer;\n int m = S % timer / 60;\n int s = S % timer % 60;\n out.println(h + \":\" + m + \":\" + s);\n }\n\n\n}",
"import static java.lang.System.out;",
"import static java.lang.System.out;",
"import static java.lang.System.out;",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n public static void main(String...args) {\n\n int S = new Scanner(System.in).nextInt();\n int timer = (60 * 60);\n int h = S / timer;\n int m = S % timer / 60;\n int s = S % timer % 60;\n out.println(h + \":\" + m + \":\" + s);\n }\n\n\n}",
"Main",
"public static void main(String...args) {\n\n int S = new Scanner(System.in).nextInt();\n int timer = (60 * 60);\n int h = S / timer;\n int m = S % timer / 60;\n int s = S % timer % 60;\n out.println(h + \":\" + m + \":\" + s);\n }",
"main",
"{\n\n int S = new Scanner(System.in).nextInt();\n int timer = (60 * 60);\n int h = S / timer;\n int m = S % timer / 60;\n int s = S % timer % 60;\n out.println(h + \":\" + m + \":\" + s);\n }",
"int S = new Scanner(System.in).nextInt();",
"S",
"new Scanner(System.in).nextInt()",
"new Scanner(System.in).nextInt",
"new Scanner(System.in)",
"int timer = (60 * 60);",
"timer",
"(60 * 60)",
"60",
"60",
"int h = S / timer;",
"h",
"S / timer",
"S",
"timer",
"int m = S % timer / 60;",
"m",
"S % timer / 60",
"S % timer",
"S",
"timer",
"60",
"int s = S % timer % 60;",
"s",
"S % timer % 60",
"S % timer % 60",
"S",
"timer",
"60",
"out.println(h + \":\" + m + \":\" + s)",
"out.println",
"out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String...args",
"args",
"public class Main {\n public static void main(String...args) {\n\n int S = new Scanner(System.in).nextInt();\n int timer = (60 * 60);\n int h = S / timer;\n int m = S % timer / 60;\n int s = S % timer % 60;\n out.println(h + \":\" + m + \":\" + s);\n }\n\n\n}",
"public class Main {\n public static void main(String...args) {\n\n int S = new Scanner(System.in).nextInt();\n int timer = (60 * 60);\n int h = S / timer;\n int m = S % timer / 60;\n int s = S % timer % 60;\n out.println(h + \":\" + m + \":\" + s);\n }\n\n\n}",
"Main"
] | import static java.lang.System.out;
import java.util.Scanner;
public class Main {
public static void main(String...args) {
int S = new Scanner(System.in).nextInt();
int timer = (60 * 60);
int h = S / timer;
int m = S % timer / 60;
int s = S % timer % 60;
out.println(h + ":" + m + ":" + s);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
11,
1,
41,
13,
17,
2,
13,
17,
1,
40,
13,
30,
30,
14,
2,
13,
17,
30,
0,
13,
2,
13,
17,
30,
4,
18,
18,
13,
13,
2,
13,
17,
3,
11,
1,
41,
13,
17,
2,
13,
17,
1,
40,
13,
30,
30,
14,
2,
13,
17,
30,
0,
13,
2,
13,
17,
30,
4,
18,
18,
13,
13,
2,
2,
13,
17,
13,
3,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
88,
5
],
[
88,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
17,
22
],
[
22,
23
],
[
22,
24
],
[
17,
25
],
[
25,
26
],
[
26,
27
],
[
17,
28
],
[
29,
29
],
[
29,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
30,
34
],
[
34,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
37,
39
],
[
30,
40
],
[
40,
41
],
[
41,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
41,
46
],
[
46,
47
],
[
46,
48
],
[
40,
49
],
[
8,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
50,
55
],
[
55,
56
],
[
55,
57
],
[
50,
58
],
[
58,
59
],
[
59,
60
],
[
50,
61
],
[
62,
62
],
[
62,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
63,
67
],
[
67,
68
],
[
68,
69
],
[
68,
70
],
[
70,
71
],
[
70,
72
],
[
63,
73
],
[
73,
74
],
[
74,
75
],
[
75,
76
],
[
76,
77
],
[
76,
78
],
[
74,
79
],
[
80,
80
],
[
80,
81
],
[
80,
82
],
[
80,
83
],
[
73,
84
],
[
6,
85
],
[
85,
86
],
[
0,
87
],
[
87,
88
],
[
87,
89
]
] | [
"import java.util.Scanner;\npublic class Main {\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tfor(int h=0;h < 241;h++){\n\t\t\tif(n >= 3600){\n\t\t\t\tn = n-3600;\n\t\t\t}else{\n\t\t\t\tSystem.out.print(h+\":\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tfor(int m=0;m < 60;m++){\n\t\t\tif(n >=60){\n\t\t\t\tn = n-60;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(m+\":\"+n);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tfor(int h=0;h < 241;h++){\n\t\t\tif(n >= 3600){\n\t\t\t\tn = n-3600;\n\t\t\t}else{\n\t\t\t\tSystem.out.print(h+\":\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tfor(int m=0;m < 60;m++){\n\t\t\tif(n >=60){\n\t\t\t\tn = n-60;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(m+\":\"+n);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tfor(int h=0;h < 241;h++){\n\t\t\tif(n >= 3600){\n\t\t\t\tn = n-3600;\n\t\t\t}else{\n\t\t\t\tSystem.out.print(h+\":\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tfor(int m=0;m < 60;m++){\n\t\t\tif(n >=60){\n\t\t\t\tn = n-60;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(m+\":\"+n);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}",
"main",
"{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tfor(int h=0;h < 241;h++){\n\t\t\tif(n >= 3600){\n\t\t\t\tn = n-3600;\n\t\t\t}else{\n\t\t\t\tSystem.out.print(h+\":\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tfor(int m=0;m < 60;m++){\n\t\t\tif(n >=60){\n\t\t\t\tn = n-60;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(m+\":\"+n);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int n = scan.nextInt();",
"n",
"scan.nextInt()",
"scan.nextInt",
"scan",
"for(int h=0;h < 241;h++){\n\t\t\tif(n >= 3600){\n\t\t\t\tn = n-3600;\n\t\t\t}else{\n\t\t\t\tSystem.out.print(h+\":\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}",
"int h=0;",
"int h=0;",
"h",
"0",
"h < 241",
"h",
"241",
"h++",
"h++",
"h",
"{\n\t\t\tif(n >= 3600){\n\t\t\t\tn = n-3600;\n\t\t\t}else{\n\t\t\t\tSystem.out.print(h+\":\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}",
"{\n\t\t\tif(n >= 3600){\n\t\t\t\tn = n-3600;\n\t\t\t}else{\n\t\t\t\tSystem.out.print(h+\":\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}",
"if(n >= 3600){\n\t\t\t\tn = n-3600;\n\t\t\t}else{\n\t\t\t\tSystem.out.print(h+\":\");\n\t\t\t\tbreak;\n\t\t\t}",
"n >= 3600",
"n",
"3600",
"{\n\t\t\t\tn = n-3600;\n\t\t\t}",
"n = n-3600",
"n",
"n-3600",
"n",
"3600",
"{\n\t\t\t\tSystem.out.print(h+\":\");\n\t\t\t\tbreak;\n\t\t\t}",
"System.out.print(h+\":\")",
"System.out.print",
"System.out",
"System",
"System.out",
"h+\":\"",
"h",
"\":\"",
"break;",
"for(int m=0;m < 60;m++){\n\t\t\tif(n >=60){\n\t\t\t\tn = n-60;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(m+\":\"+n);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}",
"int m=0;",
"int m=0;",
"m",
"0",
"m < 60",
"m",
"60",
"m++",
"m++",
"m",
"{\n\t\t\tif(n >=60){\n\t\t\t\tn = n-60;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(m+\":\"+n);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}",
"{\n\t\t\tif(n >=60){\n\t\t\t\tn = n-60;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(m+\":\"+n);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}",
"if(n >=60){\n\t\t\t\tn = n-60;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(m+\":\"+n);\n\t\t\t\tbreak;\n\t\t\t}",
"n >=60",
"n",
"60",
"{\n\t\t\t\tn = n-60;\n\t\t\t}",
"n = n-60",
"n",
"n-60",
"n",
"60",
"{\n\t\t\t\tSystem.out.println(m+\":\"+n);\n\t\t\t\tbreak;\n\t\t\t}",
"System.out.println(m+\":\"+n)",
"System.out.println",
"System.out",
"System",
"System.out",
"m+\":\"+n",
"m+\":\"+n",
"m",
"\":\"",
"n",
"break;",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tfor(int h=0;h < 241;h++){\n\t\t\tif(n >= 3600){\n\t\t\t\tn = n-3600;\n\t\t\t}else{\n\t\t\t\tSystem.out.print(h+\":\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tfor(int m=0;m < 60;m++){\n\t\t\tif(n >=60){\n\t\t\t\tn = n-60;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(m+\":\"+n);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tfor(int h=0;h < 241;h++){\n\t\t\tif(n >= 3600){\n\t\t\t\tn = n-3600;\n\t\t\t}else{\n\t\t\t\tSystem.out.print(h+\":\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\tfor(int m=0;m < 60;m++){\n\t\t\tif(n >=60){\n\t\t\t\tn = n-60;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(m+\":\"+n);\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
for(int h=0;h < 241;h++){
if(n >= 3600){
n = n-3600;
}else{
System.out.print(h+":");
break;
}
}
for(int m=0;m < 60;m++){
if(n >=60){
n = n-60;
}else{
System.out.println(m+":"+n);
break;
}
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
51,
5
],
[
51,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
24,
28
],
[
8,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
31,
33
],
[
8,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
34,
39
],
[
42,
40
],
[
40,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
41,
45
],
[
40,
46
],
[
42,
47
],
[
6,
48
],
[
48,
49
],
[
0,
50
],
[
50,
51
],
[
50,
52
]
] | [
"import java.util.Scanner;\n\npublic class Main{\n public static void main(String[] args) throws java.io.IOException{\n Scanner sc = new Scanner(System.in);\n int time = sc.nextInt();\n int hour = time / 3600;\n int minitue = (time%3600)/60;\n int second = time%60;\n System.out.println(hour+\":\"+minitue+\":\"+second);\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n public static void main(String[] args) throws java.io.IOException{\n Scanner sc = new Scanner(System.in);\n int time = sc.nextInt();\n int hour = time / 3600;\n int minitue = (time%3600)/60;\n int second = time%60;\n System.out.println(hour+\":\"+minitue+\":\"+second);\n }\n}",
"Main",
"public static void main(String[] args) throws java.io.IOException{\n Scanner sc = new Scanner(System.in);\n int time = sc.nextInt();\n int hour = time / 3600;\n int minitue = (time%3600)/60;\n int second = time%60;\n System.out.println(hour+\":\"+minitue+\":\"+second);\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int time = sc.nextInt();\n int hour = time / 3600;\n int minitue = (time%3600)/60;\n int second = time%60;\n System.out.println(hour+\":\"+minitue+\":\"+second);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int time = sc.nextInt();",
"time",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int hour = time / 3600;",
"hour",
"time / 3600",
"time",
"3600",
"int minitue = (time%3600)/60;",
"minitue",
"(time%3600)/60",
"(time%3600)",
"time",
"3600",
"60",
"int second = time%60;",
"second",
"time%60",
"time",
"60",
"System.out.println(hour+\":\"+minitue+\":\"+second)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour+\":\"+minitue+\":\"+second",
"\":\"",
"minitue",
"hour+\":\"+minitue+\":\"+second",
"hour",
"\":\"",
"minitue",
"\":\"",
"second",
"String[] args",
"args",
"public class Main{\n public static void main(String[] args) throws java.io.IOException{\n Scanner sc = new Scanner(System.in);\n int time = sc.nextInt();\n int hour = time / 3600;\n int minitue = (time%3600)/60;\n int second = time%60;\n System.out.println(hour+\":\"+minitue+\":\"+second);\n }\n}",
"public class Main{\n public static void main(String[] args) throws java.io.IOException{\n Scanner sc = new Scanner(System.in);\n int time = sc.nextInt();\n int hour = time / 3600;\n int minitue = (time%3600)/60;\n int second = time%60;\n System.out.println(hour+\":\"+minitue+\":\"+second);\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main{
public static void main(String[] args) throws java.io.IOException{
Scanner sc = new Scanner(System.in);
int time = sc.nextInt();
int hour = time / 3600;
int minitue = (time%3600)/60;
int second = time%60;
System.out.println(hour+":"+minitue+":"+second);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
4,
18,
20,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
4,
18,
13,
17,
13,
13,
13,
6,
13,
12,
13,
30,
41,
13,
20,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
11,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
11,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
24,
28
],
[
11,
29
],
[
29,
30
],
[
29,
31
],
[
32,
32
],
[
32,
33
],
[
32,
34
],
[
32,
35
],
[
11,
36
],
[
36,
37
],
[
37,
38
],
[
36,
39
],
[
36,
40
],
[
36,
41
],
[
36,
42
],
[
0,
43
],
[
57,
44
],
[
57,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
47,
51
],
[
51,
52
],
[
52,
53
],
[
45,
54
],
[
54,
55
],
[
0,
56
],
[
56,
57
],
[
56,
58
]
] | [
"import java.util.Scanner;\nimport static java.lang.System.out;\n\nclass Watch {\n public void run() {\n int input = new Scanner( System.in ).nextInt();\n int h = input / 3600;\n int m = input % 3600 / 60;\n int s = input % 60 % 60;\n\n out.printf( \"%d:%d:%d\\n\", h, m, s);\n }\n}\n\npublic class Main {\n public static void main( String... args) {\n Watch test = new Watch();\n test.run();\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"import static java.lang.System.out;",
"import static java.lang.System.out;",
"import static java.lang.System.out;",
"class Watch {\n public void run() {\n int input = new Scanner( System.in ).nextInt();\n int h = input / 3600;\n int m = input % 3600 / 60;\n int s = input % 60 % 60;\n\n out.printf( \"%d:%d:%d\\n\", h, m, s);\n }\n}",
"Watch",
"public void run() {\n int input = new Scanner( System.in ).nextInt();\n int h = input / 3600;\n int m = input % 3600 / 60;\n int s = input % 60 % 60;\n\n out.printf( \"%d:%d:%d\\n\", h, m, s);\n }",
"run",
"{\n int input = new Scanner( System.in ).nextInt();\n int h = input / 3600;\n int m = input % 3600 / 60;\n int s = input % 60 % 60;\n\n out.printf( \"%d:%d:%d\\n\", h, m, s);\n }",
"int input = new Scanner( System.in ).nextInt();",
"input",
"new Scanner( System.in ).nextInt()",
"new Scanner( System.in ).nextInt",
"new Scanner( System.in )",
"int h = input / 3600;",
"h",
"input / 3600",
"input",
"3600",
"int m = input % 3600 / 60;",
"m",
"input % 3600 / 60",
"input % 3600",
"input",
"3600",
"60",
"int s = input % 60 % 60;",
"s",
"input % 60 % 60",
"input % 60 % 60",
"input",
"60",
"60",
"out.printf( \"%d:%d:%d\\n\", h, m, s)",
"out.printf",
"out",
"\"%d:%d:%d\\n\"",
"h",
"m",
"s",
"public class Main {\n public static void main( String... args) {\n Watch test = new Watch();\n test.run();\n }\n}",
"Main",
"public static void main( String... args) {\n Watch test = new Watch();\n test.run();\n }",
"main",
"{\n Watch test = new Watch();\n test.run();\n }",
"Watch test = new Watch();",
"test",
"new Watch()",
"test.run()",
"test.run",
"test",
"String... args",
"args",
"public class Main {\n public static void main( String... args) {\n Watch test = new Watch();\n test.run();\n }\n}",
"public class Main {\n public static void main( String... args) {\n Watch test = new Watch();\n test.run();\n }\n}",
"Main"
] | import java.util.Scanner;
import static java.lang.System.out;
class Watch {
public void run() {
int input = new Scanner( System.in ).nextInt();
int h = input / 3600;
int m = input % 3600 / 60;
int s = input % 60 % 60;
out.printf( "%d:%d:%d\n", h, m, s);
}
}
public class Main {
public static void main( String... args) {
Watch test = new Watch();
test.run();
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
14,
2,
2,
13,
17,
2,
13,
17,
30,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
60,
5
],
[
60,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
18,
19
],
[
19,
20
],
[
19,
21
],
[
18,
22
],
[
22,
23
],
[
22,
24
],
[
17,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
28,
30
],
[
25,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
25,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
40,
42
],
[
25,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
43,
48
],
[
51,
49
],
[
49,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
49,
55
],
[
51,
56
],
[
6,
57
],
[
57,
58
],
[
0,
59
],
[
59,
60
],
[
59,
61
]
] | [
"import java.util.Scanner;\npublic class Main{\n public static void main(String[]args){\n\n Scanner sc = new Scanner(System.in);\n\tint a = sc.nextInt();\n\tif(a >= 0 && a < 86400){\n\t int h = a / 3600;\n\t int m = a % 3600 / 60;\n\t int s = a % 60;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n public static void main(String[]args){\n\n Scanner sc = new Scanner(System.in);\n\tint a = sc.nextInt();\n\tif(a >= 0 && a < 86400){\n\t int h = a / 3600;\n\t int m = a % 3600 / 60;\n\t int s = a % 60;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n }\n}",
"Main",
"public static void main(String[]args){\n\n Scanner sc = new Scanner(System.in);\n\tint a = sc.nextInt();\n\tif(a >= 0 && a < 86400){\n\t int h = a / 3600;\n\t int m = a % 3600 / 60;\n\t int s = a % 60;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n }",
"main",
"{\n\n Scanner sc = new Scanner(System.in);\n\tint a = sc.nextInt();\n\tif(a >= 0 && a < 86400){\n\t int h = a / 3600;\n\t int m = a % 3600 / 60;\n\t int s = a % 60;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"if(a >= 0 && a < 86400){\n\t int h = a / 3600;\n\t int m = a % 3600 / 60;\n\t int s = a % 60;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"a >= 0 && a < 86400",
"a >= 0",
"a",
"0",
"a < 86400",
"a",
"86400",
"{\n\t int h = a / 3600;\n\t int m = a % 3600 / 60;\n\t int s = a % 60;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"int h = a / 3600;",
"h",
"a / 3600",
"a",
"3600",
"int m = a % 3600 / 60;",
"m",
"a % 3600 / 60",
"a % 3600",
"a",
"3600",
"60",
"int s = a % 60;",
"s",
"a % 60",
"a",
"60",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[]args",
"args",
"public class Main{\n public static void main(String[]args){\n\n Scanner sc = new Scanner(System.in);\n\tint a = sc.nextInt();\n\tif(a >= 0 && a < 86400){\n\t int h = a / 3600;\n\t int m = a % 3600 / 60;\n\t int s = a % 60;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n }\n}",
"public class Main{\n public static void main(String[]args){\n\n Scanner sc = new Scanner(System.in);\n\tint a = sc.nextInt();\n\tif(a >= 0 && a < 86400){\n\t int h = a / 3600;\n\t int m = a % 3600 / 60;\n\t int s = a % 60;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main{
public static void main(String[]args){
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
if(a >= 0 && a < 86400){
int h = a / 3600;
int m = a % 3600 / 60;
int s = a % 60;
System.out.println(h+":"+m+":"+s);
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
0,
13,
2,
13,
2,
13,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
61,
5
],
[
61,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
26,
28
],
[
8,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
31,
33
],
[
8,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
38,
40
],
[
8,
41
],
[
41,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
41,
46
],
[
49,
47
],
[
47,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
48,
52
],
[
47,
53
],
[
49,
54
],
[
8,
55
],
[
55,
56
],
[
56,
57
],
[
6,
58
],
[
58,
59
],
[
0,
60
],
[
60,
61
],
[
60,
62
]
] | [
"\nimport java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scan = new Scanner(System.in);\n\n\t\tint i = scan.nextInt();\n\n\t\tint h = i / 3600;\n\t\ti = i - h * 3600;\n\n\n\n\t\tint m = i / 60;\n\n\t\tint s = i - m * 60;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\n\t\tscan.close();\n\n\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scan = new Scanner(System.in);\n\n\t\tint i = scan.nextInt();\n\n\t\tint h = i / 3600;\n\t\ti = i - h * 3600;\n\n\n\n\t\tint m = i / 60;\n\n\t\tint s = i - m * 60;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\n\t\tscan.close();\n\n\n\t}\n\n}",
"Main",
"public static void main(String args[]){\n\t\tScanner scan = new Scanner(System.in);\n\n\t\tint i = scan.nextInt();\n\n\t\tint h = i / 3600;\n\t\ti = i - h * 3600;\n\n\n\n\t\tint m = i / 60;\n\n\t\tint s = i - m * 60;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\n\t\tscan.close();\n\n\n\t}",
"main",
"{\n\t\tScanner scan = new Scanner(System.in);\n\n\t\tint i = scan.nextInt();\n\n\t\tint h = i / 3600;\n\t\ti = i - h * 3600;\n\n\n\n\t\tint m = i / 60;\n\n\t\tint s = i - m * 60;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\n\t\tscan.close();\n\n\n\t}",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int i = scan.nextInt();",
"i",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int h = i / 3600;",
"h",
"i / 3600",
"i",
"3600",
"i = i - h * 3600",
"i",
"i - h * 3600",
"i",
"h * 3600",
"h",
"3600",
"int m = i / 60;",
"m",
"i / 60",
"i",
"60",
"int s = i - m * 60;",
"s",
"i - m * 60",
"i",
"m * 60",
"m",
"60",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"scan.close()",
"scan.close",
"scan",
"String args[]",
"args",
"public class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scan = new Scanner(System.in);\n\n\t\tint i = scan.nextInt();\n\n\t\tint h = i / 3600;\n\t\ti = i - h * 3600;\n\n\n\n\t\tint m = i / 60;\n\n\t\tint s = i - m * 60;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\n\t\tscan.close();\n\n\n\t}\n\n}",
"public class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scan = new Scanner(System.in);\n\n\t\tint i = scan.nextInt();\n\n\t\tint h = i / 3600;\n\t\ti = i - h * 3600;\n\n\n\n\t\tint m = i / 60;\n\n\t\tint s = i - m * 60;\n\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\n\t\tscan.close();\n\n\n\t}\n\n}",
"Main"
] |
import java.util.Scanner;
public class Main {
public static void main(String args[]){
Scanner scan = new Scanner(System.in);
int i = scan.nextInt();
int h = i / 3600;
i = i - h * 3600;
int m = i / 60;
int s = i - m * 60;
System.out.println(h + ":" + m + ":" + s);
scan.close();
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
38,
5,
13,
30,
4,
18,
18,
13,
13,
17,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
65,
5
],
[
65,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
10,
11
],
[
10,
12
],
[
12,
13
],
[
13,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
13,
18
],
[
9,
19
],
[
19,
20
],
[
20,
21
],
[
20,
22
],
[
19,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
26,
27
],
[
19,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
30,
32
],
[
19,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
19,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
40,
42
],
[
19,
43
],
[
43,
44
],
[
43,
45
],
[
45,
46
],
[
45,
47
],
[
19,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
48,
53
],
[
56,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
55,
59
],
[
54,
60
],
[
56,
61
],
[
6,
62
],
[
62,
63
],
[
0,
64
],
[
64,
65
],
[
64,
66
]
] | [
"import java.util.*;\n\npublic class Main {\n\tpublic static void main(String[] args){\n\t\ttry{\n\t\t\t\n\t\tScanner inputTime = new Scanner(System.in);\n\t\tint input = inputTime.nextInt();\n\t\tint h = input / 3600;\n\t\tint amari = input % 3600;\n\t\tint m = amari / 60;\n\t\tint s = amari % 60;\n\t\t\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t\t\n\t\t}catch(InputMismatchException e){\n\t\t\tSystem.out.println(\"数字を入力してください。\");\n\t\t}\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\tpublic static void main(String[] args){\n\t\ttry{\n\t\t\t\n\t\tScanner inputTime = new Scanner(System.in);\n\t\tint input = inputTime.nextInt();\n\t\tint h = input / 3600;\n\t\tint amari = input % 3600;\n\t\tint m = amari / 60;\n\t\tint s = amari % 60;\n\t\t\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t\t\n\t\t}catch(InputMismatchException e){\n\t\t\tSystem.out.println(\"数字を入力してください。\");\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args){\n\t\ttry{\n\t\t\t\n\t\tScanner inputTime = new Scanner(System.in);\n\t\tint input = inputTime.nextInt();\n\t\tint h = input / 3600;\n\t\tint amari = input % 3600;\n\t\tint m = amari / 60;\n\t\tint s = amari % 60;\n\t\t\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t\t\n\t\t}catch(InputMismatchException e){\n\t\t\tSystem.out.println(\"数字を入力してください。\");\n\t\t}\n\t}",
"main",
"{\n\t\ttry{\n\t\t\t\n\t\tScanner inputTime = new Scanner(System.in);\n\t\tint input = inputTime.nextInt();\n\t\tint h = input / 3600;\n\t\tint amari = input % 3600;\n\t\tint m = amari / 60;\n\t\tint s = amari % 60;\n\t\t\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t\t\n\t\t}catch(InputMismatchException e){\n\t\t\tSystem.out.println(\"数字を入力してください。\");\n\t\t}\n\t}",
"try{\n\t\t\t\n\t\tScanner inputTime = new Scanner(System.in);\n\t\tint input = inputTime.nextInt();\n\t\tint h = input / 3600;\n\t\tint amari = input % 3600;\n\t\tint m = amari / 60;\n\t\tint s = amari % 60;\n\t\t\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t\t\n\t\t}catch(InputMismatchException e){\n\t\t\tSystem.out.println(\"数字を入力してください。\");\n\t\t}",
"catch(InputMismatchException e){\n\t\t\tSystem.out.println(\"数字を入力してください。\");\n\t\t}",
"InputMismatchException e",
"{\n\t\t\tSystem.out.println(\"数字を入力してください。\");\n\t\t}",
"System.out.println(\"数字を入力してください。\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"数字を入力してください。\"",
"{\n\t\t\t\n\t\tScanner inputTime = new Scanner(System.in);\n\t\tint input = inputTime.nextInt();\n\t\tint h = input / 3600;\n\t\tint amari = input % 3600;\n\t\tint m = amari / 60;\n\t\tint s = amari % 60;\n\t\t\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t\t\n\t\t}",
"Scanner inputTime = new Scanner(System.in);",
"inputTime",
"new Scanner(System.in)",
"int input = inputTime.nextInt();",
"input",
"inputTime.nextInt()",
"inputTime.nextInt",
"inputTime",
"int h = input / 3600;",
"h",
"input / 3600",
"input",
"3600",
"int amari = input % 3600;",
"amari",
"input % 3600",
"input",
"3600",
"int m = amari / 60;",
"m",
"amari / 60",
"amari",
"60",
"int s = amari % 60;",
"s",
"amari % 60",
"amari",
"60",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args){\n\t\ttry{\n\t\t\t\n\t\tScanner inputTime = new Scanner(System.in);\n\t\tint input = inputTime.nextInt();\n\t\tint h = input / 3600;\n\t\tint amari = input % 3600;\n\t\tint m = amari / 60;\n\t\tint s = amari % 60;\n\t\t\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t\t\n\t\t}catch(InputMismatchException e){\n\t\t\tSystem.out.println(\"数字を入力してください。\");\n\t\t}\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args){\n\t\ttry{\n\t\t\t\n\t\tScanner inputTime = new Scanner(System.in);\n\t\tint input = inputTime.nextInt();\n\t\tint h = input / 3600;\n\t\tint amari = input % 3600;\n\t\tint m = amari / 60;\n\t\tint s = amari % 60;\n\t\t\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t\t\n\t\t}catch(InputMismatchException e){\n\t\t\tSystem.out.println(\"数字を入力してください。\");\n\t\t}\n\t}\n}",
"Main"
] | import java.util.*;
public class Main {
public static void main(String[] args){
try{
Scanner inputTime = new Scanner(System.in);
int input = inputTime.nextInt();
int h = input / 3600;
int amari = input % 3600;
int m = amari / 60;
int s = amari % 60;
System.out.println(h + ":" + m + ":" + s);
}catch(InputMismatchException e){
System.out.println("数字を入力してください。");
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
41,
13,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
8,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
25,
27
],
[
8,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
30,
32
],
[
8,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
8,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
40,
42
],
[
8,
43
],
[
43,
44
],
[
43,
45
],
[
8,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
46,
51
],
[
54,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
52,
58
],
[
54,
59
],
[
6,
60
],
[
60,
61
]
] | [
"import java.util.Scanner;\nclass Main{\npublic static void main(String[] agrs){\nScanner scan=new Scanner(System.in);\nString str=scan.next();\nint times=Integer.parseInt(str);\nint a=times/3600;\ntimes=times%3600;\nint b=times/60;\ntimes=times%60;\nint c=times;\nSystem.out.println(a+\":\"+b+\":\"+c);\n}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main{\npublic static void main(String[] agrs){\nScanner scan=new Scanner(System.in);\nString str=scan.next();\nint times=Integer.parseInt(str);\nint a=times/3600;\ntimes=times%3600;\nint b=times/60;\ntimes=times%60;\nint c=times;\nSystem.out.println(a+\":\"+b+\":\"+c);\n}\n}",
"Main",
"public static void main(String[] agrs){\nScanner scan=new Scanner(System.in);\nString str=scan.next();\nint times=Integer.parseInt(str);\nint a=times/3600;\ntimes=times%3600;\nint b=times/60;\ntimes=times%60;\nint c=times;\nSystem.out.println(a+\":\"+b+\":\"+c);\n}",
"main",
"{\nScanner scan=new Scanner(System.in);\nString str=scan.next();\nint times=Integer.parseInt(str);\nint a=times/3600;\ntimes=times%3600;\nint b=times/60;\ntimes=times%60;\nint c=times;\nSystem.out.println(a+\":\"+b+\":\"+c);\n}",
"Scanner scan=new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"String str=scan.next();",
"str",
"scan.next()",
"scan.next",
"scan",
"int times=Integer.parseInt(str);",
"times",
"Integer.parseInt(str)",
"Integer.parseInt",
"Integer",
"str",
"int a=times/3600;",
"a",
"times/3600",
"times",
"3600",
"times=times%3600",
"times",
"times%3600",
"times",
"3600",
"int b=times/60;",
"b",
"times/60",
"times",
"60",
"times=times%60",
"times",
"times%60",
"times",
"60",
"int c=times;",
"c",
"times",
"System.out.println(a+\":\"+b+\":\"+c)",
"System.out.println",
"System.out",
"System",
"System.out",
"a+\":\"+b+\":\"+c",
"\":\"",
"b",
"a+\":\"+b+\":\"+c",
"a",
"\":\"",
"b",
"\":\"",
"c",
"String[] agrs",
"agrs"
] | import java.util.Scanner;
class Main{
public static void main(String[] agrs){
Scanner scan=new Scanner(System.in);
String str=scan.next();
int times=Integer.parseInt(str);
int a=times/3600;
times=times%3600;
int b=times/60;
times=times%60;
int c=times;
System.out.println(a+":"+b+":"+c);
}
} |
[
7,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
4,
13,
13,
23,
13,
12,
13,
30,
41,
13,
2,
13,
17,
41,
13,
2,
13,
2,
13,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
2,
13,
17,
29,
4,
18,
13,
17,
13,
13,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
3,
4
],
[
3,
5
],
[
5,
6
],
[
6,
7
],
[
6,
8
],
[
5,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
5,
14
],
[
14,
15
],
[
15,
16
],
[
16,
17
],
[
16,
18
],
[
14,
19
],
[
19,
20
],
[
19,
21
],
[
3,
22
],
[
22,
23
],
[
1,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
29,
31
],
[
26,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
36,
38
],
[
26,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
41,
43
],
[
26,
44
],
[
44,
45
],
[
44,
46
],
[
46,
47
],
[
46,
48
],
[
48,
49
],
[
48,
50
],
[
26,
51
],
[
51,
52
],
[
52,
53
],
[
53,
54
],
[
52,
55
],
[
52,
56
],
[
52,
57
],
[
52,
58
],
[
24,
59
],
[
59,
60
]
] | [
"class Main{\n \n public static void main(String[] args){\n java.util.Scanner in = new java.util.Scanner(System.in);\n int t = in.nextInt();\n System.out.println(getFormattedTime(t));\n }\n \n public static String getFormattedTime(int sec){\n int h = sec / 3600;\n int rest_h = sec - h * 3600;\n int m = rest_h / 60;\n int s = rest_h - m * 60; \n return String.format(\"%d:%d:%d\", h, m, s);\n }\n \n}",
"class Main{\n \n public static void main(String[] args){\n java.util.Scanner in = new java.util.Scanner(System.in);\n int t = in.nextInt();\n System.out.println(getFormattedTime(t));\n }\n \n public static String getFormattedTime(int sec){\n int h = sec / 3600;\n int rest_h = sec - h * 3600;\n int m = rest_h / 60;\n int s = rest_h - m * 60; \n return String.format(\"%d:%d:%d\", h, m, s);\n }\n \n}",
"Main",
"public static void main(String[] args){\n java.util.Scanner in = new java.util.Scanner(System.in);\n int t = in.nextInt();\n System.out.println(getFormattedTime(t));\n }",
"main",
"{\n java.util.Scanner in = new java.util.Scanner(System.in);\n int t = in.nextInt();\n System.out.println(getFormattedTime(t));\n }",
"java.util.Scanner in = new java.util.Scanner(System.in);",
"in",
"new java.util.Scanner(System.in)",
"int t = in.nextInt();",
"t",
"in.nextInt()",
"in.nextInt",
"in",
"System.out.println(getFormattedTime(t))",
"System.out.println",
"System.out",
"System",
"System.out",
"getFormattedTime(t)",
"getFormattedTime",
"t",
"String[] args",
"args",
"public static String getFormattedTime(int sec){\n int h = sec / 3600;\n int rest_h = sec - h * 3600;\n int m = rest_h / 60;\n int s = rest_h - m * 60; \n return String.format(\"%d:%d:%d\", h, m, s);\n }",
"getFormattedTime",
"{\n int h = sec / 3600;\n int rest_h = sec - h * 3600;\n int m = rest_h / 60;\n int s = rest_h - m * 60; \n return String.format(\"%d:%d:%d\", h, m, s);\n }",
"int h = sec / 3600;",
"h",
"sec / 3600",
"sec",
"3600",
"int rest_h = sec - h * 3600;",
"rest_h",
"sec - h * 3600",
"sec",
"h * 3600",
"h",
"3600",
"int m = rest_h / 60;",
"m",
"rest_h / 60",
"rest_h",
"60",
"int s = rest_h - m * 60;",
"s",
"rest_h - m * 60",
"rest_h",
"m * 60",
"m",
"60",
"return String.format(\"%d:%d:%d\", h, m, s);",
"String.format(\"%d:%d:%d\", h, m, s)",
"String.format",
"String",
"\"%d:%d:%d\"",
"h",
"m",
"s",
"int sec",
"sec"
] | class Main{
public static void main(String[] args){
java.util.Scanner in = new java.util.Scanner(System.in);
int t = in.nextInt();
System.out.println(getFormattedTime(t));
}
public static String getFormattedTime(int sec){
int h = sec / 3600;
int rest_h = sec - h * 3600;
int m = rest_h / 60;
int s = rest_h - m * 60;
return String.format("%d:%d:%d", h, m, s);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
13,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
11,
13
],
[
8,
14
],
[
14,
15
],
[
14,
16
],
[
16,
17
],
[
17,
18
],
[
17,
19
],
[
16,
20
],
[
8,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
23,
25
],
[
8,
26
],
[
26,
27
],
[
27,
28
],
[
28,
29
],
[
28,
30
],
[
26,
31
],
[
34,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
32,
38
],
[
34,
39
],
[
6,
40
],
[
40,
41
],
[
4,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
48,
49
],
[
48,
50
],
[
50,
51
],
[
51,
52
],
[
44,
53
],
[
53,
54
],
[
53,
55
],
[
42,
56
],
[
56,
57
]
] | [
"import java.util.Scanner;\n\nclass Main{\n static void printwatch(int s){\n\tint h=s/3600;\n\tint m=(s%3600)/60;\n\tint sa=s%60;\n\n\tSystem.out.println(h+\":\"+m+\":\"+sa);\n }\n \n public static void main(String args[]){\n\tScanner scan=new Scanner(System.in);\n\n\tint s=scan.nextInt();\n\tprintwatch(s);\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main{\n static void printwatch(int s){\n\tint h=s/3600;\n\tint m=(s%3600)/60;\n\tint sa=s%60;\n\n\tSystem.out.println(h+\":\"+m+\":\"+sa);\n }\n \n public static void main(String args[]){\n\tScanner scan=new Scanner(System.in);\n\n\tint s=scan.nextInt();\n\tprintwatch(s);\n }\n}",
"Main",
"static void printwatch(int s){\n\tint h=s/3600;\n\tint m=(s%3600)/60;\n\tint sa=s%60;\n\n\tSystem.out.println(h+\":\"+m+\":\"+sa);\n }",
"printwatch",
"{\n\tint h=s/3600;\n\tint m=(s%3600)/60;\n\tint sa=s%60;\n\n\tSystem.out.println(h+\":\"+m+\":\"+sa);\n }",
"int h=s/3600;",
"h",
"s/3600",
"s",
"3600",
"int m=(s%3600)/60;",
"m",
"(s%3600)/60",
"(s%3600)",
"s",
"3600",
"60",
"int sa=s%60;",
"sa",
"s%60",
"s",
"60",
"System.out.println(h+\":\"+m+\":\"+sa)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+sa",
"\":\"",
"m",
"h+\":\"+m+\":\"+sa",
"h",
"\":\"",
"m",
"\":\"",
"sa",
"int s",
"s",
"public static void main(String args[]){\n\tScanner scan=new Scanner(System.in);\n\n\tint s=scan.nextInt();\n\tprintwatch(s);\n }",
"main",
"{\n\tScanner scan=new Scanner(System.in);\n\n\tint s=scan.nextInt();\n\tprintwatch(s);\n }",
"Scanner scan=new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int s=scan.nextInt();",
"s",
"scan.nextInt()",
"scan.nextInt",
"scan",
"printwatch(s)",
"printwatch",
"s",
"String args[]",
"args"
] | import java.util.Scanner;
class Main{
static void printwatch(int s){
int h=s/3600;
int m=(s%3600)/60;
int sa=s%60;
System.out.println(h+":"+m+":"+sa);
}
public static void main(String args[]){
Scanner scan=new Scanner(System.in);
int s=scan.nextInt();
printwatch(s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
13,
13,
4,
18,
13,
23,
13,
12,
13,
30,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
2,
13,
17,
13,
17,
13,
17,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
69,
8
],
[
69,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
11,
20
],
[
20,
21
],
[
20,
22
],
[
11,
23
],
[
23,
24
],
[
24,
25
],
[
9,
26
],
[
26,
27
],
[
69,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
33,
35
],
[
30,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
38,
42
],
[
30,
43
],
[
43,
44
],
[
43,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
45,
49
],
[
30,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
50,
55
],
[
59,
56
],
[
56,
57
],
[
57,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
58,
62
],
[
57,
63
],
[
56,
64
],
[
59,
65
],
[
28,
66
],
[
66,
67
],
[
0,
68
],
[
68,
69
],
[
68,
70
]
] | [
"import java.io.IOException;\nimport java.util.Scanner;\n\n//????????????????????????hms???????????????\npublic class Main{\n\n\tpublic static void main(String[] args) throws IOException{\n\n\t\tScanner in = new Scanner(System.in);\n\t\tint x=in.nextInt();\n\t\thms(x);\n\t\tin.close();\n\n\t}\n\n\tpublic static void hms(int num){\n\t\tint h=num/3600;\n\t\tint m=(num%3600)/60;\n\t\tint s=(num%3600)%60;\n\t\tSystem.out.println(h +\":\"+m+\":\"+s+\"\");\n\n\t}\n\n}",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n\n\tpublic static void main(String[] args) throws IOException{\n\n\t\tScanner in = new Scanner(System.in);\n\t\tint x=in.nextInt();\n\t\thms(x);\n\t\tin.close();\n\n\t}\n\n\tpublic static void hms(int num){\n\t\tint h=num/3600;\n\t\tint m=(num%3600)/60;\n\t\tint s=(num%3600)%60;\n\t\tSystem.out.println(h +\":\"+m+\":\"+s+\"\");\n\n\t}\n\n}",
"Main",
"public static void main(String[] args) throws IOException{\n\n\t\tScanner in = new Scanner(System.in);\n\t\tint x=in.nextInt();\n\t\thms(x);\n\t\tin.close();\n\n\t}",
"main",
"{\n\n\t\tScanner in = new Scanner(System.in);\n\t\tint x=in.nextInt();\n\t\thms(x);\n\t\tin.close();\n\n\t}",
"Scanner in = new Scanner(System.in);",
"in",
"new Scanner(System.in)",
"int x=in.nextInt();",
"x",
"in.nextInt()",
"in.nextInt",
"in",
"hms(x)",
"hms",
"x",
"in.close()",
"in.close",
"in",
"String[] args",
"args",
"public static void hms(int num){\n\t\tint h=num/3600;\n\t\tint m=(num%3600)/60;\n\t\tint s=(num%3600)%60;\n\t\tSystem.out.println(h +\":\"+m+\":\"+s+\"\");\n\n\t}",
"hms",
"{\n\t\tint h=num/3600;\n\t\tint m=(num%3600)/60;\n\t\tint s=(num%3600)%60;\n\t\tSystem.out.println(h +\":\"+m+\":\"+s+\"\");\n\n\t}",
"int h=num/3600;",
"h",
"num/3600",
"num",
"3600",
"int m=(num%3600)/60;",
"m",
"(num%3600)/60",
"(num%3600)",
"num",
"3600",
"60",
"int s=(num%3600)%60;",
"s",
"(num%3600)%60",
"(num%3600)",
"num",
"3600",
"60",
"System.out.println(h +\":\"+m+\":\"+s+\"\")",
"System.out.println",
"System.out",
"System",
"System.out",
"h +\":\"+m+\":\"+s+\"\"",
"s",
"\":\"",
"m",
"h +\":\"+m+\":\"+s+\"\"",
"h",
"\":\"",
"m",
"\":\"",
"s",
"\"\"",
"int num",
"num",
"public class Main{\n\n\tpublic static void main(String[] args) throws IOException{\n\n\t\tScanner in = new Scanner(System.in);\n\t\tint x=in.nextInt();\n\t\thms(x);\n\t\tin.close();\n\n\t}\n\n\tpublic static void hms(int num){\n\t\tint h=num/3600;\n\t\tint m=(num%3600)/60;\n\t\tint s=(num%3600)%60;\n\t\tSystem.out.println(h +\":\"+m+\":\"+s+\"\");\n\n\t}\n\n}",
"public class Main{\n\n\tpublic static void main(String[] args) throws IOException{\n\n\t\tScanner in = new Scanner(System.in);\n\t\tint x=in.nextInt();\n\t\thms(x);\n\t\tin.close();\n\n\t}\n\n\tpublic static void hms(int num){\n\t\tint h=num/3600;\n\t\tint m=(num%3600)/60;\n\t\tint s=(num%3600)%60;\n\t\tSystem.out.println(h +\":\"+m+\":\"+s+\"\");\n\n\t}\n\n}",
"Main"
] | import java.io.IOException;
import java.util.Scanner;
//????????????????????????hms???????????????
public class Main{
public static void main(String[] args) throws IOException{
Scanner in = new Scanner(System.in);
int x=in.nextInt();
hms(x);
in.close();
}
public static void hms(int num){
int h=num/3600;
int m=(num%3600)/60;
int s=(num%3600)%60;
System.out.println(h +":"+m+":"+s+"");
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
41,
13,
41,
13,
0,
13,
2,
13,
17,
0,
13,
2,
2,
13,
17,
17,
0,
13,
2,
13,
2,
2,
13,
17,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
4,
18,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
66,
5
],
[
66,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
8,
19
],
[
19,
20
],
[
8,
21
],
[
21,
22
],
[
8,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
25,
27
],
[
8,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
30,
34
],
[
8,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
39,
43
],
[
43,
44
],
[
43,
45
],
[
8,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
46,
51
],
[
54,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
52,
58
],
[
54,
59
],
[
8,
60
],
[
60,
61
],
[
61,
62
],
[
6,
63
],
[
63,
64
],
[
0,
65
],
[
65,
66
],
[
65,
67
]
] | [
"import java.util.Scanner;\n\npublic class Main{\n public static void main(String [] args){\n Scanner sc = new Scanner(System.in);\n int S = sc.nextInt();\n int h, m, s;\n h = S/3600;\n m = S%3600/60;\n s = S-((h*3600)+(m*60));\n System.out.println(h+\":\"+m+\":\"+s);\n sc.close();\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n public static void main(String [] args){\n Scanner sc = new Scanner(System.in);\n int S = sc.nextInt();\n int h, m, s;\n h = S/3600;\n m = S%3600/60;\n s = S-((h*3600)+(m*60));\n System.out.println(h+\":\"+m+\":\"+s);\n sc.close();\n }\n}",
"Main",
"public static void main(String [] args){\n Scanner sc = new Scanner(System.in);\n int S = sc.nextInt();\n int h, m, s;\n h = S/3600;\n m = S%3600/60;\n s = S-((h*3600)+(m*60));\n System.out.println(h+\":\"+m+\":\"+s);\n sc.close();\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int S = sc.nextInt();\n int h, m, s;\n h = S/3600;\n m = S%3600/60;\n s = S-((h*3600)+(m*60));\n System.out.println(h+\":\"+m+\":\"+s);\n sc.close();\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int S = sc.nextInt();",
"S",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int h",
"h",
"m",
"m",
"s;",
"s",
"h = S/3600",
"h",
"S/3600",
"S",
"3600",
"m = S%3600/60",
"m",
"S%3600/60",
"S%3600",
"S",
"3600",
"60",
"s = S-((h*3600)+(m*60))",
"s",
"S-((h*3600)+(m*60))",
"S",
"((h*3600)+(m*60))",
"(h*3600)",
"h",
"3600",
"(m*60)",
"m",
"60",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"sc.close()",
"sc.close",
"sc",
"String [] args",
"args",
"public class Main{\n public static void main(String [] args){\n Scanner sc = new Scanner(System.in);\n int S = sc.nextInt();\n int h, m, s;\n h = S/3600;\n m = S%3600/60;\n s = S-((h*3600)+(m*60));\n System.out.println(h+\":\"+m+\":\"+s);\n sc.close();\n }\n}",
"public class Main{\n public static void main(String [] args){\n Scanner sc = new Scanner(System.in);\n int S = sc.nextInt();\n int h, m, s;\n h = S/3600;\n m = S%3600/60;\n s = S-((h*3600)+(m*60));\n System.out.println(h+\":\"+m+\":\"+s);\n sc.close();\n }\n}",
"Main"
] | import java.util.Scanner;
public class Main{
public static void main(String [] args){
Scanner sc = new Scanner(System.in);
int S = sc.nextInt();
int h, m, s;
h = S/3600;
m = S%3600/60;
s = S-((h*3600)+(m*60));
System.out.println(h+":"+m+":"+s);
sc.close();
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
41,
13,
41,
13,
41,
13,
41,
13,
20,
0,
13,
4,
18,
13,
0,
13,
2,
13,
17,
0,
13,
2,
2,
13,
17,
17,
0,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
61,
5
],
[
61,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
8,
11
],
[
11,
12
],
[
8,
13
],
[
13,
14
],
[
8,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
8,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
27,
29
],
[
8,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
32,
36
],
[
8,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
39,
43
],
[
8,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
44,
49
],
[
52,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
51,
55
],
[
50,
56
],
[
52,
57
],
[
6,
58
],
[
58,
59
],
[
0,
60
],
[
60,
61
],
[
60,
62
]
] | [
"import java.util.*;\n\npublic class Main {\n\tpublic static void main(String[] args){\n\t\tint S,h,m,s;\n\t\tScanner sc = new Scanner(System.in);\n\t\tS = sc.nextInt();\n\t\t\n\t\th = S / 3600;\n\t\tm = (S % 3600) / 60;\n\t\ts = (S % 3600) % 60;\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tint S,h,m,s;\n\t\tScanner sc = new Scanner(System.in);\n\t\tS = sc.nextInt();\n\t\t\n\t\th = S / 3600;\n\t\tm = (S % 3600) / 60;\n\t\ts = (S % 3600) % 60;\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n}",
"Main",
"public static void main(String[] args){\n\t\tint S,h,m,s;\n\t\tScanner sc = new Scanner(System.in);\n\t\tS = sc.nextInt();\n\t\t\n\t\th = S / 3600;\n\t\tm = (S % 3600) / 60;\n\t\ts = (S % 3600) % 60;\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"main",
"{\n\t\tint S,h,m,s;\n\t\tScanner sc = new Scanner(System.in);\n\t\tS = sc.nextInt();\n\t\t\n\t\th = S / 3600;\n\t\tm = (S % 3600) / 60;\n\t\ts = (S % 3600) % 60;\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"int S",
"S",
"h",
"h",
"m",
"m",
"s;",
"s",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"S = sc.nextInt()",
"S",
"sc.nextInt()",
"sc.nextInt",
"sc",
"h = S / 3600",
"h",
"S / 3600",
"S",
"3600",
"m = (S % 3600) / 60",
"m",
"(S % 3600) / 60",
"(S % 3600)",
"S",
"3600",
"60",
"s = (S % 3600) % 60",
"s",
"(S % 3600) % 60",
"(S % 3600)",
"S",
"3600",
"60",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tint S,h,m,s;\n\t\tScanner sc = new Scanner(System.in);\n\t\tS = sc.nextInt();\n\t\t\n\t\th = S / 3600;\n\t\tm = (S % 3600) / 60;\n\t\ts = (S % 3600) % 60;\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tint S,h,m,s;\n\t\tScanner sc = new Scanner(System.in);\n\t\tS = sc.nextInt();\n\t\t\n\t\th = S / 3600;\n\t\tm = (S % 3600) / 60;\n\t\ts = (S % 3600) % 60;\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n}",
"Main"
] | import java.util.*;
public class Main {
public static void main(String[] args){
int S,h,m,s;
Scanner sc = new Scanner(System.in);
S = sc.nextInt();
h = S / 3600;
m = (S % 3600) / 60;
s = (S % 3600) % 60;
System.out.println(h+":"+m+":"+s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
38,
5,
13,
30,
4,
18,
18,
13,
13,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
14,
2,
2,
17,
13,
2,
13,
17,
30,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
88,
11
],
[
88,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
16,
17
],
[
16,
18
],
[
18,
19
],
[
19,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
19,
24
],
[
15,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
25,
29
],
[
29,
30
],
[
29,
31
],
[
25,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
25,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
40,
41
],
[
39,
42
],
[
25,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
48,
49
],
[
48,
50
],
[
43,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
54,
55
],
[
54,
56
],
[
51,
57
],
[
57,
58
],
[
57,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
59,
63
],
[
51,
64
],
[
64,
65
],
[
64,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
66,
70
],
[
51,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
71,
76
],
[
79,
77
],
[
77,
78
],
[
78,
79
],
[
79,
80
],
[
79,
81
],
[
78,
82
],
[
77,
83
],
[
79,
84
],
[
12,
85
],
[
85,
86
],
[
0,
87
],
[
87,
88
],
[
87,
89
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n public static void main(String[] args){\n \ttry {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tint S = Integer.parseInt(buf);\n \t\tif(0 <= S && S < 86400){\n \t\t\n \t\tint h=S/3600;\n \t\t\n \t\tint m=(S%3600)/60;\n \t\t\n \t\tint s=(S%3600)%60;\n \t\t\n \t\tSystem.out.println(h+\":\"+m+\":\"+s);\n \t\t}\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}\n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n public static void main(String[] args){\n \ttry {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tint S = Integer.parseInt(buf);\n \t\tif(0 <= S && S < 86400){\n \t\t\n \t\tint h=S/3600;\n \t\t\n \t\tint m=(S%3600)/60;\n \t\t\n \t\tint s=(S%3600)%60;\n \t\t\n \t\tSystem.out.println(h+\":\"+m+\":\"+s);\n \t\t}\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}\n }\n}",
"Main",
"public static void main(String[] args){\n \ttry {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tint S = Integer.parseInt(buf);\n \t\tif(0 <= S && S < 86400){\n \t\t\n \t\tint h=S/3600;\n \t\t\n \t\tint m=(S%3600)/60;\n \t\t\n \t\tint s=(S%3600)%60;\n \t\t\n \t\tSystem.out.println(h+\":\"+m+\":\"+s);\n \t\t}\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}\n }",
"main",
"{\n \ttry {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tint S = Integer.parseInt(buf);\n \t\tif(0 <= S && S < 86400){\n \t\t\n \t\tint h=S/3600;\n \t\t\n \t\tint m=(S%3600)/60;\n \t\t\n \t\tint s=(S%3600)%60;\n \t\t\n \t\tSystem.out.println(h+\":\"+m+\":\"+s);\n \t\t}\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}\n }",
"try {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tint S = Integer.parseInt(buf);\n \t\tif(0 <= S && S < 86400){\n \t\t\n \t\tint h=S/3600;\n \t\t\n \t\tint m=(S%3600)/60;\n \t\t\n \t\tint s=(S%3600)%60;\n \t\t\n \t\tSystem.out.println(h+\":\"+m+\":\"+s);\n \t\t}\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}",
"catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}",
"IOException e",
"{\n\t\t System.err.println(e);\n\t\t}",
"System.err.println(e)",
"System.err.println",
"System.err",
"System",
"System.err",
"e",
"{\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tint S = Integer.parseInt(buf);\n \t\tif(0 <= S && S < 86400){\n \t\t\n \t\tint h=S/3600;\n \t\t\n \t\tint m=(S%3600)/60;\n \t\t\n \t\tint s=(S%3600)%60;\n \t\t\n \t\tSystem.out.println(h+\":\"+m+\":\"+s);\n \t\t}\n \t}",
"InputStreamReader isr = new InputStreamReader(System.in);",
"isr",
"new InputStreamReader(System.in)",
"BufferedReader br = new BufferedReader(isr);",
"br",
"new BufferedReader(isr)",
"String buf = br.readLine();",
"buf",
"br.readLine()",
"br.readLine",
"br",
"int S = Integer.parseInt(buf);",
"S",
"Integer.parseInt(buf)",
"Integer.parseInt",
"Integer",
"buf",
"if(0 <= S && S < 86400){\n \t\t\n \t\tint h=S/3600;\n \t\t\n \t\tint m=(S%3600)/60;\n \t\t\n \t\tint s=(S%3600)%60;\n \t\t\n \t\tSystem.out.println(h+\":\"+m+\":\"+s);\n \t\t}",
"0 <= S && S < 86400",
"0 <= S",
"0",
"S",
"S < 86400",
"S",
"86400",
"{\n \t\t\n \t\tint h=S/3600;\n \t\t\n \t\tint m=(S%3600)/60;\n \t\t\n \t\tint s=(S%3600)%60;\n \t\t\n \t\tSystem.out.println(h+\":\"+m+\":\"+s);\n \t\t}",
"int h=S/3600;",
"h",
"S/3600",
"S",
"3600",
"int m=(S%3600)/60;",
"m",
"(S%3600)/60",
"(S%3600)",
"S",
"3600",
"60",
"int s=(S%3600)%60;",
"s",
"(S%3600)%60",
"(S%3600)",
"S",
"3600",
"60",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args){\n \ttry {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tint S = Integer.parseInt(buf);\n \t\tif(0 <= S && S < 86400){\n \t\t\n \t\tint h=S/3600;\n \t\t\n \t\tint m=(S%3600)/60;\n \t\t\n \t\tint s=(S%3600)%60;\n \t\t\n \t\tSystem.out.println(h+\":\"+m+\":\"+s);\n \t\t}\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}\n }\n}",
"public class Main {\n public static void main(String[] args){\n \ttry {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tint S = Integer.parseInt(buf);\n \t\tif(0 <= S && S < 86400){\n \t\t\n \t\tint h=S/3600;\n \t\t\n \t\tint m=(S%3600)/60;\n \t\t\n \t\tint s=(S%3600)%60;\n \t\t\n \t\tSystem.out.println(h+\":\"+m+\":\"+s);\n \t\t}\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}\n }\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args){
try {
InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(isr);
String buf = br.readLine();
int S = Integer.parseInt(buf);
if(0 <= S && S < 86400){
int h=S/3600;
int m=(S%3600)/60;
int s=(S%3600)%60;
System.out.println(h+":"+m+":"+s);
}
} catch(IOException e) {
System.err.println(e);
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
17,
41,
13,
17,
11,
1,
0,
13,
13,
2,
13,
17,
1,
40,
13,
30,
30,
0,
13,
17,
41,
13,
17,
11,
1,
2,
13,
17,
1,
40,
13,
30,
30,
0,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
12,
13,
30,
4,
18,
20,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
8,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
23,
28
],
[
28,
29
],
[
28,
30
],
[
23,
31
],
[
31,
32
],
[
32,
33
],
[
23,
34
],
[
35,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
8,
39
],
[
39,
40
],
[
39,
41
],
[
8,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
44,
46
],
[
42,
47
],
[
47,
48
],
[
48,
49
],
[
42,
50
],
[
51,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
8,
55
],
[
55,
56
],
[
56,
57
],
[
57,
58
],
[
57,
59
],
[
55,
60
],
[
63,
61
],
[
61,
62
],
[
62,
63
],
[
63,
64
],
[
63,
65
],
[
62,
66
],
[
61,
67
],
[
63,
68
],
[
4,
69
],
[
69,
70
],
[
69,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
69,
75
],
[
75,
76
]
] | [
"\nimport java.util.Scanner;\n\nclass Main {\n public void cubic() {\n Scanner sc = new Scanner(System.in);\n int arg = sc.nextInt();\n\n int i=0;\n int h=0;\n for (i = arg; i >= 3600; h++) {\n i -= 3600;\n }\n // System.out.println(\"i=\"+i);\n\n int m = 0;\n for (; i >= 60; m++) {\n i -= 60;\n }\n \n System.out.println(h+\":\"+m+\":\"+i);\n }\n \n public static void main(String[] args){\n new Main().cubic();\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main {\n public void cubic() {\n Scanner sc = new Scanner(System.in);\n int arg = sc.nextInt();\n\n int i=0;\n int h=0;\n for (i = arg; i >= 3600; h++) {\n i -= 3600;\n }\n // System.out.println(\"i=\"+i);\n\n int m = 0;\n for (; i >= 60; m++) {\n i -= 60;\n }\n \n System.out.println(h+\":\"+m+\":\"+i);\n }\n \n public static void main(String[] args){\n new Main().cubic();\n }\n}",
"Main",
"public void cubic() {\n Scanner sc = new Scanner(System.in);\n int arg = sc.nextInt();\n\n int i=0;\n int h=0;\n for (i = arg; i >= 3600; h++) {\n i -= 3600;\n }\n // System.out.println(\"i=\"+i);\n\n int m = 0;\n for (; i >= 60; m++) {\n i -= 60;\n }\n \n System.out.println(h+\":\"+m+\":\"+i);\n }",
"cubic",
"{\n Scanner sc = new Scanner(System.in);\n int arg = sc.nextInt();\n\n int i=0;\n int h=0;\n for (i = arg; i >= 3600; h++) {\n i -= 3600;\n }\n // System.out.println(\"i=\"+i);\n\n int m = 0;\n for (; i >= 60; m++) {\n i -= 60;\n }\n \n System.out.println(h+\":\"+m+\":\"+i);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int arg = sc.nextInt();",
"arg",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int i=0;",
"i",
"0",
"int h=0;",
"h",
"0",
"for (i = arg; i >= 3600; h++) {\n i -= 3600;\n }",
"i = arg;",
"i = arg",
"i",
"arg",
"i >= 3600",
"i",
"3600",
"h++",
"h++",
"h",
"{\n i -= 3600;\n }",
"{\n i -= 3600;\n }",
"i -= 3600",
"i",
"3600",
"int m = 0;",
"m",
"0",
"for (; i >= 60; m++) {\n i -= 60;\n }",
";",
"i >= 60",
"i",
"60",
"m++",
"m++",
"m",
"{\n i -= 60;\n }",
"{\n i -= 60;\n }",
"i -= 60",
"i",
"60",
"System.out.println(h+\":\"+m+\":\"+i)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+i",
"\":\"",
"m",
"h+\":\"+m+\":\"+i",
"h",
"\":\"",
"m",
"\":\"",
"i",
"public static void main(String[] args){\n new Main().cubic();\n }",
"main",
"{\n new Main().cubic();\n }",
"new Main().cubic()",
"new Main().cubic",
"new Main()",
"String[] args",
"args"
] |
import java.util.Scanner;
class Main {
public void cubic() {
Scanner sc = new Scanner(System.in);
int arg = sc.nextInt();
int i=0;
int h=0;
for (i = arg; i >= 3600; h++) {
i -= 3600;
}
// System.out.println("i="+i);
int m = 0;
for (; i >= 60; m++) {
i -= 60;
}
System.out.println(h+":"+m+":"+i);
}
public static void main(String[] args){
new Main().cubic();
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
41,
13,
41,
13,
41,
13,
41,
13,
20,
0,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
2,
13,
17,
17,
2,
2,
13,
17,
17,
17,
2,
13,
17,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
50,
5
],
[
50,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
8,
11
],
[
11,
12
],
[
8,
13
],
[
13,
14
],
[
8,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
8,
25
],
[
25,
26
],
[
26,
27
],
[
27,
28
],
[
27,
29
],
[
25,
30
],
[
33,
31
],
[
31,
32
],
[
38,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
38,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
38,
42
],
[
31,
43
],
[
33,
44
],
[
44,
45
],
[
44,
46
],
[
6,
47
],
[
47,
48
],
[
0,
49
],
[
49,
50
],
[
49,
51
]
] | [
"import java.util.Scanner;\npublic class Main\n{\n\tpublic static void main(String args[])\n\t{\n\t\tint n,a,b,c;\n\t\tScanner input = new Scanner(System.in);\n\t\tn = input.nextInt();\n\t\tSystem.out.println(n/3600 + \":\" + (n%3600)/60 + \":\" + n%60);\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main\n{\n\tpublic static void main(String args[])\n\t{\n\t\tint n,a,b,c;\n\t\tScanner input = new Scanner(System.in);\n\t\tn = input.nextInt();\n\t\tSystem.out.println(n/3600 + \":\" + (n%3600)/60 + \":\" + n%60);\n\t}\n}",
"Main",
"public static void main(String args[])\n\t{\n\t\tint n,a,b,c;\n\t\tScanner input = new Scanner(System.in);\n\t\tn = input.nextInt();\n\t\tSystem.out.println(n/3600 + \":\" + (n%3600)/60 + \":\" + n%60);\n\t}",
"main",
"{\n\t\tint n,a,b,c;\n\t\tScanner input = new Scanner(System.in);\n\t\tn = input.nextInt();\n\t\tSystem.out.println(n/3600 + \":\" + (n%3600)/60 + \":\" + n%60);\n\t}",
"int n",
"n",
"a",
"a",
"b",
"b",
"c;",
"c",
"Scanner input = new Scanner(System.in);",
"input",
"new Scanner(System.in)",
"n = input.nextInt()",
"n",
"input.nextInt()",
"input.nextInt",
"input",
"System.out.println(n/3600 + \":\" + (n%3600)/60 + \":\" + n%60)",
"System.out.println",
"System.out",
"System",
"System.out",
"n/3600 + \":\" + (n%3600)/60 + \":\" + n%60",
"\":\"",
"(n%3600)/60",
"n/3600 + \":\" + (n%3600)/60 + \":\" + n%60",
"n/3600",
"n",
"3600",
"\":\"",
"(n%3600)/60",
"(n%3600)",
"n",
"3600",
"60",
"\":\"",
"n%60",
"n",
"60",
"String args[]",
"args",
"public class Main\n{\n\tpublic static void main(String args[])\n\t{\n\t\tint n,a,b,c;\n\t\tScanner input = new Scanner(System.in);\n\t\tn = input.nextInt();\n\t\tSystem.out.println(n/3600 + \":\" + (n%3600)/60 + \":\" + n%60);\n\t}\n}",
"public class Main\n{\n\tpublic static void main(String args[])\n\t{\n\t\tint n,a,b,c;\n\t\tScanner input = new Scanner(System.in);\n\t\tn = input.nextInt();\n\t\tSystem.out.println(n/3600 + \":\" + (n%3600)/60 + \":\" + n%60);\n\t}\n}",
"Main"
] | import java.util.Scanner;
public class Main
{
public static void main(String args[])
{
int n,a,b,c;
Scanner input = new Scanner(System.in);
n = input.nextInt();
System.out.println(n/3600 + ":" + (n%3600)/60 + ":" + n%60);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
4,
18,
20,
41,
13,
4,
13,
13,
4,
18,
18,
13,
13,
13,
23,
13,
12,
13,
30,
41,
13,
41,
13,
41,
13,
0,
13,
4,
13,
13,
14,
2,
2,
13,
17,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
29,
17,
0,
13,
2,
13,
17,
0,
13,
2,
2,
13,
17,
17,
0,
13,
2,
13,
17,
29,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
88,
5
],
[
88,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
8,
14
],
[
14,
15
],
[
14,
16
],
[
16,
17
],
[
16,
18
],
[
8,
19
],
[
19,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
19,
24
],
[
6,
25
],
[
25,
26
],
[
88,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
29,
32
],
[
32,
33
],
[
29,
34
],
[
34,
35
],
[
29,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
38,
40
],
[
29,
41
],
[
41,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
42,
46
],
[
46,
47
],
[
46,
48
],
[
41,
49
],
[
49,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
50,
55
],
[
49,
56
],
[
56,
57
],
[
29,
58
],
[
58,
59
],
[
58,
60
],
[
60,
61
],
[
60,
62
],
[
29,
63
],
[
63,
64
],
[
63,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
65,
69
],
[
29,
70
],
[
70,
71
],
[
70,
72
],
[
72,
73
],
[
72,
74
],
[
29,
75
],
[
75,
76
],
[
79,
77
],
[
77,
78
],
[
78,
79
],
[
79,
80
],
[
79,
81
],
[
78,
82
],
[
77,
83
],
[
79,
84
],
[
27,
85
],
[
85,
86
],
[
0,
87
],
[
87,
88
],
[
87,
89
]
] | [
"import static java.lang.Integer.parseInt;\n\npublic class Main {\n public static void main (String[] args) {\n String line = new java.util.Scanner ( System.in ).nextLine();\n String hour = watch (line);\n System.out.println(hour);\n }\n public static String watch(String line){\n int hour,min,second;\n second = parseInt(line);\n if (second < 0 || second > 86400) {\n System.out.println(\"Constraints Error\");\n return null;\n }\n hour = second / 3600;\n min = (second % 3600 ) / 60;\n second = second % 60;\n \n return hour + \":\" + min + \":\" + second;\n }\n}",
"import static java.lang.Integer.parseInt;",
"import static java.lang.Integer.parseInt;",
"import static java.lang.Integer.parseInt;",
"public class Main {\n public static void main (String[] args) {\n String line = new java.util.Scanner ( System.in ).nextLine();\n String hour = watch (line);\n System.out.println(hour);\n }\n public static String watch(String line){\n int hour,min,second;\n second = parseInt(line);\n if (second < 0 || second > 86400) {\n System.out.println(\"Constraints Error\");\n return null;\n }\n hour = second / 3600;\n min = (second % 3600 ) / 60;\n second = second % 60;\n \n return hour + \":\" + min + \":\" + second;\n }\n}",
"Main",
"public static void main (String[] args) {\n String line = new java.util.Scanner ( System.in ).nextLine();\n String hour = watch (line);\n System.out.println(hour);\n }",
"main",
"{\n String line = new java.util.Scanner ( System.in ).nextLine();\n String hour = watch (line);\n System.out.println(hour);\n }",
"String line = new java.util.Scanner ( System.in ).nextLine();",
"line",
"new java.util.Scanner ( System.in ).nextLine()",
"new java.util.Scanner ( System.in ).nextLine",
"new java.util.Scanner ( System.in )",
"String hour = watch (line);",
"hour",
"watch (line)",
"watch",
"line",
"System.out.println(hour)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour",
"String[] args",
"args",
"public static String watch(String line){\n int hour,min,second;\n second = parseInt(line);\n if (second < 0 || second > 86400) {\n System.out.println(\"Constraints Error\");\n return null;\n }\n hour = second / 3600;\n min = (second % 3600 ) / 60;\n second = second % 60;\n \n return hour + \":\" + min + \":\" + second;\n }",
"watch",
"{\n int hour,min,second;\n second = parseInt(line);\n if (second < 0 || second > 86400) {\n System.out.println(\"Constraints Error\");\n return null;\n }\n hour = second / 3600;\n min = (second % 3600 ) / 60;\n second = second % 60;\n \n return hour + \":\" + min + \":\" + second;\n }",
"int hour",
"hour",
"min",
"min",
"second;",
"second",
"second = parseInt(line)",
"second",
"parseInt(line)",
"parseInt",
"line",
"if (second < 0 || second > 86400) {\n System.out.println(\"Constraints Error\");\n return null;\n }",
"second < 0 || second > 86400",
"second < 0",
"second",
"0",
"second > 86400",
"second",
"86400",
"{\n System.out.println(\"Constraints Error\");\n return null;\n }",
"System.out.println(\"Constraints Error\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Constraints Error\"",
"return null;",
"null",
"hour = second / 3600",
"hour",
"second / 3600",
"second",
"3600",
"min = (second % 3600 ) / 60",
"min",
"(second % 3600 ) / 60",
"(second % 3600 )",
"second",
"3600",
"60",
"second = second % 60",
"second",
"second % 60",
"second",
"60",
"return hour + \":\" + min + \":\" + second;",
"hour + \":\" + min + \":\" + second",
"\":\"",
"min",
"hour + \":\" + min + \":\" + second",
"hour",
"\":\"",
"min",
"\":\"",
"second",
"String line",
"line",
"public class Main {\n public static void main (String[] args) {\n String line = new java.util.Scanner ( System.in ).nextLine();\n String hour = watch (line);\n System.out.println(hour);\n }\n public static String watch(String line){\n int hour,min,second;\n second = parseInt(line);\n if (second < 0 || second > 86400) {\n System.out.println(\"Constraints Error\");\n return null;\n }\n hour = second / 3600;\n min = (second % 3600 ) / 60;\n second = second % 60;\n \n return hour + \":\" + min + \":\" + second;\n }\n}",
"public class Main {\n public static void main (String[] args) {\n String line = new java.util.Scanner ( System.in ).nextLine();\n String hour = watch (line);\n System.out.println(hour);\n }\n public static String watch(String line){\n int hour,min,second;\n second = parseInt(line);\n if (second < 0 || second > 86400) {\n System.out.println(\"Constraints Error\");\n return null;\n }\n hour = second / 3600;\n min = (second % 3600 ) / 60;\n second = second % 60;\n \n return hour + \":\" + min + \":\" + second;\n }\n}",
"Main"
] | import static java.lang.Integer.parseInt;
public class Main {
public static void main (String[] args) {
String line = new java.util.Scanner ( System.in ).nextLine();
String hour = watch (line);
System.out.println(hour);
}
public static String watch(String line){
int hour,min,second;
second = parseInt(line);
if (second < 0 || second > 86400) {
System.out.println("Constraints Error");
return null;
}
hour = second / 3600;
min = (second % 3600 ) / 60;
second = second % 60;
return hour + ":" + min + ":" + second;
}
} |
[
7,
15,
13,
17,
6,
13,
41,
13,
20,
41,
13,
12,
13,
30,
0,
13,
4,
18,
13,
41,
13,
2,
13,
2,
17,
17,
41,
13,
2,
13,
2,
17,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
60,
5
],
[
60,
6
],
[
6,
7
],
[
6,
8
],
[
60,
9
],
[
9,
10
],
[
60,
11
],
[
11,
12
],
[
11,
13
],
[
13,
14
],
[
14,
15
],
[
14,
16
],
[
16,
17
],
[
17,
18
],
[
13,
19
],
[
19,
20
],
[
19,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
23,
25
],
[
13,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
30,
32
],
[
13,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
13,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
40,
42
],
[
13,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
43,
48
],
[
51,
49
],
[
49,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
49,
55
],
[
51,
56
],
[
11,
57
],
[
57,
58
],
[
0,
59
],
[
59,
60
],
[
59,
61
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n\tstatic Scanner sc = new Scanner(System.in);\n\tstatic int ip;\n\tpublic static void main(String[] args) {\n\t\tip=sc.nextInt();\n\t\tint h = ip/(60*60);int tmp = ip%(60*60);\n\t\tint m = tmp/60;\n\t\tint s=tmp%60;\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t\t\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\tstatic Scanner sc = new Scanner(System.in);\n\tstatic int ip;\n\tpublic static void main(String[] args) {\n\t\tip=sc.nextInt();\n\t\tint h = ip/(60*60);int tmp = ip%(60*60);\n\t\tint m = tmp/60;\n\t\tint s=tmp%60;\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t\t\n\t}\n\n}",
"Main",
"static Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"static int ip;",
"ip",
"public static void main(String[] args) {\n\t\tip=sc.nextInt();\n\t\tint h = ip/(60*60);int tmp = ip%(60*60);\n\t\tint m = tmp/60;\n\t\tint s=tmp%60;\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t\t\n\t}",
"main",
"{\n\t\tip=sc.nextInt();\n\t\tint h = ip/(60*60);int tmp = ip%(60*60);\n\t\tint m = tmp/60;\n\t\tint s=tmp%60;\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t\t\n\t}",
"ip=sc.nextInt()",
"ip",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int h = ip/(60*60);",
"h",
"ip/(60*60)",
"ip",
"(60*60)",
"60",
"60",
"int tmp = ip%(60*60);",
"tmp",
"ip%(60*60)",
"ip",
"(60*60)",
"60",
"60",
"int m = tmp/60;",
"m",
"tmp/60",
"tmp",
"60",
"int s=tmp%60;",
"s",
"tmp%60",
"tmp",
"60",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main {\n\tstatic Scanner sc = new Scanner(System.in);\n\tstatic int ip;\n\tpublic static void main(String[] args) {\n\t\tip=sc.nextInt();\n\t\tint h = ip/(60*60);int tmp = ip%(60*60);\n\t\tint m = tmp/60;\n\t\tint s=tmp%60;\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t\t\n\t}\n\n}",
"public class Main {\n\tstatic Scanner sc = new Scanner(System.in);\n\tstatic int ip;\n\tpublic static void main(String[] args) {\n\t\tip=sc.nextInt();\n\t\tint h = ip/(60*60);int tmp = ip%(60*60);\n\t\tint m = tmp/60;\n\t\tint s=tmp%60;\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t\t\n\t}\n\n}",
"Main"
] | import java.util.Scanner;
public class Main {
static Scanner sc = new Scanner(System.in);
static int ip;
public static void main(String[] args) {
ip=sc.nextInt();
int h = ip/(60*60);int tmp = ip%(60*60);
int m = tmp/60;
int s=tmp%60;
System.out.println(h+":"+m+":"+s);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
29,
2,
13,
2,
17,
17,
23,
13,
12,
13,
30,
29,
2,
2,
13,
2,
17,
17,
17,
23,
13,
12,
13,
30,
29,
2,
13,
17,
23,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
4,
13,
13,
17,
4,
13,
13,
17,
4,
13,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
10,
11
],
[
10,
12
],
[
12,
13
],
[
12,
14
],
[
6,
15
],
[
15,
16
],
[
4,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
24,
26
],
[
21,
27
],
[
17,
28
],
[
28,
29
],
[
4,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
30,
37
],
[
37,
38
],
[
4,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
41,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
48,
49
],
[
41,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
50,
55
],
[
58,
56
],
[
56,
57
],
[
57,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
58,
62
],
[
57,
63
],
[
63,
64
],
[
63,
65
],
[
56,
66
],
[
58,
67
],
[
67,
68
],
[
67,
69
],
[
39,
70
],
[
70,
71
]
] | [
"import java.util.Scanner;\n\nclass Main{\n static int hour(int x){\n\treturn (x /(60 * 60));\n }\n static int minu(int x){\n\treturn((x % (60 * 60)) / 60);\n }\n static int sec(int x){\n\treturn(x % 60);\n }\n public static void main(String[] args){\n\tScanner stdIn = new Scanner(System.in);\n\tint x = stdIn.nextInt();\n\tSystem.out.println(hour(x) + \":\" + minu(x) + \":\" + sec(x));\n }\n \n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main{\n static int hour(int x){\n\treturn (x /(60 * 60));\n }\n static int minu(int x){\n\treturn((x % (60 * 60)) / 60);\n }\n static int sec(int x){\n\treturn(x % 60);\n }\n public static void main(String[] args){\n\tScanner stdIn = new Scanner(System.in);\n\tint x = stdIn.nextInt();\n\tSystem.out.println(hour(x) + \":\" + minu(x) + \":\" + sec(x));\n }\n \n}",
"Main",
"static int hour(int x){\n\treturn (x /(60 * 60));\n }",
"hour",
"{\n\treturn (x /(60 * 60));\n }",
"return (x /(60 * 60));",
"(x /(60 * 60))",
"x",
"(60 * 60)",
"60",
"60",
"int x",
"x",
"static int minu(int x){\n\treturn((x % (60 * 60)) / 60);\n }",
"minu",
"{\n\treturn((x % (60 * 60)) / 60);\n }",
"return((x % (60 * 60)) / 60);",
"((x % (60 * 60)) / 60)",
"(x % (60 * 60))",
"x",
"(60 * 60)",
"60",
"60",
"60",
"int x",
"x",
"static int sec(int x){\n\treturn(x % 60);\n }",
"sec",
"{\n\treturn(x % 60);\n }",
"return(x % 60);",
"(x % 60)",
"x",
"60",
"int x",
"x",
"public static void main(String[] args){\n\tScanner stdIn = new Scanner(System.in);\n\tint x = stdIn.nextInt();\n\tSystem.out.println(hour(x) + \":\" + minu(x) + \":\" + sec(x));\n }",
"main",
"{\n\tScanner stdIn = new Scanner(System.in);\n\tint x = stdIn.nextInt();\n\tSystem.out.println(hour(x) + \":\" + minu(x) + \":\" + sec(x));\n }",
"Scanner stdIn = new Scanner(System.in);",
"stdIn",
"new Scanner(System.in)",
"int x = stdIn.nextInt();",
"x",
"stdIn.nextInt()",
"stdIn.nextInt",
"stdIn",
"System.out.println(hour(x) + \":\" + minu(x) + \":\" + sec(x))",
"System.out.println",
"System.out",
"System",
"System.out",
"hour(x) + \":\" + minu(x) + \":\" + sec(x)",
"\":\"",
"minu(x)",
"hour(x) + \":\" + minu(x) + \":\" + sec(x)",
"hour(x)",
"hour",
"x",
"\":\"",
"minu(x)",
"minu",
"x",
"\":\"",
"sec(x)",
"sec",
"x",
"String[] args",
"args"
] | import java.util.Scanner;
class Main{
static int hour(int x){
return (x /(60 * 60));
}
static int minu(int x){
return((x % (60 * 60)) / 60);
}
static int sec(int x){
return(x % 60);
}
public static void main(String[] args){
Scanner stdIn = new Scanner(System.in);
int x = stdIn.nextInt();
System.out.println(hour(x) + ":" + minu(x) + ":" + sec(x));
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
14,
2,
2,
13,
17,
2,
13,
17,
30,
41,
13,
2,
13,
17,
0,
13,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
19,
22
],
[
8,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
24,
28
],
[
28,
29
],
[
28,
30
],
[
23,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
34,
36
],
[
31,
37
],
[
37,
38
],
[
37,
39
],
[
31,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
42,
44
],
[
31,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
47,
49
],
[
31,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
50,
55
],
[
58,
56
],
[
56,
57
],
[
57,
58
],
[
58,
59
],
[
58,
60
],
[
57,
61
],
[
56,
62
],
[
58,
63
],
[
6,
64
],
[
64,
65
]
] | [
"import java.io.*;\n\nclass Main {\n public static void main(String[] args) throws IOException {\n BufferedReader reader =\n new BufferedReader(new InputStreamReader(System.in));\n\n String line = reader.readLine();\n int S = Integer.parseInt(line);\n if (S >= 0 && S < 86400) {\n int hour = S / 3600;\n S %= 3600;\n int minute = S / 60;\n int second = S % 60;\n System.out.println(hour + \":\" + minute + \":\" + second);\n }\n }\n}",
"import java.io.*;",
"io.*",
"java",
"class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader reader =\n new BufferedReader(new InputStreamReader(System.in));\n\n String line = reader.readLine();\n int S = Integer.parseInt(line);\n if (S >= 0 && S < 86400) {\n int hour = S / 3600;\n S %= 3600;\n int minute = S / 60;\n int second = S % 60;\n System.out.println(hour + \":\" + minute + \":\" + second);\n }\n }\n}",
"Main",
"public static void main(String[] args) throws IOException {\n BufferedReader reader =\n new BufferedReader(new InputStreamReader(System.in));\n\n String line = reader.readLine();\n int S = Integer.parseInt(line);\n if (S >= 0 && S < 86400) {\n int hour = S / 3600;\n S %= 3600;\n int minute = S / 60;\n int second = S % 60;\n System.out.println(hour + \":\" + minute + \":\" + second);\n }\n }",
"main",
"{\n BufferedReader reader =\n new BufferedReader(new InputStreamReader(System.in));\n\n String line = reader.readLine();\n int S = Integer.parseInt(line);\n if (S >= 0 && S < 86400) {\n int hour = S / 3600;\n S %= 3600;\n int minute = S / 60;\n int second = S % 60;\n System.out.println(hour + \":\" + minute + \":\" + second);\n }\n }",
"BufferedReader reader =\n new BufferedReader(new InputStreamReader(System.in));",
"reader",
"new BufferedReader(new InputStreamReader(System.in))",
"String line = reader.readLine();",
"line",
"reader.readLine()",
"reader.readLine",
"reader",
"int S = Integer.parseInt(line);",
"S",
"Integer.parseInt(line)",
"Integer.parseInt",
"Integer",
"line",
"if (S >= 0 && S < 86400) {\n int hour = S / 3600;\n S %= 3600;\n int minute = S / 60;\n int second = S % 60;\n System.out.println(hour + \":\" + minute + \":\" + second);\n }",
"S >= 0 && S < 86400",
"S >= 0",
"S",
"0",
"S < 86400",
"S",
"86400",
"{\n int hour = S / 3600;\n S %= 3600;\n int minute = S / 60;\n int second = S % 60;\n System.out.println(hour + \":\" + minute + \":\" + second);\n }",
"int hour = S / 3600;",
"hour",
"S / 3600",
"S",
"3600",
"S %= 3600",
"S",
"3600",
"int minute = S / 60;",
"minute",
"S / 60",
"S",
"60",
"int second = S % 60;",
"second",
"S % 60",
"S",
"60",
"System.out.println(hour + \":\" + minute + \":\" + second)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour + \":\" + minute + \":\" + second",
"\":\"",
"minute",
"hour + \":\" + minute + \":\" + second",
"hour",
"\":\"",
"minute",
"\":\"",
"second",
"String[] args",
"args"
] | import java.io.*;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader reader =
new BufferedReader(new InputStreamReader(System.in));
String line = reader.readLine();
int S = Integer.parseInt(line);
if (S >= 0 && S < 86400) {
int hour = S / 3600;
S %= 3600;
int minute = S / 60;
int second = S % 60;
System.out.println(hour + ":" + minute + ":" + second);
}
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
38,
5,
13,
30,
4,
18,
18,
13,
13,
4,
18,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
10,
11
],
[
10,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
16,
17
],
[
16,
18
],
[
18,
19
],
[
19,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
19,
24
],
[
24,
25
],
[
25,
26
],
[
15,
27
],
[
27,
28
],
[
28,
29
],
[
28,
30
],
[
27,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
33,
36
],
[
36,
37
],
[
37,
38
],
[
27,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
41,
43
],
[
27,
44
],
[
44,
45
],
[
44,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
46,
50
],
[
27,
51
],
[
51,
52
],
[
51,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
27,
58
],
[
58,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
58,
63
],
[
66,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
65,
69
],
[
64,
70
],
[
66,
71
],
[
12,
72
],
[
72,
73
]
] | [
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.io.IOException;\n\nclass Main{\n public static void main(String[] args){\n try{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(br.readLine());\n int h = x/3600;\n int m = (x%3600)/60;\n int s = ((x%3600)%60);\n System.out.println(h + \":\" + m + \":\" + s);\n } catch(IOException e){\n System.err.println(e.toString());\n }\n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"class Main{\n public static void main(String[] args){\n try{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(br.readLine());\n int h = x/3600;\n int m = (x%3600)/60;\n int s = ((x%3600)%60);\n System.out.println(h + \":\" + m + \":\" + s);\n } catch(IOException e){\n System.err.println(e.toString());\n }\n }\n}",
"Main",
"public static void main(String[] args){\n try{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(br.readLine());\n int h = x/3600;\n int m = (x%3600)/60;\n int s = ((x%3600)%60);\n System.out.println(h + \":\" + m + \":\" + s);\n } catch(IOException e){\n System.err.println(e.toString());\n }\n }",
"main",
"{\n try{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(br.readLine());\n int h = x/3600;\n int m = (x%3600)/60;\n int s = ((x%3600)%60);\n System.out.println(h + \":\" + m + \":\" + s);\n } catch(IOException e){\n System.err.println(e.toString());\n }\n }",
"try{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(br.readLine());\n int h = x/3600;\n int m = (x%3600)/60;\n int s = ((x%3600)%60);\n System.out.println(h + \":\" + m + \":\" + s);\n } catch(IOException e){\n System.err.println(e.toString());\n }",
"catch(IOException e){\n System.err.println(e.toString());\n }",
"IOException e",
"{\n System.err.println(e.toString());\n }",
"System.err.println(e.toString())",
"System.err.println",
"System.err",
"System",
"System.err",
"e.toString()",
"e.toString",
"e",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n int x = Integer.parseInt(br.readLine());\n int h = x/3600;\n int m = (x%3600)/60;\n int s = ((x%3600)%60);\n System.out.println(h + \":\" + m + \":\" + s);\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"int x = Integer.parseInt(br.readLine());",
"x",
"Integer.parseInt(br.readLine())",
"Integer.parseInt",
"Integer",
"br.readLine()",
"br.readLine",
"br",
"int h = x/3600;",
"h",
"x/3600",
"x",
"3600",
"int m = (x%3600)/60;",
"m",
"(x%3600)/60",
"(x%3600)",
"x",
"3600",
"60",
"int s = ((x%3600)%60);",
"s",
"((x%3600)%60)",
"(x%3600)",
"x",
"3600",
"60",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args"
] | import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
class Main{
public static void main(String[] args){
try{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int x = Integer.parseInt(br.readLine());
int h = x/3600;
int m = (x%3600)/60;
int s = ((x%3600)%60);
System.out.println(h + ":" + m + ":" + s);
} catch(IOException e){
System.err.println(e.toString());
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
2,
17,
17,
41,
13,
2,
2,
13,
2,
17,
17,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
21,
22
],
[
21,
23
],
[
8,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
29,
31
],
[
26,
32
],
[
8,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
8,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
38,
43
],
[
46,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
45,
49
],
[
44,
50
],
[
46,
51
],
[
6,
52
],
[
52,
53
]
] | [
"import java.util.*;\n\nclass Main{\n public static void main(String[] args){\n Scanner scanner = new Scanner(System.in);\n int i = scanner.nextInt();\n int h = i/(60*60);\n int m = (i%(60*60))/60;\n int s = (i%(60));\n System.out.println(h + \":\" + m + \":\" + s);\n }\n}",
"import java.util.*;",
"util.*",
"java",
"class Main{\n public static void main(String[] args){\n Scanner scanner = new Scanner(System.in);\n int i = scanner.nextInt();\n int h = i/(60*60);\n int m = (i%(60*60))/60;\n int s = (i%(60));\n System.out.println(h + \":\" + m + \":\" + s);\n }\n}",
"Main",
"public static void main(String[] args){\n Scanner scanner = new Scanner(System.in);\n int i = scanner.nextInt();\n int h = i/(60*60);\n int m = (i%(60*60))/60;\n int s = (i%(60));\n System.out.println(h + \":\" + m + \":\" + s);\n }",
"main",
"{\n Scanner scanner = new Scanner(System.in);\n int i = scanner.nextInt();\n int h = i/(60*60);\n int m = (i%(60*60))/60;\n int s = (i%(60));\n System.out.println(h + \":\" + m + \":\" + s);\n }",
"Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"int i = scanner.nextInt();",
"i",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"int h = i/(60*60);",
"h",
"i/(60*60)",
"i",
"(60*60)",
"60",
"60",
"int m = (i%(60*60))/60;",
"m",
"(i%(60*60))/60",
"(i%(60*60))",
"i",
"(60*60)",
"60",
"60",
"60",
"int s = (i%(60));",
"s",
"(i%(60))",
"i",
"(60)",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args"
] | import java.util.*;
class Main{
public static void main(String[] args){
Scanner scanner = new Scanner(System.in);
int i = scanner.nextInt();
int h = i/(60*60);
int m = (i%(60*60))/60;
int s = (i%(60));
System.out.println(h + ":" + m + ":" + s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
41,
13,
41,
13,
41,
13,
12,
13,
30,
41,
13,
13,
0,
13,
2,
13,
17,
0,
13,
17,
0,
13,
2,
13,
17,
0,
13,
17,
0,
13,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
20,
4,
18,
13,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
10,
11
],
[
10,
12
],
[
12,
13
],
[
10,
14
],
[
14,
15
],
[
10,
16
],
[
16,
17
],
[
10,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
20,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
26,
28
],
[
20,
29
],
[
29,
30
],
[
29,
31
],
[
20,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
34,
36
],
[
20,
37
],
[
37,
38
],
[
37,
39
],
[
20,
40
],
[
40,
41
],
[
40,
42
],
[
20,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
43,
48
],
[
51,
49
],
[
49,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
49,
55
],
[
51,
56
],
[
18,
57
],
[
57,
58
],
[
0,
59
],
[
59,
60
],
[
59,
61
],
[
61,
62
],
[
61,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
63,
67
],
[
67,
68
],
[
67,
69
],
[
69,
70
],
[
70,
71
],
[
69,
72
],
[
72,
73
],
[
73,
74
],
[
63,
75
],
[
75,
76
],
[
75,
77
],
[
63,
78
],
[
78,
79
],
[
79,
80
],
[
78,
81
],
[
61,
82
],
[
82,
83
]
] | [
"import java.util.*;\nimport java.lang.*;\nimport java.io.*;\n\n/* Name of the class has to be \"Main\" only if the class is public. */\nclass Clock{\n\tint h,m,s;\n\tvoid doit(int t){\n\t\tint tmp = t;\n\t\ts = tmp % 60;\n\t\ttmp /= 60;\n\t\tm = tmp % 60;\n\t\ttmp /= 60;\n\t\th = tmp;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}\n\nclass Main{\n\tpublic static void main (String[] args) throws java.lang.Exception{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint t = Integer.parseInt(scan.next());\n\t\tClock c = new Clock();\n\t\tc.doit(t);\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"import java.lang.*;",
"lang.*",
"java",
"import java.io.*;",
"io.*",
"java",
"class Clock{\n\tint h,m,s;\n\tvoid doit(int t){\n\t\tint tmp = t;\n\t\ts = tmp % 60;\n\t\ttmp /= 60;\n\t\tm = tmp % 60;\n\t\ttmp /= 60;\n\t\th = tmp;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}\n}",
"Clock",
"int h",
"h",
"m",
"m",
"s;",
"s",
"void doit(int t){\n\t\tint tmp = t;\n\t\ts = tmp % 60;\n\t\ttmp /= 60;\n\t\tm = tmp % 60;\n\t\ttmp /= 60;\n\t\th = tmp;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"doit",
"{\n\t\tint tmp = t;\n\t\ts = tmp % 60;\n\t\ttmp /= 60;\n\t\tm = tmp % 60;\n\t\ttmp /= 60;\n\t\th = tmp;\n\t\tSystem.out.println(h + \":\" + m + \":\" + s);\n\t}",
"int tmp = t;",
"tmp",
"t",
"s = tmp % 60",
"s",
"tmp % 60",
"tmp",
"60",
"tmp /= 60",
"tmp",
"60",
"m = tmp % 60",
"m",
"tmp % 60",
"tmp",
"60",
"tmp /= 60",
"tmp",
"60",
"h = tmp",
"h",
"tmp",
"System.out.println(h + \":\" + m + \":\" + s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" + m + \":\" + s",
"\":\"",
"m",
"h + \":\" + m + \":\" + s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"int t",
"t",
"class Main{\n\tpublic static void main (String[] args) throws java.lang.Exception{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint t = Integer.parseInt(scan.next());\n\t\tClock c = new Clock();\n\t\tc.doit(t);\n\t}\n}",
"Main",
"public static void main (String[] args) throws java.lang.Exception{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint t = Integer.parseInt(scan.next());\n\t\tClock c = new Clock();\n\t\tc.doit(t);\n\t}",
"main",
"{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint t = Integer.parseInt(scan.next());\n\t\tClock c = new Clock();\n\t\tc.doit(t);\n\t}",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int t = Integer.parseInt(scan.next());",
"t",
"Integer.parseInt(scan.next())",
"Integer.parseInt",
"Integer",
"scan.next()",
"scan.next",
"scan",
"Clock c = new Clock();",
"c",
"new Clock()",
"c.doit(t)",
"c.doit",
"c",
"t",
"String[] args",
"args"
] | import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Clock{
int h,m,s;
void doit(int t){
int tmp = t;
s = tmp % 60;
tmp /= 60;
m = tmp % 60;
tmp /= 60;
h = tmp;
System.out.println(h + ":" + m + ":" + s);
}
}
class Main{
public static void main (String[] args) throws java.lang.Exception{
Scanner scan = new Scanner(System.in);
int t = Integer.parseInt(scan.next());
Clock c = new Clock();
c.doit(t);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
2,
13,
17,
17,
41,
13,
2,
2,
13,
2,
13,
17,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
10,
11
],
[
10,
12
],
[
0,
13
],
[
71,
14
],
[
71,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
18,
20
],
[
17,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
24,
25
],
[
23,
26
],
[
26,
27
],
[
27,
28
],
[
17,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
31,
33
],
[
17,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
39,
41
],
[
36,
42
],
[
17,
43
],
[
43,
44
],
[
43,
45
],
[
46,
46
],
[
46,
47
],
[
46,
48
],
[
48,
49
],
[
48,
50
],
[
46,
51
],
[
51,
52
],
[
51,
53
],
[
17,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
54,
59
],
[
62,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
60,
66
],
[
62,
67
],
[
15,
68
],
[
68,
69
],
[
0,
70
],
[
70,
71
],
[
70,
72
]
] | [
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.util.regex.Pattern;\nimport java.util.regex.Matcher;\n\npublic class Main {\n\tpublic static void main(String args[]) throws Exception {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint input = Integer.parseInt(br.readLine());\n\n\t\tint hour = input / 3600;\n\t\tint minutes = (input - hour * 3600) / 60;\n\t\tint seconds = input - (hour * 3600) - (minutes * 60);\n\n\t\tSystem.out.println(hour + \":\" + minutes + \":\" + seconds);\n\n\t}\n\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"import java.util.regex.Pattern;",
"Pattern",
"java.util.regex",
"import java.util.regex.Matcher;",
"Matcher",
"java.util.regex",
"public class Main {\n\tpublic static void main(String args[]) throws Exception {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint input = Integer.parseInt(br.readLine());\n\n\t\tint hour = input / 3600;\n\t\tint minutes = (input - hour * 3600) / 60;\n\t\tint seconds = input - (hour * 3600) - (minutes * 60);\n\n\t\tSystem.out.println(hour + \":\" + minutes + \":\" + seconds);\n\n\t}\n\n}",
"Main",
"public static void main(String args[]) throws Exception {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint input = Integer.parseInt(br.readLine());\n\n\t\tint hour = input / 3600;\n\t\tint minutes = (input - hour * 3600) / 60;\n\t\tint seconds = input - (hour * 3600) - (minutes * 60);\n\n\t\tSystem.out.println(hour + \":\" + minutes + \":\" + seconds);\n\n\t}",
"main",
"{\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint input = Integer.parseInt(br.readLine());\n\n\t\tint hour = input / 3600;\n\t\tint minutes = (input - hour * 3600) / 60;\n\t\tint seconds = input - (hour * 3600) - (minutes * 60);\n\n\t\tSystem.out.println(hour + \":\" + minutes + \":\" + seconds);\n\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"int input = Integer.parseInt(br.readLine());",
"input",
"Integer.parseInt(br.readLine())",
"Integer.parseInt",
"Integer",
"br.readLine()",
"br.readLine",
"br",
"int hour = input / 3600;",
"hour",
"input / 3600",
"input",
"3600",
"int minutes = (input - hour * 3600) / 60;",
"minutes",
"(input - hour * 3600) / 60",
"(input - hour * 3600)",
"input",
"hour * 3600",
"hour",
"3600",
"60",
"int seconds = input - (hour * 3600) - (minutes * 60);",
"seconds",
"input - (hour * 3600) - (minutes * 60)",
"input - (hour * 3600) - (minutes * 60)",
"input",
"(hour * 3600)",
"hour",
"3600",
"(minutes * 60)",
"minutes",
"60",
"System.out.println(hour + \":\" + minutes + \":\" + seconds)",
"System.out.println",
"System.out",
"System",
"System.out",
"hour + \":\" + minutes + \":\" + seconds",
"\":\"",
"minutes",
"hour + \":\" + minutes + \":\" + seconds",
"hour",
"\":\"",
"minutes",
"\":\"",
"seconds",
"String args[]",
"args",
"public class Main {\n\tpublic static void main(String args[]) throws Exception {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint input = Integer.parseInt(br.readLine());\n\n\t\tint hour = input / 3600;\n\t\tint minutes = (input - hour * 3600) / 60;\n\t\tint seconds = input - (hour * 3600) - (minutes * 60);\n\n\t\tSystem.out.println(hour + \":\" + minutes + \":\" + seconds);\n\n\t}\n\n}",
"public class Main {\n\tpublic static void main(String args[]) throws Exception {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tint input = Integer.parseInt(br.readLine());\n\n\t\tint hour = input / 3600;\n\t\tint minutes = (input - hour * 3600) / 60;\n\t\tint seconds = input - (hour * 3600) - (minutes * 60);\n\n\t\tSystem.out.println(hour + \":\" + minutes + \":\" + seconds);\n\n\t}\n\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
public class Main {
public static void main(String args[]) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int input = Integer.parseInt(br.readLine());
int hour = input / 3600;
int minutes = (input - hour * 3600) / 60;
int seconds = input - (hour * 3600) - (minutes * 60);
System.out.println(hour + ":" + minutes + ":" + seconds);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
2,
13,
17,
17,
41,
13,
2,
13,
17,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
56,
5
],
[
56,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
27,
29
],
[
24,
30
],
[
8,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
33,
35
],
[
8,
36
],
[
36,
37
],
[
37,
38
],
[
8,
39
],
[
39,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
39,
44
],
[
47,
45
],
[
45,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
46,
50
],
[
45,
51
],
[
47,
52
],
[
6,
53
],
[
53,
54
],
[
0,
55
],
[
55,
56
],
[
55,
57
]
] | [
"import java.util.Scanner;\npublic class Main{\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc=new Scanner(System.in);\n\t\tint time=sc.nextInt();\n\n\t\tint h=time/3600;\n\t\tint m=(time-h*3600)/60;\n\t\tint s=time%60;\n\t\t\n\t\tsc.close();\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc=new Scanner(System.in);\n\t\tint time=sc.nextInt();\n\n\t\tint h=time/3600;\n\t\tint m=(time-h*3600)/60;\n\t\tint s=time%60;\n\t\t\n\t\tsc.close();\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\n\t\tScanner sc=new Scanner(System.in);\n\t\tint time=sc.nextInt();\n\n\t\tint h=time/3600;\n\t\tint m=(time-h*3600)/60;\n\t\tint s=time%60;\n\t\t\n\t\tsc.close();\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"main",
"{\n\n\t\tScanner sc=new Scanner(System.in);\n\t\tint time=sc.nextInt();\n\n\t\tint h=time/3600;\n\t\tint m=(time-h*3600)/60;\n\t\tint s=time%60;\n\t\t\n\t\tsc.close();\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"Scanner sc=new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int time=sc.nextInt();",
"time",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int h=time/3600;",
"h",
"time/3600",
"time",
"3600",
"int m=(time-h*3600)/60;",
"m",
"(time-h*3600)/60",
"(time-h*3600)",
"time",
"h*3600",
"h",
"3600",
"60",
"int s=time%60;",
"s",
"time%60",
"time",
"60",
"sc.close()",
"sc.close",
"sc",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args",
"public class Main{\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc=new Scanner(System.in);\n\t\tint time=sc.nextInt();\n\n\t\tint h=time/3600;\n\t\tint m=(time-h*3600)/60;\n\t\tint s=time%60;\n\t\t\n\t\tsc.close();\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n\n}",
"public class Main{\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc=new Scanner(System.in);\n\t\tint time=sc.nextInt();\n\n\t\tint h=time/3600;\n\t\tint m=(time-h*3600)/60;\n\t\tint s=time%60;\n\t\t\n\t\tsc.close();\n\t\t\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n\n}",
"Main"
] | import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int time=sc.nextInt();
int h=time/3600;
int m=(time-h*3600)/60;
int s=time%60;
sc.close();
System.out.println(h+":"+m+":"+s);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
2,
17,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
17,
13,
13,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
48,
5
],
[
48,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
21,
22
],
[
21,
23
],
[
8,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
27,
28
],
[
27,
29
],
[
26,
30
],
[
8,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
33,
35
],
[
8,
36
],
[
36,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
36,
41
],
[
36,
42
],
[
36,
43
],
[
36,
44
],
[
6,
45
],
[
45,
46
],
[
0,
47
],
[
47,
48
],
[
47,
49
]
] | [
"import java.util.Scanner;\n\npublic class Main\n{\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner sc = new Scanner(System.in);\n\t int second = sc.nextInt();\n\n\t int hour = second / (60*60);\n\t\tint minutes = (second % 3600) / 60;\n\t\tint sec = second % 60;\n\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", hour, minutes, sec);\n\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main\n{\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner sc = new Scanner(System.in);\n\t int second = sc.nextInt();\n\n\t int hour = second / (60*60);\n\t\tint minutes = (second % 3600) / 60;\n\t\tint sec = second % 60;\n\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", hour, minutes, sec);\n\n\t}\n\n}",
"Main",
"public static void main(String[] args)\n\t{\n\t\tScanner sc = new Scanner(System.in);\n\t int second = sc.nextInt();\n\n\t int hour = second / (60*60);\n\t\tint minutes = (second % 3600) / 60;\n\t\tint sec = second % 60;\n\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", hour, minutes, sec);\n\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t int second = sc.nextInt();\n\n\t int hour = second / (60*60);\n\t\tint minutes = (second % 3600) / 60;\n\t\tint sec = second % 60;\n\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", hour, minutes, sec);\n\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int second = sc.nextInt();",
"second",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int hour = second / (60*60);",
"hour",
"second / (60*60)",
"second",
"(60*60)",
"60",
"60",
"int minutes = (second % 3600) / 60;",
"minutes",
"(second % 3600) / 60",
"(second % 3600)",
"second",
"3600",
"60",
"int sec = second % 60;",
"sec",
"second % 60",
"second",
"60",
"System.out.printf(\"%d:%d:%d\\n\", hour, minutes, sec)",
"System.out.printf",
"System.out",
"System",
"System.out",
"\"%d:%d:%d\\n\"",
"hour",
"minutes",
"sec",
"String[] args",
"args",
"public class Main\n{\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner sc = new Scanner(System.in);\n\t int second = sc.nextInt();\n\n\t int hour = second / (60*60);\n\t\tint minutes = (second % 3600) / 60;\n\t\tint sec = second % 60;\n\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", hour, minutes, sec);\n\n\t}\n\n}",
"public class Main\n{\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner sc = new Scanner(System.in);\n\t int second = sc.nextInt();\n\n\t int hour = second / (60*60);\n\t\tint minutes = (second % 3600) / 60;\n\t\tint sec = second % 60;\n\n\t\tSystem.out.printf(\"%d:%d:%d\\n\", hour, minutes, sec);\n\n\t}\n\n}",
"Main"
] | import java.util.Scanner;
public class Main
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
int second = sc.nextInt();
int hour = second / (60*60);
int minutes = (second % 3600) / 60;
int sec = second % 60;
System.out.printf("%d:%d:%d\n", hour, minutes, sec);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
41,
13,
17,
41,
13,
39,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
41,
13,
17,
41,
13,
17,
41,
13,
39,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
41,
13,
17,
42,
2,
0,
13,
4,
18,
18,
13,
13,
40,
17,
30,
14,
2,
2,
13,
17,
2,
13,
17,
30,
0,
18,
13,
13,
2,
13,
17,
40,
13,
40,
13,
14,
2,
13,
17,
30,
0,
18,
13,
13,
13,
40,
13,
40,
13,
14,
2,
13,
17,
30,
0,
18,
13,
13,
13,
0,
13,
17,
40,
13,
14,
2,
13,
17,
30,
3,
41,
13,
39,
17,
17,
17,
17,
17,
17,
17,
17,
17,
17,
41,
13,
17,
41,
13,
17,
41,
13,
17,
42,
2,
13,
2,
13,
17,
30,
42,
2,
2,
13,
17,
2,
18,
13,
13,
17,
30,
0,
18,
13,
13,
2,
2,
18,
13,
13,
17,
18,
13,
13,
0,
18,
13,
13,
2,
18,
13,
13,
17,
40,
13,
14,
2,
18,
13,
13,
17,
30,
40,
13,
40,
13,
4,
18,
18,
13,
13,
2,
2,
2,
2,
2,
18,
13,
17,
17,
17,
2,
2,
18,
13,
17,
17,
17,
17,
2,
2,
18,
13,
17,
17,
17,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
244,
5
],
[
244,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
8,
11
],
[
11,
12
],
[
11,
13
],
[
8,
14
],
[
14,
15
],
[
14,
16
],
[
16,
17
],
[
16,
18
],
[
16,
19
],
[
16,
20
],
[
16,
21
],
[
16,
22
],
[
16,
23
],
[
16,
24
],
[
16,
25
],
[
16,
26
],
[
16,
27
],
[
16,
28
],
[
16,
29
],
[
16,
30
],
[
16,
31
],
[
16,
32
],
[
16,
33
],
[
16,
34
],
[
16,
35
],
[
16,
36
],
[
8,
37
],
[
37,
38
],
[
37,
39
],
[
8,
40
],
[
40,
41
],
[
40,
42
],
[
8,
43
],
[
43,
44
],
[
43,
45
],
[
45,
46
],
[
45,
47
],
[
45,
48
],
[
45,
49
],
[
45,
50
],
[
45,
51
],
[
45,
52
],
[
45,
53
],
[
45,
54
],
[
45,
55
],
[
45,
56
],
[
45,
57
],
[
45,
58
],
[
45,
59
],
[
45,
60
],
[
45,
61
],
[
45,
62
],
[
45,
63
],
[
45,
64
],
[
45,
65
],
[
8,
66
],
[
66,
67
],
[
66,
68
],
[
8,
69
],
[
69,
70
],
[
70,
71
],
[
71,
72
],
[
71,
73
],
[
73,
74
],
[
74,
75
],
[
75,
76
],
[
75,
77
],
[
70,
78
],
[
78,
79
],
[
69,
80
],
[
80,
81
],
[
81,
82
],
[
82,
83
],
[
83,
84
],
[
83,
85
],
[
82,
86
],
[
86,
87
],
[
86,
88
],
[
81,
89
],
[
89,
90
],
[
90,
91
],
[
91,
92
],
[
91,
93
],
[
90,
94
],
[
94,
95
],
[
94,
96
],
[
89,
97
],
[
97,
98
],
[
89,
99
],
[
99,
100
],
[
80,
101
],
[
101,
102
],
[
102,
103
],
[
102,
104
],
[
101,
105
],
[
105,
106
],
[
106,
107
],
[
107,
108
],
[
107,
109
],
[
106,
110
],
[
105,
111
],
[
111,
112
],
[
105,
113
],
[
113,
114
],
[
80,
115
],
[
115,
116
],
[
116,
117
],
[
116,
118
],
[
115,
119
],
[
119,
120
],
[
120,
121
],
[
121,
122
],
[
121,
123
],
[
120,
124
],
[
119,
125
],
[
125,
126
],
[
125,
127
],
[
119,
128
],
[
128,
129
],
[
80,
130
],
[
130,
131
],
[
131,
132
],
[
131,
133
],
[
130,
134
],
[
134,
135
],
[
8,
136
],
[
136,
137
],
[
136,
138
],
[
138,
139
],
[
138,
140
],
[
138,
141
],
[
138,
142
],
[
138,
143
],
[
138,
144
],
[
138,
145
],
[
138,
146
],
[
138,
147
],
[
138,
148
],
[
8,
149
],
[
149,
150
],
[
149,
151
],
[
8,
152
],
[
152,
153
],
[
152,
154
],
[
8,
155
],
[
155,
156
],
[
155,
157
],
[
8,
158
],
[
158,
159
],
[
159,
160
],
[
159,
161
],
[
161,
162
],
[
161,
163
],
[
158,
164
],
[
164,
165
],
[
165,
166
],
[
166,
167
],
[
167,
168
],
[
167,
169
],
[
166,
170
],
[
170,
171
],
[
171,
172
],
[
171,
173
],
[
170,
174
],
[
165,
175
],
[
175,
176
],
[
176,
177
],
[
177,
178
],
[
177,
179
],
[
176,
180
],
[
180,
181
],
[
181,
182
],
[
182,
183
],
[
182,
184
],
[
181,
185
],
[
180,
186
],
[
186,
187
],
[
186,
188
],
[
175,
189
],
[
189,
190
],
[
190,
191
],
[
190,
192
],
[
189,
193
],
[
193,
194
],
[
194,
195
],
[
194,
196
],
[
193,
197
],
[
175,
198
],
[
198,
199
],
[
164,
200
],
[
200,
201
],
[
201,
202
],
[
202,
203
],
[
202,
204
],
[
201,
205
],
[
200,
206
],
[
206,
207
],
[
207,
208
],
[
206,
209
],
[
209,
210
],
[
8,
211
],
[
211,
212
],
[
212,
213
],
[
213,
214
],
[
213,
215
],
[
211,
216
],
[
219,
217
],
[
217,
218
],
[
226,
219
],
[
219,
220
],
[
220,
221
],
[
221,
222
],
[
221,
223
],
[
220,
224
],
[
219,
225
],
[
226,
226
],
[
226,
227
],
[
227,
228
],
[
228,
229
],
[
228,
230
],
[
227,
231
],
[
226,
232
],
[
217,
233
],
[
219,
234
],
[
234,
235
],
[
235,
236
],
[
236,
237
],
[
236,
238
],
[
235,
239
],
[
234,
240
],
[
6,
241
],
[
241,
242
],
[
0,
243
],
[
243,
244
],
[
243,
245
]
] | [
"\nimport java.io.*;\npublic class Main {\n\n public static void main(String[] args) throws IOException {\n \n \t// ?¨??????\\??????????????????????????????\n \tint c;\n int keta = 0;\n // int hairetsu_keta[] = new int[4]; hairetsu_keta[0] = 0;hairetsu_keta[1] = 0;hairetsu_keta[2] = 0;hairetsu_keta[3] = 0;\n int hairetsu_keta[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; // ???????????¨???????????¨????????£????????????\n int j = 0;\n int deru = 0; \n // int hairetsu[] = new int[4]; hairetsu[0] = 0; hairetsu[1] = 0; hairetsu[2] = 0; hairetsu[3] = 0;\n int hairetsu[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£???????????????????????????????????°????¢????????????????20???\n \n int i= 0;\n while ((c = System.in.read()) != -1 )\n {\n \t// System.out.println(c);\n \tif ( c > 47 && c < 58) // suuji ga kita\n \t {\n \t\thairetsu[i] = c-48;\n \t\ti++;\n \t\tketa++;\n \n \t\t// System.out.println(\"Qurege_no_kazu_keta_hantaikara:\" + Qurage_no_kazu);\n \t }\n \tif ( c == 10) // return ga kita\n \t{\n \t\thairetsu_keta[j] = keta;\n \t\tderu++; //return ga kitara while wo deru\n \t\tj++; // damekamo\n \t}\n \tif ( c == 32) //space ga kita\n \t{\n \t\n \t\thairetsu_keta[j] = keta;\n \t\tketa = 0;//space ga kitara tsugi no moji no tame keta ha sokomade\n \t\tj++;\n \t}\n \tif (deru > 0)\n \t{\n \t\tbreak;\n \t}\n }\n // ?¨??????\\?????????????????????????????????????????????\n \n // ??°??????????????\\??????\n //int hairetsu_suuchi[] = new int[4]; hairetsu_suuchi[0] = 0; hairetsu_suuchi[1] = 0; hairetsu_suuchi[2] = 0; hairetsu_suuchi[3] = 0;\n int hairetsu_suuchi[] = {0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£????????????\n int k = 0;\n int m = 0;\n int n = 0;\n \n \n while( n < (j + 1))\n {\n while(j > 0 && hairetsu_keta[n] > 0 )\n {\n \thairetsu_suuchi[k] = hairetsu_suuchi[k]*10 + hairetsu[m];\n \thairetsu_keta[n] = hairetsu_keta[n] - 1;\n \tm++;\n }\n if (hairetsu_keta[n] == 0)\n {\n \tn++;\n \tk++;\n }\n } \t\n\n //??°??????????????\\???????????????\n /*\n for (int p = 0; p < k - 1 ; p++)\n \n {\n System.out.println(\"???????????°??????\" + hairetsu_suuchi[p]); \n }\t\n \t*/\t\n System.out.println(\n \t\t (hairetsu_suuchi[0] / 3600) +\":\" +\n \t ((hairetsu_suuchi[0] % 3600) / 60) +\":\" +\n \t (( hairetsu_suuchi[0] % 3600) % 60)\n \t\t );\n \t\n \n }\n\n}",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n\n public static void main(String[] args) throws IOException {\n \n \t// ?¨??????\\??????????????????????????????\n \tint c;\n int keta = 0;\n // int hairetsu_keta[] = new int[4]; hairetsu_keta[0] = 0;hairetsu_keta[1] = 0;hairetsu_keta[2] = 0;hairetsu_keta[3] = 0;\n int hairetsu_keta[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; // ???????????¨???????????¨????????£????????????\n int j = 0;\n int deru = 0; \n // int hairetsu[] = new int[4]; hairetsu[0] = 0; hairetsu[1] = 0; hairetsu[2] = 0; hairetsu[3] = 0;\n int hairetsu[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£???????????????????????????????????°????¢????????????????20???\n \n int i= 0;\n while ((c = System.in.read()) != -1 )\n {\n \t// System.out.println(c);\n \tif ( c > 47 && c < 58) // suuji ga kita\n \t {\n \t\thairetsu[i] = c-48;\n \t\ti++;\n \t\tketa++;\n \n \t\t// System.out.println(\"Qurege_no_kazu_keta_hantaikara:\" + Qurage_no_kazu);\n \t }\n \tif ( c == 10) // return ga kita\n \t{\n \t\thairetsu_keta[j] = keta;\n \t\tderu++; //return ga kitara while wo deru\n \t\tj++; // damekamo\n \t}\n \tif ( c == 32) //space ga kita\n \t{\n \t\n \t\thairetsu_keta[j] = keta;\n \t\tketa = 0;//space ga kitara tsugi no moji no tame keta ha sokomade\n \t\tj++;\n \t}\n \tif (deru > 0)\n \t{\n \t\tbreak;\n \t}\n }\n // ?¨??????\\?????????????????????????????????????????????\n \n // ??°??????????????\\??????\n //int hairetsu_suuchi[] = new int[4]; hairetsu_suuchi[0] = 0; hairetsu_suuchi[1] = 0; hairetsu_suuchi[2] = 0; hairetsu_suuchi[3] = 0;\n int hairetsu_suuchi[] = {0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£????????????\n int k = 0;\n int m = 0;\n int n = 0;\n \n \n while( n < (j + 1))\n {\n while(j > 0 && hairetsu_keta[n] > 0 )\n {\n \thairetsu_suuchi[k] = hairetsu_suuchi[k]*10 + hairetsu[m];\n \thairetsu_keta[n] = hairetsu_keta[n] - 1;\n \tm++;\n }\n if (hairetsu_keta[n] == 0)\n {\n \tn++;\n \tk++;\n }\n } \t\n\n //??°??????????????\\???????????????\n /*\n for (int p = 0; p < k - 1 ; p++)\n \n {\n System.out.println(\"???????????°??????\" + hairetsu_suuchi[p]); \n }\t\n \t*/\t\n System.out.println(\n \t\t (hairetsu_suuchi[0] / 3600) +\":\" +\n \t ((hairetsu_suuchi[0] % 3600) / 60) +\":\" +\n \t (( hairetsu_suuchi[0] % 3600) % 60)\n \t\t );\n \t\n \n }\n\n}",
"Main",
"public static void main(String[] args) throws IOException {\n \n \t// ?¨??????\\??????????????????????????????\n \tint c;\n int keta = 0;\n // int hairetsu_keta[] = new int[4]; hairetsu_keta[0] = 0;hairetsu_keta[1] = 0;hairetsu_keta[2] = 0;hairetsu_keta[3] = 0;\n int hairetsu_keta[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; // ???????????¨???????????¨????????£????????????\n int j = 0;\n int deru = 0; \n // int hairetsu[] = new int[4]; hairetsu[0] = 0; hairetsu[1] = 0; hairetsu[2] = 0; hairetsu[3] = 0;\n int hairetsu[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£???????????????????????????????????°????¢????????????????20???\n \n int i= 0;\n while ((c = System.in.read()) != -1 )\n {\n \t// System.out.println(c);\n \tif ( c > 47 && c < 58) // suuji ga kita\n \t {\n \t\thairetsu[i] = c-48;\n \t\ti++;\n \t\tketa++;\n \n \t\t// System.out.println(\"Qurege_no_kazu_keta_hantaikara:\" + Qurage_no_kazu);\n \t }\n \tif ( c == 10) // return ga kita\n \t{\n \t\thairetsu_keta[j] = keta;\n \t\tderu++; //return ga kitara while wo deru\n \t\tj++; // damekamo\n \t}\n \tif ( c == 32) //space ga kita\n \t{\n \t\n \t\thairetsu_keta[j] = keta;\n \t\tketa = 0;//space ga kitara tsugi no moji no tame keta ha sokomade\n \t\tj++;\n \t}\n \tif (deru > 0)\n \t{\n \t\tbreak;\n \t}\n }\n // ?¨??????\\?????????????????????????????????????????????\n \n // ??°??????????????\\??????\n //int hairetsu_suuchi[] = new int[4]; hairetsu_suuchi[0] = 0; hairetsu_suuchi[1] = 0; hairetsu_suuchi[2] = 0; hairetsu_suuchi[3] = 0;\n int hairetsu_suuchi[] = {0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£????????????\n int k = 0;\n int m = 0;\n int n = 0;\n \n \n while( n < (j + 1))\n {\n while(j > 0 && hairetsu_keta[n] > 0 )\n {\n \thairetsu_suuchi[k] = hairetsu_suuchi[k]*10 + hairetsu[m];\n \thairetsu_keta[n] = hairetsu_keta[n] - 1;\n \tm++;\n }\n if (hairetsu_keta[n] == 0)\n {\n \tn++;\n \tk++;\n }\n } \t\n\n //??°??????????????\\???????????????\n /*\n for (int p = 0; p < k - 1 ; p++)\n \n {\n System.out.println(\"???????????°??????\" + hairetsu_suuchi[p]); \n }\t\n \t*/\t\n System.out.println(\n \t\t (hairetsu_suuchi[0] / 3600) +\":\" +\n \t ((hairetsu_suuchi[0] % 3600) / 60) +\":\" +\n \t (( hairetsu_suuchi[0] % 3600) % 60)\n \t\t );\n \t\n \n }",
"main",
"{\n \n \t// ?¨??????\\??????????????????????????????\n \tint c;\n int keta = 0;\n // int hairetsu_keta[] = new int[4]; hairetsu_keta[0] = 0;hairetsu_keta[1] = 0;hairetsu_keta[2] = 0;hairetsu_keta[3] = 0;\n int hairetsu_keta[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; // ???????????¨???????????¨????????£????????????\n int j = 0;\n int deru = 0; \n // int hairetsu[] = new int[4]; hairetsu[0] = 0; hairetsu[1] = 0; hairetsu[2] = 0; hairetsu[3] = 0;\n int hairetsu[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£???????????????????????????????????°????¢????????????????20???\n \n int i= 0;\n while ((c = System.in.read()) != -1 )\n {\n \t// System.out.println(c);\n \tif ( c > 47 && c < 58) // suuji ga kita\n \t {\n \t\thairetsu[i] = c-48;\n \t\ti++;\n \t\tketa++;\n \n \t\t// System.out.println(\"Qurege_no_kazu_keta_hantaikara:\" + Qurage_no_kazu);\n \t }\n \tif ( c == 10) // return ga kita\n \t{\n \t\thairetsu_keta[j] = keta;\n \t\tderu++; //return ga kitara while wo deru\n \t\tj++; // damekamo\n \t}\n \tif ( c == 32) //space ga kita\n \t{\n \t\n \t\thairetsu_keta[j] = keta;\n \t\tketa = 0;//space ga kitara tsugi no moji no tame keta ha sokomade\n \t\tj++;\n \t}\n \tif (deru > 0)\n \t{\n \t\tbreak;\n \t}\n }\n // ?¨??????\\?????????????????????????????????????????????\n \n // ??°??????????????\\??????\n //int hairetsu_suuchi[] = new int[4]; hairetsu_suuchi[0] = 0; hairetsu_suuchi[1] = 0; hairetsu_suuchi[2] = 0; hairetsu_suuchi[3] = 0;\n int hairetsu_suuchi[] = {0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£????????????\n int k = 0;\n int m = 0;\n int n = 0;\n \n \n while( n < (j + 1))\n {\n while(j > 0 && hairetsu_keta[n] > 0 )\n {\n \thairetsu_suuchi[k] = hairetsu_suuchi[k]*10 + hairetsu[m];\n \thairetsu_keta[n] = hairetsu_keta[n] - 1;\n \tm++;\n }\n if (hairetsu_keta[n] == 0)\n {\n \tn++;\n \tk++;\n }\n } \t\n\n //??°??????????????\\???????????????\n /*\n for (int p = 0; p < k - 1 ; p++)\n \n {\n System.out.println(\"???????????°??????\" + hairetsu_suuchi[p]); \n }\t\n \t*/\t\n System.out.println(\n \t\t (hairetsu_suuchi[0] / 3600) +\":\" +\n \t ((hairetsu_suuchi[0] % 3600) / 60) +\":\" +\n \t (( hairetsu_suuchi[0] % 3600) % 60)\n \t\t );\n \t\n \n }",
"int c;",
"c",
"int keta = 0;",
"keta",
"0",
"int hairetsu_keta[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};",
"hairetsu_keta",
"{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"int j = 0;",
"j",
"0",
"int deru = 0;",
"deru",
"0",
"int hairetsu[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};",
"hairetsu",
"{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"int i= 0;",
"i",
"0",
"while ((c = System.in.read()) != -1 )\n {\n \t// System.out.println(c);\n \tif ( c > 47 && c < 58) // suuji ga kita\n \t {\n \t\thairetsu[i] = c-48;\n \t\ti++;\n \t\tketa++;\n \n \t\t// System.out.println(\"Qurege_no_kazu_keta_hantaikara:\" + Qurage_no_kazu);\n \t }\n \tif ( c == 10) // return ga kita\n \t{\n \t\thairetsu_keta[j] = keta;\n \t\tderu++; //return ga kitara while wo deru\n \t\tj++; // damekamo\n \t}\n \tif ( c == 32) //space ga kita\n \t{\n \t\n \t\thairetsu_keta[j] = keta;\n \t\tketa = 0;//space ga kitara tsugi no moji no tame keta ha sokomade\n \t\tj++;\n \t}\n \tif (deru > 0)\n \t{\n \t\tbreak;\n \t}\n }",
"(c = System.in.read()) != -1",
"(c = System.in.read())",
"c",
"System.in.read()",
"System.in.read",
"System.in",
"System",
"System.in",
"-1",
"1",
"{\n \t// System.out.println(c);\n \tif ( c > 47 && c < 58) // suuji ga kita\n \t {\n \t\thairetsu[i] = c-48;\n \t\ti++;\n \t\tketa++;\n \n \t\t// System.out.println(\"Qurege_no_kazu_keta_hantaikara:\" + Qurage_no_kazu);\n \t }\n \tif ( c == 10) // return ga kita\n \t{\n \t\thairetsu_keta[j] = keta;\n \t\tderu++; //return ga kitara while wo deru\n \t\tj++; // damekamo\n \t}\n \tif ( c == 32) //space ga kita\n \t{\n \t\n \t\thairetsu_keta[j] = keta;\n \t\tketa = 0;//space ga kitara tsugi no moji no tame keta ha sokomade\n \t\tj++;\n \t}\n \tif (deru > 0)\n \t{\n \t\tbreak;\n \t}\n }",
"if ( c > 47 && c < 58) // suuji ga kita\n \t {\n \t\thairetsu[i] = c-48;\n \t\ti++;\n \t\tketa++;\n \n \t\t// System.out.println(\"Qurege_no_kazu_keta_hantaikara:\" + Qurage_no_kazu);\n \t }",
"c > 47 && c < 58",
"c > 47",
"c",
"47",
"c < 58",
"c",
"58",
"{\n \t\thairetsu[i] = c-48;\n \t\ti++;\n \t\tketa++;\n \n \t\t// System.out.println(\"Qurege_no_kazu_keta_hantaikara:\" + Qurage_no_kazu);\n \t }",
"hairetsu[i] = c-48",
"hairetsu[i]",
"hairetsu",
"i",
"c-48",
"c",
"48",
"i++",
"i",
"keta++",
"keta",
"if ( c == 10) // return ga kita\n \t{\n \t\thairetsu_keta[j] = keta;\n \t\tderu++; //return ga kitara while wo deru\n \t\tj++; // damekamo\n \t}",
"c == 10",
"c",
"10",
"{\n \t\thairetsu_keta[j] = keta;\n \t\tderu++; //return ga kitara while wo deru\n \t\tj++; // damekamo\n \t}",
"hairetsu_keta[j] = keta",
"hairetsu_keta[j]",
"hairetsu_keta",
"j",
"keta",
"deru++",
"deru",
"j++",
"j",
"if ( c == 32) //space ga kita\n \t{\n \t\n \t\thairetsu_keta[j] = keta;\n \t\tketa = 0;//space ga kitara tsugi no moji no tame keta ha sokomade\n \t\tj++;\n \t}",
"c == 32",
"c",
"32",
"{\n \t\n \t\thairetsu_keta[j] = keta;\n \t\tketa = 0;//space ga kitara tsugi no moji no tame keta ha sokomade\n \t\tj++;\n \t}",
"hairetsu_keta[j] = keta",
"hairetsu_keta[j]",
"hairetsu_keta",
"j",
"keta",
"keta = 0",
"keta",
"0",
"j++",
"j",
"if (deru > 0)\n \t{\n \t\tbreak;\n \t}",
"deru > 0",
"deru",
"0",
"{\n \t\tbreak;\n \t}",
"break;",
"int hairetsu_suuchi[] = {0,0,0,0,0,0,0,0,0,0};",
"hairetsu_suuchi",
"{0,0,0,0,0,0,0,0,0,0}",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"0",
"int k = 0;",
"k",
"0",
"int m = 0;",
"m",
"0",
"int n = 0;",
"n",
"0",
"while( n < (j + 1))\n {\n while(j > 0 && hairetsu_keta[n] > 0 )\n {\n \thairetsu_suuchi[k] = hairetsu_suuchi[k]*10 + hairetsu[m];\n \thairetsu_keta[n] = hairetsu_keta[n] - 1;\n \tm++;\n }\n if (hairetsu_keta[n] == 0)\n {\n \tn++;\n \tk++;\n }\n }",
"n < (j + 1)",
"n",
"(j + 1)",
"j",
"1",
"{\n while(j > 0 && hairetsu_keta[n] > 0 )\n {\n \thairetsu_suuchi[k] = hairetsu_suuchi[k]*10 + hairetsu[m];\n \thairetsu_keta[n] = hairetsu_keta[n] - 1;\n \tm++;\n }\n if (hairetsu_keta[n] == 0)\n {\n \tn++;\n \tk++;\n }\n }",
"while(j > 0 && hairetsu_keta[n] > 0 )\n {\n \thairetsu_suuchi[k] = hairetsu_suuchi[k]*10 + hairetsu[m];\n \thairetsu_keta[n] = hairetsu_keta[n] - 1;\n \tm++;\n }",
"j > 0 && hairetsu_keta[n] > 0",
"j > 0",
"j",
"0",
"hairetsu_keta[n] > 0",
"hairetsu_keta[n]",
"hairetsu_keta",
"n",
"0",
"{\n \thairetsu_suuchi[k] = hairetsu_suuchi[k]*10 + hairetsu[m];\n \thairetsu_keta[n] = hairetsu_keta[n] - 1;\n \tm++;\n }",
"hairetsu_suuchi[k] = hairetsu_suuchi[k]*10 + hairetsu[m]",
"hairetsu_suuchi[k]",
"hairetsu_suuchi",
"k",
"hairetsu_suuchi[k]*10 + hairetsu[m]",
"hairetsu_suuchi[k]*10",
"hairetsu_suuchi[k]",
"hairetsu_suuchi",
"k",
"10",
"hairetsu[m]",
"hairetsu",
"m",
"hairetsu_keta[n] = hairetsu_keta[n] - 1",
"hairetsu_keta[n]",
"hairetsu_keta",
"n",
"hairetsu_keta[n] - 1",
"hairetsu_keta[n]",
"hairetsu_keta",
"n",
"1",
"m++",
"m",
"if (hairetsu_keta[n] == 0)\n {\n \tn++;\n \tk++;\n }",
"hairetsu_keta[n] == 0",
"hairetsu_keta[n]",
"hairetsu_keta",
"n",
"0",
"{\n \tn++;\n \tk++;\n }",
"n++",
"n",
"k++",
"k",
"System.out.println(\n \t\t (hairetsu_suuchi[0] / 3600) +\":\" +\n \t ((hairetsu_suuchi[0] % 3600) / 60) +\":\" +\n \t (( hairetsu_suuchi[0] % 3600) % 60)\n \t\t )",
"System.out.println",
"System.out",
"System",
"System.out",
"(hairetsu_suuchi[0] / 3600) +\":\" +\n \t ((hairetsu_suuchi[0] % 3600) / 60) +\":\" +\n \t (( hairetsu_suuchi[0] % 3600) % 60)",
"\":\"",
"((hairetsu_suuchi[0] % 3600) / 60)",
"(hairetsu_suuchi[0] / 3600) +\":\" +\n \t ((hairetsu_suuchi[0] % 3600) / 60) +\":\" +\n \t (( hairetsu_suuchi[0] % 3600) % 60)",
"(hairetsu_suuchi[0] / 3600)",
"hairetsu_suuchi[0]",
"hairetsu_suuchi",
"0",
"3600",
"\":\"",
"((hairetsu_suuchi[0] % 3600) / 60)",
"(hairetsu_suuchi[0] % 3600)",
"hairetsu_suuchi[0]",
"hairetsu_suuchi",
"0",
"3600",
"60",
"\":\"",
"(( hairetsu_suuchi[0] % 3600) % 60)",
"( hairetsu_suuchi[0] % 3600)",
"hairetsu_suuchi[0]",
"hairetsu_suuchi",
"0",
"3600",
"60",
"String[] args",
"args",
"public class Main {\n\n public static void main(String[] args) throws IOException {\n \n \t// ?¨??????\\??????????????????????????????\n \tint c;\n int keta = 0;\n // int hairetsu_keta[] = new int[4]; hairetsu_keta[0] = 0;hairetsu_keta[1] = 0;hairetsu_keta[2] = 0;hairetsu_keta[3] = 0;\n int hairetsu_keta[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; // ???????????¨???????????¨????????£????????????\n int j = 0;\n int deru = 0; \n // int hairetsu[] = new int[4]; hairetsu[0] = 0; hairetsu[1] = 0; hairetsu[2] = 0; hairetsu[3] = 0;\n int hairetsu[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£???????????????????????????????????°????¢????????????????20???\n \n int i= 0;\n while ((c = System.in.read()) != -1 )\n {\n \t// System.out.println(c);\n \tif ( c > 47 && c < 58) // suuji ga kita\n \t {\n \t\thairetsu[i] = c-48;\n \t\ti++;\n \t\tketa++;\n \n \t\t// System.out.println(\"Qurege_no_kazu_keta_hantaikara:\" + Qurage_no_kazu);\n \t }\n \tif ( c == 10) // return ga kita\n \t{\n \t\thairetsu_keta[j] = keta;\n \t\tderu++; //return ga kitara while wo deru\n \t\tj++; // damekamo\n \t}\n \tif ( c == 32) //space ga kita\n \t{\n \t\n \t\thairetsu_keta[j] = keta;\n \t\tketa = 0;//space ga kitara tsugi no moji no tame keta ha sokomade\n \t\tj++;\n \t}\n \tif (deru > 0)\n \t{\n \t\tbreak;\n \t}\n }\n // ?¨??????\\?????????????????????????????????????????????\n \n // ??°??????????????\\??????\n //int hairetsu_suuchi[] = new int[4]; hairetsu_suuchi[0] = 0; hairetsu_suuchi[1] = 0; hairetsu_suuchi[2] = 0; hairetsu_suuchi[3] = 0;\n int hairetsu_suuchi[] = {0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£????????????\n int k = 0;\n int m = 0;\n int n = 0;\n \n \n while( n < (j + 1))\n {\n while(j > 0 && hairetsu_keta[n] > 0 )\n {\n \thairetsu_suuchi[k] = hairetsu_suuchi[k]*10 + hairetsu[m];\n \thairetsu_keta[n] = hairetsu_keta[n] - 1;\n \tm++;\n }\n if (hairetsu_keta[n] == 0)\n {\n \tn++;\n \tk++;\n }\n } \t\n\n //??°??????????????\\???????????????\n /*\n for (int p = 0; p < k - 1 ; p++)\n \n {\n System.out.println(\"???????????°??????\" + hairetsu_suuchi[p]); \n }\t\n \t*/\t\n System.out.println(\n \t\t (hairetsu_suuchi[0] / 3600) +\":\" +\n \t ((hairetsu_suuchi[0] % 3600) / 60) +\":\" +\n \t (( hairetsu_suuchi[0] % 3600) % 60)\n \t\t );\n \t\n \n }\n\n}",
"public class Main {\n\n public static void main(String[] args) throws IOException {\n \n \t// ?¨??????\\??????????????????????????????\n \tint c;\n int keta = 0;\n // int hairetsu_keta[] = new int[4]; hairetsu_keta[0] = 0;hairetsu_keta[1] = 0;hairetsu_keta[2] = 0;hairetsu_keta[3] = 0;\n int hairetsu_keta[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; // ???????????¨???????????¨????????£????????????\n int j = 0;\n int deru = 0; \n // int hairetsu[] = new int[4]; hairetsu[0] = 0; hairetsu[1] = 0; hairetsu[2] = 0; hairetsu[3] = 0;\n int hairetsu[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£???????????????????????????????????°????¢????????????????20???\n \n int i= 0;\n while ((c = System.in.read()) != -1 )\n {\n \t// System.out.println(c);\n \tif ( c > 47 && c < 58) // suuji ga kita\n \t {\n \t\thairetsu[i] = c-48;\n \t\ti++;\n \t\tketa++;\n \n \t\t// System.out.println(\"Qurege_no_kazu_keta_hantaikara:\" + Qurage_no_kazu);\n \t }\n \tif ( c == 10) // return ga kita\n \t{\n \t\thairetsu_keta[j] = keta;\n \t\tderu++; //return ga kitara while wo deru\n \t\tj++; // damekamo\n \t}\n \tif ( c == 32) //space ga kita\n \t{\n \t\n \t\thairetsu_keta[j] = keta;\n \t\tketa = 0;//space ga kitara tsugi no moji no tame keta ha sokomade\n \t\tj++;\n \t}\n \tif (deru > 0)\n \t{\n \t\tbreak;\n \t}\n }\n // ?¨??????\\?????????????????????????????????????????????\n \n // ??°??????????????\\??????\n //int hairetsu_suuchi[] = new int[4]; hairetsu_suuchi[0] = 0; hairetsu_suuchi[1] = 0; hairetsu_suuchi[2] = 0; hairetsu_suuchi[3] = 0;\n int hairetsu_suuchi[] = {0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£????????????\n int k = 0;\n int m = 0;\n int n = 0;\n \n \n while( n < (j + 1))\n {\n while(j > 0 && hairetsu_keta[n] > 0 )\n {\n \thairetsu_suuchi[k] = hairetsu_suuchi[k]*10 + hairetsu[m];\n \thairetsu_keta[n] = hairetsu_keta[n] - 1;\n \tm++;\n }\n if (hairetsu_keta[n] == 0)\n {\n \tn++;\n \tk++;\n }\n } \t\n\n //??°??????????????\\???????????????\n /*\n for (int p = 0; p < k - 1 ; p++)\n \n {\n System.out.println(\"???????????°??????\" + hairetsu_suuchi[p]); \n }\t\n \t*/\t\n System.out.println(\n \t\t (hairetsu_suuchi[0] / 3600) +\":\" +\n \t ((hairetsu_suuchi[0] % 3600) / 60) +\":\" +\n \t (( hairetsu_suuchi[0] % 3600) % 60)\n \t\t );\n \t\n \n }\n\n}",
"Main"
] |
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
// ?¨??????\??????????????????????????????
int c;
int keta = 0;
// int hairetsu_keta[] = new int[4]; hairetsu_keta[0] = 0;hairetsu_keta[1] = 0;hairetsu_keta[2] = 0;hairetsu_keta[3] = 0;
int hairetsu_keta[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; // ???????????¨???????????¨????????£????????????
int j = 0;
int deru = 0;
// int hairetsu[] = new int[4]; hairetsu[0] = 0; hairetsu[1] = 0; hairetsu[2] = 0; hairetsu[3] = 0;
int hairetsu[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£???????????????????????????????????°????¢????????????????20???
int i= 0;
while ((c = System.in.read()) != -1 )
{
// System.out.println(c);
if ( c > 47 && c < 58) // suuji ga kita
{
hairetsu[i] = c-48;
i++;
keta++;
// System.out.println("Qurege_no_kazu_keta_hantaikara:" + Qurage_no_kazu);
}
if ( c == 10) // return ga kita
{
hairetsu_keta[j] = keta;
deru++; //return ga kitara while wo deru
j++; // damekamo
}
if ( c == 32) //space ga kita
{
hairetsu_keta[j] = keta;
keta = 0;//space ga kitara tsugi no moji no tame keta ha sokomade
j++;
}
if (deru > 0)
{
break;
}
}
// ?¨??????\?????????????????????????????????????????????
// ??°??????????????\??????
//int hairetsu_suuchi[] = new int[4]; hairetsu_suuchi[0] = 0; hairetsu_suuchi[1] = 0; hairetsu_suuchi[2] = 0; hairetsu_suuchi[3] = 0;
int hairetsu_suuchi[] = {0,0,0,0,0,0,0,0,0,0};//???????????¨???????????¨????????£????????????
int k = 0;
int m = 0;
int n = 0;
while( n < (j + 1))
{
while(j > 0 && hairetsu_keta[n] > 0 )
{
hairetsu_suuchi[k] = hairetsu_suuchi[k]*10 + hairetsu[m];
hairetsu_keta[n] = hairetsu_keta[n] - 1;
m++;
}
if (hairetsu_keta[n] == 0)
{
n++;
k++;
}
}
//??°??????????????\???????????????
/*
for (int p = 0; p < k - 1 ; p++)
{
System.out.println("???????????°??????" + hairetsu_suuchi[p]);
}
*/
System.out.println(
(hairetsu_suuchi[0] / 3600) +":" +
((hairetsu_suuchi[0] % 3600) / 60) +":" +
(( hairetsu_suuchi[0] % 3600) % 60)
);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
0,
13,
17,
41,
13,
2,
13,
17,
0,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
11,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
22,
24
],
[
11,
25
],
[
25,
26
],
[
25,
27
],
[
11,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
30,
32
],
[
11,
33
],
[
33,
34
],
[
33,
35
],
[
11,
36
],
[
36,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
36,
41
],
[
44,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
43,
47
],
[
42,
48
],
[
44,
49
],
[
9,
50
],
[
50,
51
]
] | [
"import java.io.*;\nimport java.util.*;\n\nclass Main\n{\n public static void main(String[] args)\n {\n\tScanner sc = new Scanner(System.in);\n\tint timeSec = sc.nextInt();\n\t\n\tint timeHour = timeSec / 3600;\n\ttimeSec %= 3600;\n\t\n\tint timeMin = timeSec / 60;\n\ttimeSec %= 60;\n\t\n\tSystem.out.println(timeHour + \":\" + timeMin + \":\" + timeSec);\n }\n}",
"import java.io.*;",
"io.*",
"java",
"import java.util.*;",
"util.*",
"java",
"class Main\n{\n public static void main(String[] args)\n {\n\tScanner sc = new Scanner(System.in);\n\tint timeSec = sc.nextInt();\n\t\n\tint timeHour = timeSec / 3600;\n\ttimeSec %= 3600;\n\t\n\tint timeMin = timeSec / 60;\n\ttimeSec %= 60;\n\t\n\tSystem.out.println(timeHour + \":\" + timeMin + \":\" + timeSec);\n }\n}",
"Main",
"public static void main(String[] args)\n {\n\tScanner sc = new Scanner(System.in);\n\tint timeSec = sc.nextInt();\n\t\n\tint timeHour = timeSec / 3600;\n\ttimeSec %= 3600;\n\t\n\tint timeMin = timeSec / 60;\n\ttimeSec %= 60;\n\t\n\tSystem.out.println(timeHour + \":\" + timeMin + \":\" + timeSec);\n }",
"main",
"{\n\tScanner sc = new Scanner(System.in);\n\tint timeSec = sc.nextInt();\n\t\n\tint timeHour = timeSec / 3600;\n\ttimeSec %= 3600;\n\t\n\tint timeMin = timeSec / 60;\n\ttimeSec %= 60;\n\t\n\tSystem.out.println(timeHour + \":\" + timeMin + \":\" + timeSec);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int timeSec = sc.nextInt();",
"timeSec",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int timeHour = timeSec / 3600;",
"timeHour",
"timeSec / 3600",
"timeSec",
"3600",
"timeSec %= 3600",
"timeSec",
"3600",
"int timeMin = timeSec / 60;",
"timeMin",
"timeSec / 60",
"timeSec",
"60",
"timeSec %= 60",
"timeSec",
"60",
"System.out.println(timeHour + \":\" + timeMin + \":\" + timeSec)",
"System.out.println",
"System.out",
"System",
"System.out",
"timeHour + \":\" + timeMin + \":\" + timeSec",
"\":\"",
"timeMin",
"timeHour + \":\" + timeMin + \":\" + timeSec",
"timeHour",
"\":\"",
"timeMin",
"\":\"",
"timeSec",
"String[] args",
"args"
] | import java.io.*;
import java.util.*;
class Main
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
int timeSec = sc.nextInt();
int timeHour = timeSec / 3600;
timeSec %= 3600;
int timeMin = timeSec / 60;
timeSec %= 60;
System.out.println(timeHour + ":" + timeMin + ":" + timeSec);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
24,
28
],
[
8,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
31,
33
],
[
8,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
34,
39
],
[
42,
40
],
[
40,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
41,
45
],
[
40,
46
],
[
42,
47
],
[
6,
48
],
[
48,
49
]
] | [
"import java.util.*;\n\nclass Main {\n\tpublic static void main(String[] args) {\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint S = stdIn.nextInt();\n\t\tint s = S%60;\n\t\tint m = S/60%60;\n\t\tint h = S/3600;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint S = stdIn.nextInt();\n\t\tint s = S%60;\n\t\tint m = S/60%60;\n\t\tint h = S/3600;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint S = stdIn.nextInt();\n\t\tint s = S%60;\n\t\tint m = S/60%60;\n\t\tint h = S/3600;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"main",
"{\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint S = stdIn.nextInt();\n\t\tint s = S%60;\n\t\tint m = S/60%60;\n\t\tint h = S/3600;\n\t\tSystem.out.println(h+\":\"+m+\":\"+s);\n\t}",
"Scanner stdIn = new Scanner(System.in);",
"stdIn",
"new Scanner(System.in)",
"int S = stdIn.nextInt();",
"S",
"stdIn.nextInt()",
"stdIn.nextInt",
"stdIn",
"int s = S%60;",
"s",
"S%60",
"S",
"60",
"int m = S/60%60;",
"m",
"S/60%60",
"S/60",
"S",
"60",
"60",
"int h = S/3600;",
"h",
"S/3600",
"S",
"3600",
"System.out.println(h+\":\"+m+\":\"+s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h+\":\"+m+\":\"+s",
"\":\"",
"m",
"h+\":\"+m+\":\"+s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] args",
"args"
] | import java.util.*;
class Main {
public static void main(String[] args) {
Scanner stdIn = new Scanner(System.in);
int S = stdIn.nextInt();
int s = S%60;
int m = S/60%60;
int h = S/3600;
System.out.println(h+":"+m+":"+s);
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
38,
30,
4,
18,
13,
30,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
17,
17,
41,
13,
2,
2,
13,
17,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
59,
5
],
[
59,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
13,
14
],
[
14,
15
],
[
15,
16
],
[
12,
17
],
[
17,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
17,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
25,
27
],
[
17,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
30,
34
],
[
17,
35
],
[
35,
36
],
[
35,
37
],
[
38,
38
],
[
38,
39
],
[
38,
40
],
[
38,
41
],
[
17,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
42,
47
],
[
50,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
49,
53
],
[
48,
54
],
[
50,
55
],
[
6,
56
],
[
56,
57
],
[
0,
58
],
[
58,
59
],
[
58,
60
]
] | [
"import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\ttry {\n\t\t\tint sec = sc.nextInt();\n\t\t\tint hh = sec / 3600;\n\t\t\tint mm = sec % 3600 / 60;\n\t\t\tint ss = sec % 3600 % 60;\n\t\t\tSystem.out.println(hh + \":\" + mm + \":\" + ss);\n\t\t} finally {\n\t\t\tsc.close();\n\t\t}\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\ttry {\n\t\t\tint sec = sc.nextInt();\n\t\t\tint hh = sec / 3600;\n\t\t\tint mm = sec % 3600 / 60;\n\t\t\tint ss = sec % 3600 % 60;\n\t\t\tSystem.out.println(hh + \":\" + mm + \":\" + ss);\n\t\t} finally {\n\t\t\tsc.close();\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\ttry {\n\t\t\tint sec = sc.nextInt();\n\t\t\tint hh = sec / 3600;\n\t\t\tint mm = sec % 3600 / 60;\n\t\t\tint ss = sec % 3600 % 60;\n\t\t\tSystem.out.println(hh + \":\" + mm + \":\" + ss);\n\t\t} finally {\n\t\t\tsc.close();\n\t\t}\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\ttry {\n\t\t\tint sec = sc.nextInt();\n\t\t\tint hh = sec / 3600;\n\t\t\tint mm = sec % 3600 / 60;\n\t\t\tint ss = sec % 3600 % 60;\n\t\t\tSystem.out.println(hh + \":\" + mm + \":\" + ss);\n\t\t} finally {\n\t\t\tsc.close();\n\t\t}\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"try {\n\t\t\tint sec = sc.nextInt();\n\t\t\tint hh = sec / 3600;\n\t\t\tint mm = sec % 3600 / 60;\n\t\t\tint ss = sec % 3600 % 60;\n\t\t\tSystem.out.println(hh + \":\" + mm + \":\" + ss);\n\t\t} finally {\n\t\t\tsc.close();\n\t\t}",
"{\n\t\t\tsc.close();\n\t\t}",
"sc.close()",
"sc.close",
"sc",
"{\n\t\t\tint sec = sc.nextInt();\n\t\t\tint hh = sec / 3600;\n\t\t\tint mm = sec % 3600 / 60;\n\t\t\tint ss = sec % 3600 % 60;\n\t\t\tSystem.out.println(hh + \":\" + mm + \":\" + ss);\n\t\t}",
"int sec = sc.nextInt();",
"sec",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int hh = sec / 3600;",
"hh",
"sec / 3600",
"sec",
"3600",
"int mm = sec % 3600 / 60;",
"mm",
"sec % 3600 / 60",
"sec % 3600",
"sec",
"3600",
"60",
"int ss = sec % 3600 % 60;",
"ss",
"sec % 3600 % 60",
"sec % 3600 % 60",
"sec",
"3600",
"60",
"System.out.println(hh + \":\" + mm + \":\" + ss)",
"System.out.println",
"System.out",
"System",
"System.out",
"hh + \":\" + mm + \":\" + ss",
"\":\"",
"mm",
"hh + \":\" + mm + \":\" + ss",
"hh",
"\":\"",
"mm",
"\":\"",
"ss",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\ttry {\n\t\t\tint sec = sc.nextInt();\n\t\t\tint hh = sec / 3600;\n\t\t\tint mm = sec % 3600 / 60;\n\t\t\tint ss = sec % 3600 % 60;\n\t\t\tSystem.out.println(hh + \":\" + mm + \":\" + ss);\n\t\t} finally {\n\t\t\tsc.close();\n\t\t}\n\t}\n}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\ttry {\n\t\t\tint sec = sc.nextInt();\n\t\t\tint hh = sec / 3600;\n\t\t\tint mm = sec % 3600 / 60;\n\t\t\tint ss = sec % 3600 % 60;\n\t\t\tSystem.out.println(hh + \":\" + mm + \":\" + ss);\n\t\t} finally {\n\t\t\tsc.close();\n\t\t}\n\t}\n}",
"Main"
] | import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
try {
int sec = sc.nextInt();
int hh = sec / 3600;
int mm = sec % 3600 / 60;
int ss = sec % 3600 % 60;
System.out.println(hh + ":" + mm + ":" + ss);
} finally {
sc.close();
}
}
} |
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
41,
13,
2,
13,
17,
0,
13,
2,
13,
17,
4,
18,
18,
13,
13,
17,
13,
4,
18,
18,
13,
13,
17,
13,
4,
18,
18,
13,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
61,
5
],
[
61,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
24,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
29,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
34,
36
],
[
8,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
37,
42
],
[
37,
43
],
[
8,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
44,
49
],
[
44,
50
],
[
8,
51
],
[
51,
52
],
[
52,
53
],
[
53,
54
],
[
53,
55
],
[
51,
56
],
[
51,
57
],
[
6,
58
],
[
58,
59
],
[
0,
60
],
[
60,
61
],
[
60,
62
]
] | [
"import java.util.*;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int n=sc.nextInt();\n \n int s=n%60;\n int m=n/60;\n int h=m/60;\n m =m%60;\n System.out.printf(\"%d\",h);\n System.out.printf(\":%d\",m);\n System.out.printf(\":%d\\n\",s);\n }\n }",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int n=sc.nextInt();\n \n int s=n%60;\n int m=n/60;\n int h=m/60;\n m =m%60;\n System.out.printf(\"%d\",h);\n System.out.printf(\":%d\",m);\n System.out.printf(\":%d\\n\",s);\n }\n }",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int n=sc.nextInt();\n \n int s=n%60;\n int m=n/60;\n int h=m/60;\n m =m%60;\n System.out.printf(\"%d\",h);\n System.out.printf(\":%d\",m);\n System.out.printf(\":%d\\n\",s);\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int n=sc.nextInt();\n \n int s=n%60;\n int m=n/60;\n int h=m/60;\n m =m%60;\n System.out.printf(\"%d\",h);\n System.out.printf(\":%d\",m);\n System.out.printf(\":%d\\n\",s);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int n=sc.nextInt();",
"n",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int s=n%60;",
"s",
"n%60",
"n",
"60",
"int m=n/60;",
"m",
"n/60",
"n",
"60",
"int h=m/60;",
"h",
"m/60",
"m",
"60",
"m =m%60",
"m",
"m%60",
"m",
"60",
"System.out.printf(\"%d\",h)",
"System.out.printf",
"System.out",
"System",
"System.out",
"\"%d\"",
"h",
"System.out.printf(\":%d\",m)",
"System.out.printf",
"System.out",
"System",
"System.out",
"\":%d\"",
"m",
"System.out.printf(\":%d\\n\",s)",
"System.out.printf",
"System.out",
"System",
"System.out",
"\":%d\\n\"",
"s",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int n=sc.nextInt();\n \n int s=n%60;\n int m=n/60;\n int h=m/60;\n m =m%60;\n System.out.printf(\"%d\",h);\n System.out.printf(\":%d\",m);\n System.out.printf(\":%d\\n\",s);\n }\n }",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int n=sc.nextInt();\n \n int s=n%60;\n int m=n/60;\n int h=m/60;\n m =m%60;\n System.out.printf(\"%d\",h);\n System.out.printf(\":%d\",m);\n System.out.printf(\":%d\\n\",s);\n }\n }",
"Main"
] | import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n=sc.nextInt();
int s=n%60;
int m=n/60;
int h=m/60;
m =m%60;
System.out.printf("%d",h);
System.out.printf(":%d",m);
System.out.printf(":%d\n",s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
13,
41,
13,
2,
13,
17,
41,
13,
2,
2,
13,
2,
13,
17,
17,
41,
13,
2,
2,
13,
2,
13,
17,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
2,
2,
13,
17,
13,
17,
13,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
71,
11
],
[
71,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
14,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
26,
27
],
[
25,
28
],
[
14,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
31,
33
],
[
14,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
39,
41
],
[
36,
42
],
[
14,
43
],
[
43,
44
],
[
43,
45
],
[
46,
46
],
[
46,
47
],
[
46,
48
],
[
48,
49
],
[
48,
50
],
[
46,
51
],
[
51,
52
],
[
51,
53
],
[
14,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
54,
59
],
[
62,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
60,
66
],
[
62,
67
],
[
12,
68
],
[
68,
69
],
[
0,
70
],
[
70,
71
],
[
70,
72
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\tpublic static void main(String[] arg)throws IOException{\n\t\t BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t //br.readline(); = 入力された1行分を日本語変換して返してくれる。\n\t\t String str = br.readLine();\n\n\t\t //おなじみの文字列から数値への変換。\n\t\t int S = Integer.parseInt(str);\n\n\t\t //h = hour(○時間に直す)\n\t\t int h = S/3600;\n\n\t\t //m = minutes(○時間分を引いてから○分に直す)\n\t\t int m = (S-h*3600)/60;\n\n\t\t //s = second (○時間、○分を引く)\n\t\t int s = S-h*3600-m*60;\n\n\t\t /*いつも通りの出力。面積と周の長さを表示してる。\n\t\t 今回は/h、m、s を :(コロン)区切りで1行に出力してください。\n\t\t 数値が1桁の場合、0 を付けて2桁表示をする必要はなしとのことなのでこのような具合に。*/\n\t\t System.out.println(h + \":\" +m + \":\" +s);\n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n\tpublic static void main(String[] arg)throws IOException{\n\t\t BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t //br.readline(); = 入力された1行分を日本語変換して返してくれる。\n\t\t String str = br.readLine();\n\n\t\t //おなじみの文字列から数値への変換。\n\t\t int S = Integer.parseInt(str);\n\n\t\t //h = hour(○時間に直す)\n\t\t int h = S/3600;\n\n\t\t //m = minutes(○時間分を引いてから○分に直す)\n\t\t int m = (S-h*3600)/60;\n\n\t\t //s = second (○時間、○分を引く)\n\t\t int s = S-h*3600-m*60;\n\n\t\t /*いつも通りの出力。面積と周の長さを表示してる。\n\t\t 今回は/h、m、s を :(コロン)区切りで1行に出力してください。\n\t\t 数値が1桁の場合、0 を付けて2桁表示をする必要はなしとのことなのでこのような具合に。*/\n\t\t System.out.println(h + \":\" +m + \":\" +s);\n }\n}",
"Main",
"public static void main(String[] arg)throws IOException{\n\t\t BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t //br.readline(); = 入力された1行分を日本語変換して返してくれる。\n\t\t String str = br.readLine();\n\n\t\t //おなじみの文字列から数値への変換。\n\t\t int S = Integer.parseInt(str);\n\n\t\t //h = hour(○時間に直す)\n\t\t int h = S/3600;\n\n\t\t //m = minutes(○時間分を引いてから○分に直す)\n\t\t int m = (S-h*3600)/60;\n\n\t\t //s = second (○時間、○分を引く)\n\t\t int s = S-h*3600-m*60;\n\n\t\t /*いつも通りの出力。面積と周の長さを表示してる。\n\t\t 今回は/h、m、s を :(コロン)区切りで1行に出力してください。\n\t\t 数値が1桁の場合、0 を付けて2桁表示をする必要はなしとのことなのでこのような具合に。*/\n\t\t System.out.println(h + \":\" +m + \":\" +s);\n }",
"main",
"{\n\t\t BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t //br.readline(); = 入力された1行分を日本語変換して返してくれる。\n\t\t String str = br.readLine();\n\n\t\t //おなじみの文字列から数値への変換。\n\t\t int S = Integer.parseInt(str);\n\n\t\t //h = hour(○時間に直す)\n\t\t int h = S/3600;\n\n\t\t //m = minutes(○時間分を引いてから○分に直す)\n\t\t int m = (S-h*3600)/60;\n\n\t\t //s = second (○時間、○分を引く)\n\t\t int s = S-h*3600-m*60;\n\n\t\t /*いつも通りの出力。面積と周の長さを表示してる。\n\t\t 今回は/h、m、s を :(コロン)区切りで1行に出力してください。\n\t\t 数値が1桁の場合、0 を付けて2桁表示をする必要はなしとのことなのでこのような具合に。*/\n\t\t System.out.println(h + \":\" +m + \":\" +s);\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String str = br.readLine();",
"str",
"br.readLine()",
"br.readLine",
"br",
"int S = Integer.parseInt(str);",
"S",
"Integer.parseInt(str)",
"Integer.parseInt",
"Integer",
"str",
"int h = S/3600;",
"h",
"S/3600",
"S",
"3600",
"int m = (S-h*3600)/60;",
"m",
"(S-h*3600)/60",
"(S-h*3600)",
"S",
"h*3600",
"h",
"3600",
"60",
"int s = S-h*3600-m*60;",
"s",
"S-h*3600-m*60",
"S-h*3600-m*60",
"S",
"h*3600",
"h",
"3600",
"m*60",
"m",
"60",
"System.out.println(h + \":\" +m + \":\" +s)",
"System.out.println",
"System.out",
"System",
"System.out",
"h + \":\" +m + \":\" +s",
"\":\"",
"m",
"h + \":\" +m + \":\" +s",
"h",
"\":\"",
"m",
"\":\"",
"s",
"String[] arg",
"arg",
"public class Main {\n\tpublic static void main(String[] arg)throws IOException{\n\t\t BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t //br.readline(); = 入力された1行分を日本語変換して返してくれる。\n\t\t String str = br.readLine();\n\n\t\t //おなじみの文字列から数値への変換。\n\t\t int S = Integer.parseInt(str);\n\n\t\t //h = hour(○時間に直す)\n\t\t int h = S/3600;\n\n\t\t //m = minutes(○時間分を引いてから○分に直す)\n\t\t int m = (S-h*3600)/60;\n\n\t\t //s = second (○時間、○分を引く)\n\t\t int s = S-h*3600-m*60;\n\n\t\t /*いつも通りの出力。面積と周の長さを表示してる。\n\t\t 今回は/h、m、s を :(コロン)区切りで1行に出力してください。\n\t\t 数値が1桁の場合、0 を付けて2桁表示をする必要はなしとのことなのでこのような具合に。*/\n\t\t System.out.println(h + \":\" +m + \":\" +s);\n }\n}",
"public class Main {\n\tpublic static void main(String[] arg)throws IOException{\n\t\t BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t //br.readline(); = 入力された1行分を日本語変換して返してくれる。\n\t\t String str = br.readLine();\n\n\t\t //おなじみの文字列から数値への変換。\n\t\t int S = Integer.parseInt(str);\n\n\t\t //h = hour(○時間に直す)\n\t\t int h = S/3600;\n\n\t\t //m = minutes(○時間分を引いてから○分に直す)\n\t\t int m = (S-h*3600)/60;\n\n\t\t //s = second (○時間、○分を引く)\n\t\t int s = S-h*3600-m*60;\n\n\t\t /*いつも通りの出力。面積と周の長さを表示してる。\n\t\t 今回は/h、m、s を :(コロン)区切りで1行に出力してください。\n\t\t 数値が1桁の場合、0 を付けて2桁表示をする必要はなしとのことなのでこのような具合に。*/\n\t\t System.out.println(h + \":\" +m + \":\" +s);\n }\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] arg)throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
//br.readline(); = 入力された1行分を日本語変換して返してくれる。
String str = br.readLine();
//おなじみの文字列から数値への変換。
int S = Integer.parseInt(str);
//h = hour(○時間に直す)
int h = S/3600;
//m = minutes(○時間分を引いてから○分に直す)
int m = (S-h*3600)/60;
//s = second (○時間、○分を引く)
int s = S-h*3600-m*60;
/*いつも通りの出力。面積と周の長さを表示してる。
今回は/h、m、s を :(コロン)区切りで1行に出力してください。
数値が1桁の場合、0 を付けて2桁表示をする必要はなしとのことなのでこのような具合に。*/
System.out.println(h + ":" +m + ":" +s);
}
} |
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
2,
2,
13,
17,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
2,
13,
17,
17,
41,
13,
2,
13,
17,
4,
18,
18,
13,
13,
2,
13,
17,
23,
13,
10,
6,
13
] | [
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
67,
11
],
[
67,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
20,
23
],
[
23,
24
],
[
24,
25
],
[
14,
26
],
[
26,
27
],
[
27,
28
],
[
28,
29
],
[
28,
30
],
[
26,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
31,
35
],
[
14,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
38,
40
],
[
14,
41
],
[
41,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
41,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
46,
50
],
[
14,
51
],
[
51,
52
],
[
51,
53
],
[
53,
54
],
[
53,
55
],
[
14,
56
],
[
56,
57
],
[
57,
58
],
[
58,
59
],
[
58,
60
],
[
56,
61
],
[
61,
62
],
[
61,
63
],
[
12,
64
],
[
64,
65
],
[
0,
66
],
[
66,
67
],
[
66,
68
]
] | [
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tint ss = Integer.parseInt(br.readLine());\n\t\tSystem.out.print(ss/3600 + \":\");\n\t\tint s =ss%3600;\n\t\tSystem.out.print(s/60 +\":\");\n\t\tint m = s%60;\n\t\tSystem.out.println(m%60);\n\t}\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"public class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tint ss = Integer.parseInt(br.readLine());\n\t\tSystem.out.print(ss/3600 + \":\");\n\t\tint s =ss%3600;\n\t\tSystem.out.print(s/60 +\":\");\n\t\tint m = s%60;\n\t\tSystem.out.println(m%60);\n\t}\n}",
"Main",
"public static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tint ss = Integer.parseInt(br.readLine());\n\t\tSystem.out.print(ss/3600 + \":\");\n\t\tint s =ss%3600;\n\t\tSystem.out.print(s/60 +\":\");\n\t\tint m = s%60;\n\t\tSystem.out.println(m%60);\n\t}",
"main",
"{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tint ss = Integer.parseInt(br.readLine());\n\t\tSystem.out.print(ss/3600 + \":\");\n\t\tint s =ss%3600;\n\t\tSystem.out.print(s/60 +\":\");\n\t\tint m = s%60;\n\t\tSystem.out.println(m%60);\n\t}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"int ss = Integer.parseInt(br.readLine());",
"ss",
"Integer.parseInt(br.readLine())",
"Integer.parseInt",
"Integer",
"br.readLine()",
"br.readLine",
"br",
"System.out.print(ss/3600 + \":\")",
"System.out.print",
"System.out",
"System",
"System.out",
"ss/3600 + \":\"",
"ss/3600",
"ss",
"3600",
"\":\"",
"int s =ss%3600;",
"s",
"ss%3600",
"ss",
"3600",
"System.out.print(s/60 +\":\")",
"System.out.print",
"System.out",
"System",
"System.out",
"s/60 +\":\"",
"s/60",
"s",
"60",
"\":\"",
"int m = s%60;",
"m",
"s%60",
"s",
"60",
"System.out.println(m%60)",
"System.out.println",
"System.out",
"System",
"System.out",
"m%60",
"m",
"60",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tint ss = Integer.parseInt(br.readLine());\n\t\tSystem.out.print(ss/3600 + \":\");\n\t\tint s =ss%3600;\n\t\tSystem.out.print(s/60 +\":\");\n\t\tint m = s%60;\n\t\tSystem.out.println(m%60);\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tint ss = Integer.parseInt(br.readLine());\n\t\tSystem.out.print(ss/3600 + \":\");\n\t\tint s =ss%3600;\n\t\tSystem.out.print(s/60 +\":\");\n\t\tint m = s%60;\n\t\tSystem.out.println(m%60);\n\t}\n}",
"Main"
] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args)throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int ss = Integer.parseInt(br.readLine());
System.out.print(ss/3600 + ":");
int s =ss%3600;
System.out.print(s/60 +":");
int m = s%60;
System.out.println(m%60);
}
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.