node_ids
listlengths 4
1.4k
| edge_index
listlengths 1
2.22k
| text
listlengths 4
1.4k
| source
stringlengths 14
427k
|
---|---|---|---|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
4,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
42,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
13,
17,
3,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
13,
17,
3,
4,
18,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
93,
8
],
[
93,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
11,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
23,
24
],
[
20,
25
],
[
11,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
28,
31
],
[
31,
32
],
[
31,
33
],
[
11,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
36,
39
],
[
39,
40
],
[
39,
41
],
[
11,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
44,
47
],
[
47,
48
],
[
47,
49
],
[
11,
50
],
[
50,
51
],
[
50,
52
],
[
52,
53
],
[
53,
54
],
[
52,
55
],
[
55,
56
],
[
55,
57
],
[
11,
58
],
[
58,
59
],
[
58,
60
],
[
60,
61
],
[
61,
62
],
[
61,
63
],
[
60,
64
],
[
64,
65
],
[
65,
66
],
[
65,
67
],
[
64,
68
],
[
68,
69
],
[
69,
70
],
[
70,
71
],
[
69,
72
],
[
68,
73
],
[
60,
74
],
[
74,
75
],
[
74,
76
],
[
60,
77
],
[
77,
78
],
[
78,
79
],
[
78,
80
],
[
77,
81
],
[
81,
82
],
[
82,
83
],
[
83,
84
],
[
82,
85
],
[
81,
86
],
[
11,
87
],
[
87,
88
],
[
88,
89
],
[
9,
90
],
[
90,
91
],
[
0,
92
],
[
92,
93
],
[
92,
94
]
] |
[
"import java.util.*;\nimport java.io.*;\n\npublic class Main {\n public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n \n while(true){\n aHP -= tATK;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }\n \n out.close();\n \n }\n}",
"import java.util.*;",
"util.*",
"java",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n \n while(true){\n aHP -= tATK;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }\n \n out.close();\n \n }\n}",
"Main",
"public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n \n while(true){\n aHP -= tATK;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }\n \n out.close();\n \n }",
"main",
"{\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n \n while(true){\n aHP -= tATK;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }\n \n out.close();\n \n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));",
"out",
"new PrintWriter(new OutputStreamWriter(System.out))",
"String[] str = br.readLine().split(\" \");",
"str",
"br.readLine().split(\" \")",
"br.readLine().split",
"br.readLine()",
"br.readLine",
"br",
"\" \"",
"int tHP = Integer.parseInt(str[0]);",
"tHP",
"Integer.parseInt(str[0])",
"Integer.parseInt",
"Integer",
"str[0]",
"str",
"0",
"int tATK = Integer.parseInt(str[1]);",
"tATK",
"Integer.parseInt(str[1])",
"Integer.parseInt",
"Integer",
"str[1]",
"str",
"1",
"int aHP = Integer.parseInt(str[2]);",
"aHP",
"Integer.parseInt(str[2])",
"Integer.parseInt",
"Integer",
"str[2]",
"str",
"2",
"int aATK = Integer.parseInt(str[3]);",
"aATK",
"Integer.parseInt(str[3])",
"Integer.parseInt",
"Integer",
"str[3]",
"str",
"3",
"while(true){\n aHP -= tATK;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }",
"true",
"{\n aHP -= tATK;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }",
"aHP -= tATK",
"aHP",
"tATK",
"if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }",
"aHP <= 0",
"aHP",
"0",
"{\n out.println(\"Yes\");\n break;\n }",
"out.println(\"Yes\")",
"out.println",
"out",
"\"Yes\"",
"break;",
"tHP -= aATK",
"tHP",
"aATK",
"if(tHP <= 0){\n out.println(\"No\");\n break;\n }",
"tHP <= 0",
"tHP",
"0",
"{\n out.println(\"No\");\n break;\n }",
"out.println(\"No\")",
"out.println",
"out",
"\"No\"",
"break;",
"out.close()",
"out.close",
"out",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n \n while(true){\n aHP -= tATK;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }\n \n out.close();\n \n }\n}",
"public class Main {\n public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n \n while(true){\n aHP -= tATK;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }\n \n out.close();\n \n }\n}",
"Main"
] |
import java.util.*;
import java.io.*;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));
String[] str = br.readLine().split(" ");
int tHP = Integer.parseInt(str[0]);
int tATK = Integer.parseInt(str[1]);
int aHP = Integer.parseInt(str[2]);
int aATK = Integer.parseInt(str[3]);
while(true){
aHP -= tATK;
if(aHP <= 0){
out.println("Yes");
break;
}
tHP -= aATK;
if(tHP <= 0){
out.println("No");
break;
}
}
out.close();
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
17,
42,
17,
30,
0,
13,
2,
13,
13,
14,
2,
13,
17,
30,
3,
0,
13,
2,
13,
13,
14,
2,
13,
17,
30,
0,
13,
17,
3,
4,
18,
18,
13,
13,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
98,
5
],
[
98,
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
],
[
22,
23
],
[
23,
24
],
[
22,
25
],
[
8,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
28,
31
],
[
31,
32
],
[
31,
33
],
[
8,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
36,
39
],
[
39,
40
],
[
39,
41
],
[
8,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
44,
47
],
[
47,
48
],
[
47,
49
],
[
8,
50
],
[
50,
51
],
[
50,
52
],
[
52,
53
],
[
53,
54
],
[
52,
55
],
[
55,
56
],
[
55,
57
],
[
8,
58
],
[
58,
59
],
[
58,
60
],
[
8,
61
],
[
61,
62
],
[
61,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
66,
67
],
[
66,
68
],
[
63,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
69,
73
],
[
73,
74
],
[
63,
75
],
[
75,
76
],
[
75,
77
],
[
77,
78
],
[
77,
79
],
[
63,
80
],
[
80,
81
],
[
81,
82
],
[
81,
83
],
[
80,
84
],
[
84,
85
],
[
85,
86
],
[
85,
87
],
[
84,
88
],
[
8,
89
],
[
89,
90
],
[
90,
91
],
[
91,
92
],
[
91,
93
],
[
89,
94
],
[
6,
95
],
[
95,
96
],
[
0,
97
],
[
97,
98
],
[
97,
99
]
] |
[
"\nimport java.util.Scanner;\n\npublic class Main {\n\n /*\n * https://atcoder.jp/contests/abc164/tasks/abc164_a\n */\n\n public static void main(String[] args) {\n\n Scanner stdIn = new Scanner(System.in);\n String input = stdIn.nextLine();\n stdIn.close();\n\n String[] arguments = input.split(\" \");\n int t_hp = Integer.valueOf(arguments[0]);\n int t_att = Integer.valueOf(arguments[1]);\n int a_hp = Integer.valueOf(arguments[2]);\n int a_att = Integer.valueOf(arguments[3]);\n\n String result = \"Yes\";\n\n while (true) {\n\n a_hp = a_hp - t_att;\n if (a_hp <= 0) {\n break;\n }\n\n t_hp = t_hp - a_att;\n if (t_hp <= 0) {\n result = \"No\";\n break;\n }\n }\n\n System.out.println(result);\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n /*\n * https://atcoder.jp/contests/abc164/tasks/abc164_a\n */\n\n public static void main(String[] args) {\n\n Scanner stdIn = new Scanner(System.in);\n String input = stdIn.nextLine();\n stdIn.close();\n\n String[] arguments = input.split(\" \");\n int t_hp = Integer.valueOf(arguments[0]);\n int t_att = Integer.valueOf(arguments[1]);\n int a_hp = Integer.valueOf(arguments[2]);\n int a_att = Integer.valueOf(arguments[3]);\n\n String result = \"Yes\";\n\n while (true) {\n\n a_hp = a_hp - t_att;\n if (a_hp <= 0) {\n break;\n }\n\n t_hp = t_hp - a_att;\n if (t_hp <= 0) {\n result = \"No\";\n break;\n }\n }\n\n System.out.println(result);\n }\n}",
"Main",
"public static void main(String[] args) {\n\n Scanner stdIn = new Scanner(System.in);\n String input = stdIn.nextLine();\n stdIn.close();\n\n String[] arguments = input.split(\" \");\n int t_hp = Integer.valueOf(arguments[0]);\n int t_att = Integer.valueOf(arguments[1]);\n int a_hp = Integer.valueOf(arguments[2]);\n int a_att = Integer.valueOf(arguments[3]);\n\n String result = \"Yes\";\n\n while (true) {\n\n a_hp = a_hp - t_att;\n if (a_hp <= 0) {\n break;\n }\n\n t_hp = t_hp - a_att;\n if (t_hp <= 0) {\n result = \"No\";\n break;\n }\n }\n\n System.out.println(result);\n }",
"main",
"{\n\n Scanner stdIn = new Scanner(System.in);\n String input = stdIn.nextLine();\n stdIn.close();\n\n String[] arguments = input.split(\" \");\n int t_hp = Integer.valueOf(arguments[0]);\n int t_att = Integer.valueOf(arguments[1]);\n int a_hp = Integer.valueOf(arguments[2]);\n int a_att = Integer.valueOf(arguments[3]);\n\n String result = \"Yes\";\n\n while (true) {\n\n a_hp = a_hp - t_att;\n if (a_hp <= 0) {\n break;\n }\n\n t_hp = t_hp - a_att;\n if (t_hp <= 0) {\n result = \"No\";\n break;\n }\n }\n\n System.out.println(result);\n }",
"Scanner stdIn = new Scanner(System.in);",
"stdIn",
"new Scanner(System.in)",
"String input = stdIn.nextLine();",
"input",
"stdIn.nextLine()",
"stdIn.nextLine",
"stdIn",
"stdIn.close()",
"stdIn.close",
"stdIn",
"String[] arguments = input.split(\" \");",
"arguments",
"input.split(\" \")",
"input.split",
"input",
"\" \"",
"int t_hp = Integer.valueOf(arguments[0]);",
"t_hp",
"Integer.valueOf(arguments[0])",
"Integer.valueOf",
"Integer",
"arguments[0]",
"arguments",
"0",
"int t_att = Integer.valueOf(arguments[1]);",
"t_att",
"Integer.valueOf(arguments[1])",
"Integer.valueOf",
"Integer",
"arguments[1]",
"arguments",
"1",
"int a_hp = Integer.valueOf(arguments[2]);",
"a_hp",
"Integer.valueOf(arguments[2])",
"Integer.valueOf",
"Integer",
"arguments[2]",
"arguments",
"2",
"int a_att = Integer.valueOf(arguments[3]);",
"a_att",
"Integer.valueOf(arguments[3])",
"Integer.valueOf",
"Integer",
"arguments[3]",
"arguments",
"3",
"String result = \"Yes\";",
"result",
"\"Yes\"",
"while (true) {\n\n a_hp = a_hp - t_att;\n if (a_hp <= 0) {\n break;\n }\n\n t_hp = t_hp - a_att;\n if (t_hp <= 0) {\n result = \"No\";\n break;\n }\n }",
"true",
"{\n\n a_hp = a_hp - t_att;\n if (a_hp <= 0) {\n break;\n }\n\n t_hp = t_hp - a_att;\n if (t_hp <= 0) {\n result = \"No\";\n break;\n }\n }",
"a_hp = a_hp - t_att",
"a_hp",
"a_hp - t_att",
"a_hp",
"t_att",
"if (a_hp <= 0) {\n break;\n }",
"a_hp <= 0",
"a_hp",
"0",
"{\n break;\n }",
"break;",
"t_hp = t_hp - a_att",
"t_hp",
"t_hp - a_att",
"t_hp",
"a_att",
"if (t_hp <= 0) {\n result = \"No\";\n break;\n }",
"t_hp <= 0",
"t_hp",
"0",
"{\n result = \"No\";\n break;\n }",
"result = \"No\"",
"result",
"\"No\"",
"break;",
"System.out.println(result)",
"System.out.println",
"System.out",
"System",
"System.out",
"result",
"String[] args",
"args",
"public class Main {\n\n /*\n * https://atcoder.jp/contests/abc164/tasks/abc164_a\n */\n\n public static void main(String[] args) {\n\n Scanner stdIn = new Scanner(System.in);\n String input = stdIn.nextLine();\n stdIn.close();\n\n String[] arguments = input.split(\" \");\n int t_hp = Integer.valueOf(arguments[0]);\n int t_att = Integer.valueOf(arguments[1]);\n int a_hp = Integer.valueOf(arguments[2]);\n int a_att = Integer.valueOf(arguments[3]);\n\n String result = \"Yes\";\n\n while (true) {\n\n a_hp = a_hp - t_att;\n if (a_hp <= 0) {\n break;\n }\n\n t_hp = t_hp - a_att;\n if (t_hp <= 0) {\n result = \"No\";\n break;\n }\n }\n\n System.out.println(result);\n }\n}",
"public class Main {\n\n /*\n * https://atcoder.jp/contests/abc164/tasks/abc164_a\n */\n\n public static void main(String[] args) {\n\n Scanner stdIn = new Scanner(System.in);\n String input = stdIn.nextLine();\n stdIn.close();\n\n String[] arguments = input.split(\" \");\n int t_hp = Integer.valueOf(arguments[0]);\n int t_att = Integer.valueOf(arguments[1]);\n int a_hp = Integer.valueOf(arguments[2]);\n int a_att = Integer.valueOf(arguments[3]);\n\n String result = \"Yes\";\n\n while (true) {\n\n a_hp = a_hp - t_att;\n if (a_hp <= 0) {\n break;\n }\n\n t_hp = t_hp - a_att;\n if (t_hp <= 0) {\n result = \"No\";\n break;\n }\n }\n\n System.out.println(result);\n }\n}",
"Main"
] |
import java.util.Scanner;
public class Main {
/*
* https://atcoder.jp/contests/abc164/tasks/abc164_a
*/
public static void main(String[] args) {
Scanner stdIn = new Scanner(System.in);
String input = stdIn.nextLine();
stdIn.close();
String[] arguments = input.split(" ");
int t_hp = Integer.valueOf(arguments[0]);
int t_att = Integer.valueOf(arguments[1]);
int a_hp = Integer.valueOf(arguments[2]);
int a_att = Integer.valueOf(arguments[3]);
String result = "Yes";
while (true) {
a_hp = a_hp - t_att;
if (a_hp <= 0) {
break;
}
t_hp = t_hp - a_att;
if (t_hp <= 0) {
result = "No";
break;
}
}
System.out.println(result);
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
42,
2,
2,
13,
17,
2,
13,
17,
30,
14,
2,
2,
13,
17,
17,
30,
0,
13,
2,
13,
13,
30,
0,
13,
2,
13,
13,
40,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
85,
5
],
[
85,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
36,
40
],
[
40,
41
],
[
40,
42
],
[
35,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
45,
49
],
[
44,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
53,
54
],
[
53,
55
],
[
44,
56
],
[
56,
57
],
[
57,
58
],
[
57,
59
],
[
59,
60
],
[
59,
61
],
[
43,
62
],
[
62,
63
],
[
8,
64
],
[
64,
65
],
[
65,
66
],
[
65,
67
],
[
64,
68
],
[
68,
69
],
[
69,
70
],
[
70,
71
],
[
71,
72
],
[
71,
73
],
[
69,
74
],
[
64,
75
],
[
75,
76
],
[
76,
77
],
[
77,
78
],
[
78,
79
],
[
78,
80
],
[
76,
81
],
[
6,
82
],
[
82,
83
],
[
0,
84
],
[
84,
85
],
[
84,
86
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint TH = sc.nextInt();\n\t\tint TA = sc.nextInt();\n\t\tint AH = sc.nextInt();\n\t\tint AA = sc.nextInt();\n\t\tint turn = 1;\n\n\t\twhile (TH > 0 && AH > 0) {\n\t\t\tif (turn % 2 == 1) {\n\t\t\t\tAH = AH - TA;\n\t\t\t} else {\n\t\t\t\tTH = TH - AA;\n\t\t\t}\n\t\t\tturn++;\n\t\t}\n\n\t\tif (TH <= 0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}else {\n\t\t\tSystem.out.println(\"Yes\");\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 sc = new Scanner(System.in);\n\t\tint TH = sc.nextInt();\n\t\tint TA = sc.nextInt();\n\t\tint AH = sc.nextInt();\n\t\tint AA = sc.nextInt();\n\t\tint turn = 1;\n\n\t\twhile (TH > 0 && AH > 0) {\n\t\t\tif (turn % 2 == 1) {\n\t\t\t\tAH = AH - TA;\n\t\t\t} else {\n\t\t\t\tTH = TH - AA;\n\t\t\t}\n\t\t\tturn++;\n\t\t}\n\n\t\tif (TH <= 0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint TH = sc.nextInt();\n\t\tint TA = sc.nextInt();\n\t\tint AH = sc.nextInt();\n\t\tint AA = sc.nextInt();\n\t\tint turn = 1;\n\n\t\twhile (TH > 0 && AH > 0) {\n\t\t\tif (turn % 2 == 1) {\n\t\t\t\tAH = AH - TA;\n\t\t\t} else {\n\t\t\t\tTH = TH - AA;\n\t\t\t}\n\t\t\tturn++;\n\t\t}\n\n\t\tif (TH <= 0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint TH = sc.nextInt();\n\t\tint TA = sc.nextInt();\n\t\tint AH = sc.nextInt();\n\t\tint AA = sc.nextInt();\n\t\tint turn = 1;\n\n\t\twhile (TH > 0 && AH > 0) {\n\t\t\tif (turn % 2 == 1) {\n\t\t\t\tAH = AH - TA;\n\t\t\t} else {\n\t\t\t\tTH = TH - AA;\n\t\t\t}\n\t\t\tturn++;\n\t\t}\n\n\t\tif (TH <= 0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int TH = sc.nextInt();",
"TH",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int TA = sc.nextInt();",
"TA",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int AH = sc.nextInt();",
"AH",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int AA = sc.nextInt();",
"AA",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int turn = 1;",
"turn",
"1",
"while (TH > 0 && AH > 0) {\n\t\t\tif (turn % 2 == 1) {\n\t\t\t\tAH = AH - TA;\n\t\t\t} else {\n\t\t\t\tTH = TH - AA;\n\t\t\t}\n\t\t\tturn++;\n\t\t}",
"TH > 0 && AH > 0",
"TH > 0",
"TH",
"0",
"AH > 0",
"AH",
"0",
"{\n\t\t\tif (turn % 2 == 1) {\n\t\t\t\tAH = AH - TA;\n\t\t\t} else {\n\t\t\t\tTH = TH - AA;\n\t\t\t}\n\t\t\tturn++;\n\t\t}",
"if (turn % 2 == 1) {\n\t\t\t\tAH = AH - TA;\n\t\t\t} else {\n\t\t\t\tTH = TH - AA;\n\t\t\t}",
"turn % 2 == 1",
"turn % 2",
"turn",
"2",
"1",
"{\n\t\t\t\tAH = AH - TA;\n\t\t\t}",
"AH = AH - TA",
"AH",
"AH - TA",
"AH",
"TA",
"{\n\t\t\t\tTH = TH - AA;\n\t\t\t}",
"TH = TH - AA",
"TH",
"TH - AA",
"TH",
"AA",
"turn++",
"turn",
"if (TH <= 0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}",
"TH <= 0",
"TH",
"0",
"{\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint TH = sc.nextInt();\n\t\tint TA = sc.nextInt();\n\t\tint AH = sc.nextInt();\n\t\tint AA = sc.nextInt();\n\t\tint turn = 1;\n\n\t\twhile (TH > 0 && AH > 0) {\n\t\t\tif (turn % 2 == 1) {\n\t\t\t\tAH = AH - TA;\n\t\t\t} else {\n\t\t\t\tTH = TH - AA;\n\t\t\t}\n\t\t\tturn++;\n\t\t}\n\n\t\tif (TH <= 0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint TH = sc.nextInt();\n\t\tint TA = sc.nextInt();\n\t\tint AH = sc.nextInt();\n\t\tint AA = sc.nextInt();\n\t\tint turn = 1;\n\n\t\twhile (TH > 0 && AH > 0) {\n\t\t\tif (turn % 2 == 1) {\n\t\t\t\tAH = AH - TA;\n\t\t\t} else {\n\t\t\t\tTH = TH - AA;\n\t\t\t}\n\t\t\tturn++;\n\t\t}\n\n\t\tif (TH <= 0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}else {\n\t\t\tSystem.out.println(\"Yes\");\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);
int TH = sc.nextInt();
int TA = sc.nextInt();
int AH = sc.nextInt();
int AA = sc.nextInt();
int turn = 1;
while (TH > 0 && AH > 0) {
if (turn % 2 == 1) {
AH = AH - TA;
} else {
TH = TH - AA;
}
turn++;
}
if (TH <= 0) {
System.out.println("No");
}else {
System.out.println("Yes");
}
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
20,
23,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
4,
18,
18,
13,
13,
17,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
0,
13,
17,
3,
0,
13,
13,
14,
13,
4,
18,
13,
17,
4,
18,
13,
17,
4,
18,
13,
6,
13,
41,
13,
2,
17,
17,
41,
13,
17,
41,
13,
20,
13,
41,
13,
17,
41,
13,
17,
41,
13,
13,
41,
13,
17,
41,
13,
12,
13,
30,
0,
13,
20,
12,
13,
30,
38,
5,
13,
30,
0,
13,
20,
30,
0,
13,
20,
23,
13,
12,
13,
30,
42,
2,
13,
13,
30,
38,
5,
13,
30,
29,
13,
30,
0,
13,
4,
18,
13,
13,
14,
2,
13,
40,
17,
29,
13,
0,
13,
17,
29,
18,
13,
40,
13,
12,
13,
30,
29,
4,
13,
12,
13,
30,
0,
13,
17,
41,
13,
17,
14,
2,
13,
13,
0,
13,
4,
13,
11,
1,
2,
2,
13,
17,
2,
13,
17,
1,
0,
13,
4,
13,
30,
30,
14,
2,
13,
17,
0,
13,
17,
41,
13,
17,
11,
1,
2,
2,
13,
17,
2,
13,
17,
1,
0,
13,
4,
13,
30,
30,
0,
13,
2,
2,
2,
2,
13,
17,
2,
13,
17,
13,
17,
0,
13,
17,
29,
8,
13,
40,
13,
13,
12,
13,
30,
41,
13,
4,
13,
29,
8,
2,
13,
17,
13,
2,
13,
2,
4,
13,
13,
12,
13,
30,
41,
13,
20,
42,
2,
13,
17,
0,
13,
4,
13,
42,
2,
13,
17,
30,
4,
18,
13,
13,
0,
13,
4,
13,
29,
4,
18,
13,
12,
13,
30,
41,
13,
20,
42,
2,
13,
17,
0,
13,
4,
13,
42,
2,
13,
17,
30,
4,
18,
13,
13,
0,
13,
4,
13,
29,
4,
18,
13,
12,
13,
30,
14,
2,
13,
17,
29,
17,
42,
17,
30,
0,
13,
4,
13,
14,
2,
13,
13,
29,
17,
14,
2,
13,
17,
29,
17,
12,
13,
30,
41,
13,
20,
13,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
0,
18,
13,
13,
4,
13,
29,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
402,
8
],
[
402,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
9,
13
],
[
13,
14
],
[
402,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
18,
20
],
[
17,
21
],
[
21,
22
],
[
21,
23
],
[
17,
24
],
[
24,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
24,
29
],
[
17,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
17,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
38,
39
],
[
17,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
43,
44
],
[
17,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
48,
49
],
[
17,
50
],
[
50,
51
],
[
50,
52
],
[
17,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
54,
58
],
[
58,
59
],
[
58,
60
],
[
53,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
65,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
69,
73
],
[
61,
74
],
[
74,
75
],
[
74,
76
],
[
17,
77
],
[
77,
78
],
[
77,
79
],
[
79,
80
],
[
80,
81
],
[
79,
82
],
[
77,
83
],
[
83,
84
],
[
84,
85
],
[
83,
86
],
[
17,
87
],
[
87,
88
],
[
88,
89
],
[
402,
90
],
[
90,
91
],
[
90,
92
],
[
92,
93
],
[
92,
94
],
[
94,
95
],
[
94,
96
],
[
90,
97
],
[
97,
98
],
[
97,
99
],
[
90,
100
],
[
100,
101
],
[
100,
102
],
[
90,
104
],
[
104,
105
],
[
104,
106
],
[
90,
107
],
[
107,
108
],
[
107,
109
],
[
90,
110
],
[
110,
111
],
[
110,
112
],
[
90,
113
],
[
113,
114
],
[
113,
115
],
[
90,
116
],
[
116,
117
],
[
90,
118
],
[
118,
119
],
[
118,
120
],
[
120,
121
],
[
121,
122
],
[
121,
123
],
[
90,
124
],
[
124,
125
],
[
124,
126
],
[
126,
127
],
[
127,
128
],
[
128,
129
],
[
128,
130
],
[
130,
131
],
[
131,
132
],
[
131,
133
],
[
127,
134
],
[
134,
135
],
[
135,
136
],
[
135,
137
],
[
124,
138
],
[
138,
139
],
[
90,
140
],
[
140,
141
],
[
140,
142
],
[
142,
143
],
[
143,
144
],
[
144,
145
],
[
144,
146
],
[
143,
147
],
[
147,
148
],
[
148,
149
],
[
149,
150
],
[
149,
151
],
[
151,
152
],
[
152,
153
],
[
148,
154
],
[
154,
155
],
[
155,
156
],
[
155,
157
],
[
157,
158
],
[
158,
159
],
[
157,
160
],
[
147,
161
],
[
161,
162
],
[
162,
163
],
[
162,
164
],
[
164,
165
],
[
161,
166
],
[
166,
167
],
[
147,
168
],
[
168,
169
],
[
168,
170
],
[
142,
171
],
[
171,
172
],
[
172,
173
],
[
172,
174
],
[
174,
175
],
[
90,
176
],
[
176,
177
],
[
176,
178
],
[
178,
179
],
[
179,
180
],
[
180,
181
],
[
90,
182
],
[
182,
183
],
[
182,
184
],
[
184,
185
],
[
185,
186
],
[
185,
187
],
[
184,
188
],
[
188,
189
],
[
188,
190
],
[
184,
191
],
[
191,
192
],
[
192,
193
],
[
192,
194
],
[
191,
195
],
[
195,
196
],
[
195,
197
],
[
197,
198
],
[
184,
199
],
[
199,
200
],
[
199,
201
],
[
201,
202
],
[
202,
203
],
[
202,
204
],
[
201,
205
],
[
205,
206
],
[
205,
207
],
[
199,
208
],
[
208,
209
],
[
209,
210
],
[
209,
211
],
[
211,
212
],
[
199,
213
],
[
214,
214
],
[
214,
215
],
[
215,
216
],
[
216,
217
],
[
216,
218
],
[
215,
219
],
[
219,
220
],
[
219,
221
],
[
184,
222
],
[
222,
223
],
[
222,
224
],
[
184,
225
],
[
225,
226
],
[
225,
227
],
[
227,
228
],
[
228,
229
],
[
228,
230
],
[
227,
231
],
[
231,
232
],
[
231,
233
],
[
225,
234
],
[
234,
235
],
[
235,
236
],
[
235,
237
],
[
237,
238
],
[
225,
239
],
[
240,
240
],
[
240,
241
],
[
241,
242
],
[
241,
243
],
[
243,
244
],
[
245,
245
],
[
245,
246
],
[
246,
247
],
[
246,
248
],
[
245,
249
],
[
249,
250
],
[
249,
251
],
[
245,
252
],
[
243,
253
],
[
240,
254
],
[
254,
255
],
[
254,
256
],
[
184,
257
],
[
257,
258
],
[
258,
259
],
[
258,
260
],
[
260,
261
],
[
258,
262
],
[
90,
263
],
[
263,
264
],
[
263,
265
],
[
265,
266
],
[
266,
267
],
[
266,
268
],
[
268,
269
],
[
265,
270
],
[
270,
271
],
[
271,
272
],
[
272,
273
],
[
272,
274
],
[
271,
275
],
[
271,
276
],
[
276,
277
],
[
276,
278
],
[
278,
279
],
[
279,
280
],
[
278,
281
],
[
90,
282
],
[
282,
283
],
[
282,
284
],
[
284,
285
],
[
285,
286
],
[
285,
287
],
[
284,
288
],
[
288,
289
],
[
289,
290
],
[
289,
291
],
[
288,
292
],
[
292,
293
],
[
292,
294
],
[
294,
295
],
[
284,
296
],
[
296,
297
],
[
297,
298
],
[
297,
299
],
[
296,
300
],
[
300,
301
],
[
301,
302
],
[
302,
303
],
[
301,
304
],
[
300,
305
],
[
305,
306
],
[
305,
307
],
[
307,
308
],
[
284,
309
],
[
309,
310
],
[
310,
311
],
[
311,
312
],
[
90,
313
],
[
313,
314
],
[
313,
315
],
[
315,
316
],
[
316,
317
],
[
316,
318
],
[
315,
319
],
[
319,
320
],
[
320,
321
],
[
320,
322
],
[
319,
323
],
[
323,
324
],
[
323,
325
],
[
325,
326
],
[
315,
327
],
[
327,
328
],
[
328,
329
],
[
328,
330
],
[
327,
331
],
[
331,
332
],
[
332,
333
],
[
333,
334
],
[
332,
335
],
[
331,
336
],
[
336,
337
],
[
336,
338
],
[
338,
339
],
[
315,
340
],
[
340,
341
],
[
341,
342
],
[
342,
343
],
[
90,
344
],
[
344,
345
],
[
344,
346
],
[
346,
347
],
[
347,
348
],
[
348,
349
],
[
348,
350
],
[
347,
351
],
[
351,
352
],
[
346,
353
],
[
353,
354
],
[
353,
355
],
[
355,
356
],
[
356,
357
],
[
356,
358
],
[
358,
359
],
[
355,
360
],
[
360,
361
],
[
361,
362
],
[
361,
363
],
[
360,
364
],
[
364,
365
],
[
360,
366
],
[
366,
367
],
[
367,
368
],
[
367,
369
],
[
366,
370
],
[
370,
371
],
[
90,
372
],
[
372,
373
],
[
372,
374
],
[
374,
375
],
[
375,
376
],
[
375,
377
],
[
374,
379
],
[
379,
380
],
[
380,
381
],
[
381,
382
],
[
381,
383
],
[
379,
384
],
[
384,
385
],
[
384,
386
],
[
379,
387
],
[
387,
388
],
[
388,
389
],
[
379,
390
],
[
390,
391
],
[
391,
392
],
[
392,
393
],
[
392,
394
],
[
391,
395
],
[
395,
396
],
[
374,
397
],
[
397,
398
],
[
372,
399
],
[
399,
400
],
[
0,
401
],
[
401,
402
],
[
401,
403
]
] |
[
"import java.io.*;\nimport java.util.*;\n\npublic class Main {\n\tpublic static void main (String[] args) { new Main(); }\n\n\tpublic Main() {\n\t\tFastScanner fs = new FastScanner();\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tSystem.err.println(\"\");\n\n\t\tint h1 = fs.nextInt(), s1 = fs.nextInt();\n\t\tint h2 = fs.nextInt(), s2 = fs.nextInt();\n\t\t\n\t\tboolean wins = false;\n\t\twhile(h1 > 0 && h2 > 0) {\n\t\t\th2 -= s1;\n\t\t\tif(h2 <= 0) {\n\t\t\t\twins = true;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\th1 -= s2;\n\t\t}\n\t\t\n\t\tif(wins) out.println(\"Yes\");\n\t\telse out.println(\"No\");\n\t\t\n\t\tout.close();\n\t}\n\n\tclass FastScanner {\n\t\tpublic int BS = 1<<16;\n\t\tpublic char NC = (char)0;\n\t\tbyte[] buf = new byte[BS];\n\t\tint bId = 0, size = 0;\n\t\tchar c = NC;\n\t\tdouble num = 1;\n\t\tBufferedInputStream in;\n\n\t\tpublic FastScanner() {\n\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t}\n\n\t\tpublic FastScanner(String s) {\n\t\t\ttry {\n\t\t\t\tin = new BufferedInputStream(new FileInputStream(new File(s)), BS);\n\t\t\t}\n\t\t\tcatch (Exception e) {\n\t\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t\t}\n\t\t}\n\n\t\tpublic char nextChar(){\n\t\t\twhile(bId==size) {\n\t\t\t\ttry {\n\t\t\t\t\tsize = in.read(buf);\n\t\t\t\t}catch(Exception e) {\n\t\t\t\t\treturn NC;\n\t\t\t\t} \n\t\t\t\tif(size==-1)return NC;\n\t\t\t\tbId=0;\n\t\t\t}\n\t\t\treturn (char)buf[bId++];\n\t\t}\n\n\t\tpublic int nextInt() {\n\t\t\treturn (int)nextLong();\n\t\t}\n\n\t\tpublic long nextLong() {\n\t\t\tnum=1;\n\t\t\tboolean neg = false;\n\t\t\tif(c==NC)c=nextChar();\n\t\t\tfor(;(c<'0' || c>'9'); c = nextChar()) {\n\t\t\t\tif(c=='-')neg=true;\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tfor(; c>='0' && c <='9'; c=nextChar()) {\n\t\t\t\tres = (res<<3)+(res<<1)+c-'0';\n\t\t\t\tnum*=10;\n\t\t\t}\n\t\t\treturn neg?-res:res;\n\t\t}\n\n\t\tpublic double nextDouble() {\n\t\t\tdouble cur = nextLong();\n\t\t\treturn c!='.' ? cur:cur+nextLong()/num;\n\t\t}\n\n\t\tpublic String next() {\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c>32) {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}\n\n\t\tpublic String nextLine() {\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c!='\\n') {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}\n\n\t\tpublic boolean hasNext() {\n\t\t\tif(c>32)return true;\n\t\t\twhile(true) {\n\t\t\t\tc=nextChar();\n\t\t\t\tif(c==NC)return false;\n\t\t\t\telse if(c>32)return true;\n\t\t\t}\n\t\t}\n\t\t\n\t\tpublic int[] nextIntArray(int n) {\n\t\t\tint[] res = new int[n];\n\t\t\tfor(int i = 0; i < n; i++) res[i] = nextInt();\n\t\t\treturn res;\n\t\t}\n\t\t\n\t}\n\n}",
"import java.io.*;",
"io.*",
"java",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\tpublic static void main (String[] args) { new Main(); }\n\n\tpublic Main() {\n\t\tFastScanner fs = new FastScanner();\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tSystem.err.println(\"\");\n\n\t\tint h1 = fs.nextInt(), s1 = fs.nextInt();\n\t\tint h2 = fs.nextInt(), s2 = fs.nextInt();\n\t\t\n\t\tboolean wins = false;\n\t\twhile(h1 > 0 && h2 > 0) {\n\t\t\th2 -= s1;\n\t\t\tif(h2 <= 0) {\n\t\t\t\twins = true;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\th1 -= s2;\n\t\t}\n\t\t\n\t\tif(wins) out.println(\"Yes\");\n\t\telse out.println(\"No\");\n\t\t\n\t\tout.close();\n\t}\n\n\tclass FastScanner {\n\t\tpublic int BS = 1<<16;\n\t\tpublic char NC = (char)0;\n\t\tbyte[] buf = new byte[BS];\n\t\tint bId = 0, size = 0;\n\t\tchar c = NC;\n\t\tdouble num = 1;\n\t\tBufferedInputStream in;\n\n\t\tpublic FastScanner() {\n\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t}\n\n\t\tpublic FastScanner(String s) {\n\t\t\ttry {\n\t\t\t\tin = new BufferedInputStream(new FileInputStream(new File(s)), BS);\n\t\t\t}\n\t\t\tcatch (Exception e) {\n\t\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t\t}\n\t\t}\n\n\t\tpublic char nextChar(){\n\t\t\twhile(bId==size) {\n\t\t\t\ttry {\n\t\t\t\t\tsize = in.read(buf);\n\t\t\t\t}catch(Exception e) {\n\t\t\t\t\treturn NC;\n\t\t\t\t} \n\t\t\t\tif(size==-1)return NC;\n\t\t\t\tbId=0;\n\t\t\t}\n\t\t\treturn (char)buf[bId++];\n\t\t}\n\n\t\tpublic int nextInt() {\n\t\t\treturn (int)nextLong();\n\t\t}\n\n\t\tpublic long nextLong() {\n\t\t\tnum=1;\n\t\t\tboolean neg = false;\n\t\t\tif(c==NC)c=nextChar();\n\t\t\tfor(;(c<'0' || c>'9'); c = nextChar()) {\n\t\t\t\tif(c=='-')neg=true;\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tfor(; c>='0' && c <='9'; c=nextChar()) {\n\t\t\t\tres = (res<<3)+(res<<1)+c-'0';\n\t\t\t\tnum*=10;\n\t\t\t}\n\t\t\treturn neg?-res:res;\n\t\t}\n\n\t\tpublic double nextDouble() {\n\t\t\tdouble cur = nextLong();\n\t\t\treturn c!='.' ? cur:cur+nextLong()/num;\n\t\t}\n\n\t\tpublic String next() {\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c>32) {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}\n\n\t\tpublic String nextLine() {\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c!='\\n') {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}\n\n\t\tpublic boolean hasNext() {\n\t\t\tif(c>32)return true;\n\t\t\twhile(true) {\n\t\t\t\tc=nextChar();\n\t\t\t\tif(c==NC)return false;\n\t\t\t\telse if(c>32)return true;\n\t\t\t}\n\t\t}\n\t\t\n\t\tpublic int[] nextIntArray(int n) {\n\t\t\tint[] res = new int[n];\n\t\t\tfor(int i = 0; i < n; i++) res[i] = nextInt();\n\t\t\treturn res;\n\t\t}\n\t\t\n\t}\n\n}",
"Main",
"public static void main (String[] args) { new Main(); }",
"main",
"{ new Main(); }",
"new Main()",
"String[] args",
"args",
"public Main() {\n\t\tFastScanner fs = new FastScanner();\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tSystem.err.println(\"\");\n\n\t\tint h1 = fs.nextInt(), s1 = fs.nextInt();\n\t\tint h2 = fs.nextInt(), s2 = fs.nextInt();\n\t\t\n\t\tboolean wins = false;\n\t\twhile(h1 > 0 && h2 > 0) {\n\t\t\th2 -= s1;\n\t\t\tif(h2 <= 0) {\n\t\t\t\twins = true;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\th1 -= s2;\n\t\t}\n\t\t\n\t\tif(wins) out.println(\"Yes\");\n\t\telse out.println(\"No\");\n\t\t\n\t\tout.close();\n\t}",
"Main",
"{\n\t\tFastScanner fs = new FastScanner();\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tSystem.err.println(\"\");\n\n\t\tint h1 = fs.nextInt(), s1 = fs.nextInt();\n\t\tint h2 = fs.nextInt(), s2 = fs.nextInt();\n\t\t\n\t\tboolean wins = false;\n\t\twhile(h1 > 0 && h2 > 0) {\n\t\t\th2 -= s1;\n\t\t\tif(h2 <= 0) {\n\t\t\t\twins = true;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\th1 -= s2;\n\t\t}\n\t\t\n\t\tif(wins) out.println(\"Yes\");\n\t\telse out.println(\"No\");\n\t\t\n\t\tout.close();\n\t}",
"FastScanner fs = new FastScanner();",
"fs",
"new FastScanner()",
"PrintWriter out = new PrintWriter(System.out);",
"out",
"new PrintWriter(System.out)",
"System.err.println(\"\")",
"System.err.println",
"System.err",
"System",
"System.err",
"\"\"",
"int h1 = fs.nextInt()",
"h1",
"fs.nextInt()",
"fs.nextInt",
"fs",
"s1 = fs.nextInt();",
"s1",
"fs.nextInt()",
"fs.nextInt",
"fs",
"int h2 = fs.nextInt()",
"h2",
"fs.nextInt()",
"fs.nextInt",
"fs",
"s2 = fs.nextInt();",
"s2",
"fs.nextInt()",
"fs.nextInt",
"fs",
"boolean wins = false;",
"wins",
"false",
"while(h1 > 0 && h2 > 0) {\n\t\t\th2 -= s1;\n\t\t\tif(h2 <= 0) {\n\t\t\t\twins = true;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\th1 -= s2;\n\t\t}",
"h1 > 0 && h2 > 0",
"h1 > 0",
"h1",
"0",
"h2 > 0",
"h2",
"0",
"{\n\t\t\th2 -= s1;\n\t\t\tif(h2 <= 0) {\n\t\t\t\twins = true;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\th1 -= s2;\n\t\t}",
"h2 -= s1",
"h2",
"s1",
"if(h2 <= 0) {\n\t\t\t\twins = true;\n\t\t\t\tbreak;\n\t\t\t}",
"h2 <= 0",
"h2",
"0",
"{\n\t\t\t\twins = true;\n\t\t\t\tbreak;\n\t\t\t}",
"wins = true",
"wins",
"true",
"break;",
"h1 -= s2",
"h1",
"s2",
"if(wins) out.println(\"Yes\");\n\t\telse out.println(\"No\");",
"wins",
"out.println(\"Yes\")",
"out.println",
"out",
"\"Yes\"",
"out.println(\"No\")",
"out.println",
"out",
"\"No\"",
"out.close()",
"out.close",
"out",
"class FastScanner {\n\t\tpublic int BS = 1<<16;\n\t\tpublic char NC = (char)0;\n\t\tbyte[] buf = new byte[BS];\n\t\tint bId = 0, size = 0;\n\t\tchar c = NC;\n\t\tdouble num = 1;\n\t\tBufferedInputStream in;\n\n\t\tpublic FastScanner() {\n\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t}\n\n\t\tpublic FastScanner(String s) {\n\t\t\ttry {\n\t\t\t\tin = new BufferedInputStream(new FileInputStream(new File(s)), BS);\n\t\t\t}\n\t\t\tcatch (Exception e) {\n\t\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t\t}\n\t\t}\n\n\t\tpublic char nextChar(){\n\t\t\twhile(bId==size) {\n\t\t\t\ttry {\n\t\t\t\t\tsize = in.read(buf);\n\t\t\t\t}catch(Exception e) {\n\t\t\t\t\treturn NC;\n\t\t\t\t} \n\t\t\t\tif(size==-1)return NC;\n\t\t\t\tbId=0;\n\t\t\t}\n\t\t\treturn (char)buf[bId++];\n\t\t}\n\n\t\tpublic int nextInt() {\n\t\t\treturn (int)nextLong();\n\t\t}\n\n\t\tpublic long nextLong() {\n\t\t\tnum=1;\n\t\t\tboolean neg = false;\n\t\t\tif(c==NC)c=nextChar();\n\t\t\tfor(;(c<'0' || c>'9'); c = nextChar()) {\n\t\t\t\tif(c=='-')neg=true;\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tfor(; c>='0' && c <='9'; c=nextChar()) {\n\t\t\t\tres = (res<<3)+(res<<1)+c-'0';\n\t\t\t\tnum*=10;\n\t\t\t}\n\t\t\treturn neg?-res:res;\n\t\t}\n\n\t\tpublic double nextDouble() {\n\t\t\tdouble cur = nextLong();\n\t\t\treturn c!='.' ? cur:cur+nextLong()/num;\n\t\t}\n\n\t\tpublic String next() {\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c>32) {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}\n\n\t\tpublic String nextLine() {\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c!='\\n') {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}\n\n\t\tpublic boolean hasNext() {\n\t\t\tif(c>32)return true;\n\t\t\twhile(true) {\n\t\t\t\tc=nextChar();\n\t\t\t\tif(c==NC)return false;\n\t\t\t\telse if(c>32)return true;\n\t\t\t}\n\t\t}\n\t\t\n\t\tpublic int[] nextIntArray(int n) {\n\t\t\tint[] res = new int[n];\n\t\t\tfor(int i = 0; i < n; i++) res[i] = nextInt();\n\t\t\treturn res;\n\t\t}\n\t\t\n\t}",
"FastScanner",
"public int BS = 1<<16;",
"BS",
"1<<16",
"1",
"16",
"public char NC = (char)0;",
"NC",
"(char)0",
"byte[] buf = new byte[BS];",
"buf",
"new byte[BS]",
"BS",
"int bId = 0",
"bId",
"0",
"size = 0;",
"size",
"0",
"char c = NC;",
"c",
"NC",
"double num = 1;",
"num",
"1",
"BufferedInputStream in;",
"in",
"public FastScanner() {\n\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t}",
"FastScanner",
"{\n\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t}",
"in = new BufferedInputStream(System.in, BS)",
"in",
"new BufferedInputStream(System.in, BS)",
"public FastScanner(String s) {\n\t\t\ttry {\n\t\t\t\tin = new BufferedInputStream(new FileInputStream(new File(s)), BS);\n\t\t\t}\n\t\t\tcatch (Exception e) {\n\t\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t\t}\n\t\t}",
"FastScanner",
"{\n\t\t\ttry {\n\t\t\t\tin = new BufferedInputStream(new FileInputStream(new File(s)), BS);\n\t\t\t}\n\t\t\tcatch (Exception e) {\n\t\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t\t}\n\t\t}",
"try {\n\t\t\t\tin = new BufferedInputStream(new FileInputStream(new File(s)), BS);\n\t\t\t}\n\t\t\tcatch (Exception e) {\n\t\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t\t}",
"catch (Exception e) {\n\t\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t\t}",
"Exception e",
"{\n\t\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t\t}",
"in = new BufferedInputStream(System.in, BS)",
"in",
"new BufferedInputStream(System.in, BS)",
"{\n\t\t\t\tin = new BufferedInputStream(new FileInputStream(new File(s)), BS);\n\t\t\t}",
"in = new BufferedInputStream(new FileInputStream(new File(s)), BS)",
"in",
"new BufferedInputStream(new FileInputStream(new File(s)), BS)",
"String s",
"s",
"public char nextChar(){\n\t\t\twhile(bId==size) {\n\t\t\t\ttry {\n\t\t\t\t\tsize = in.read(buf);\n\t\t\t\t}catch(Exception e) {\n\t\t\t\t\treturn NC;\n\t\t\t\t} \n\t\t\t\tif(size==-1)return NC;\n\t\t\t\tbId=0;\n\t\t\t}\n\t\t\treturn (char)buf[bId++];\n\t\t}",
"nextChar",
"{\n\t\t\twhile(bId==size) {\n\t\t\t\ttry {\n\t\t\t\t\tsize = in.read(buf);\n\t\t\t\t}catch(Exception e) {\n\t\t\t\t\treturn NC;\n\t\t\t\t} \n\t\t\t\tif(size==-1)return NC;\n\t\t\t\tbId=0;\n\t\t\t}\n\t\t\treturn (char)buf[bId++];\n\t\t}",
"while(bId==size) {\n\t\t\t\ttry {\n\t\t\t\t\tsize = in.read(buf);\n\t\t\t\t}catch(Exception e) {\n\t\t\t\t\treturn NC;\n\t\t\t\t} \n\t\t\t\tif(size==-1)return NC;\n\t\t\t\tbId=0;\n\t\t\t}",
"bId==size",
"bId",
"size",
"{\n\t\t\t\ttry {\n\t\t\t\t\tsize = in.read(buf);\n\t\t\t\t}catch(Exception e) {\n\t\t\t\t\treturn NC;\n\t\t\t\t} \n\t\t\t\tif(size==-1)return NC;\n\t\t\t\tbId=0;\n\t\t\t}",
"try {\n\t\t\t\t\tsize = in.read(buf);\n\t\t\t\t}catch(Exception e) {\n\t\t\t\t\treturn NC;\n\t\t\t\t}",
"catch(Exception e) {\n\t\t\t\t\treturn NC;\n\t\t\t\t}",
"Exception e",
"{\n\t\t\t\t\treturn NC;\n\t\t\t\t}",
"return NC;",
"NC",
"{\n\t\t\t\t\tsize = in.read(buf);\n\t\t\t\t}",
"size = in.read(buf)",
"size",
"in.read(buf)",
"in.read",
"in",
"buf",
"if(size==-1)return NC;",
"size==-1",
"size",
"-1",
"1",
"return NC;",
"NC",
"bId=0",
"bId",
"0",
"return (char)buf[bId++];",
"(char)buf[bId++]",
"buf",
"bId++",
"bId",
"public int nextInt() {\n\t\t\treturn (int)nextLong();\n\t\t}",
"nextInt",
"{\n\t\t\treturn (int)nextLong();\n\t\t}",
"return (int)nextLong();",
"(int)nextLong()",
"nextLong",
"public long nextLong() {\n\t\t\tnum=1;\n\t\t\tboolean neg = false;\n\t\t\tif(c==NC)c=nextChar();\n\t\t\tfor(;(c<'0' || c>'9'); c = nextChar()) {\n\t\t\t\tif(c=='-')neg=true;\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tfor(; c>='0' && c <='9'; c=nextChar()) {\n\t\t\t\tres = (res<<3)+(res<<1)+c-'0';\n\t\t\t\tnum*=10;\n\t\t\t}\n\t\t\treturn neg?-res:res;\n\t\t}",
"nextLong",
"{\n\t\t\tnum=1;\n\t\t\tboolean neg = false;\n\t\t\tif(c==NC)c=nextChar();\n\t\t\tfor(;(c<'0' || c>'9'); c = nextChar()) {\n\t\t\t\tif(c=='-')neg=true;\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tfor(; c>='0' && c <='9'; c=nextChar()) {\n\t\t\t\tres = (res<<3)+(res<<1)+c-'0';\n\t\t\t\tnum*=10;\n\t\t\t}\n\t\t\treturn neg?-res:res;\n\t\t}",
"num=1",
"num",
"1",
"boolean neg = false;",
"neg",
"false",
"if(c==NC)c=nextChar();",
"c==NC",
"c",
"NC",
"c=nextChar()",
"c",
"nextChar()",
"nextChar",
"for(;(c<'0' || c>'9'); c = nextChar()) {\n\t\t\t\tif(c=='-')neg=true;\n\t\t\t}",
";",
"(c<'0' || c>'9')",
"c<'0'",
"c",
"'0'",
"c>'9'",
"c",
"'9'",
"c = nextChar()",
"c = nextChar()",
"c",
"nextChar()",
"nextChar",
"{\n\t\t\t\tif(c=='-')neg=true;\n\t\t\t}",
"{\n\t\t\t\tif(c=='-')neg=true;\n\t\t\t}",
"if(c=='-')neg=true;",
"c=='-'",
"c",
"'-'",
"neg=true",
"neg",
"true",
"long res = 0;",
"res",
"0",
"for(; c>='0' && c <='9'; c=nextChar()) {\n\t\t\t\tres = (res<<3)+(res<<1)+c-'0';\n\t\t\t\tnum*=10;\n\t\t\t}",
";",
"c>='0' && c <='9'",
"c>='0'",
"c",
"'0'",
"c <='9'",
"c",
"'9'",
"c=nextChar()",
"c=nextChar()",
"c",
"nextChar()",
"nextChar",
"{\n\t\t\t\tres = (res<<3)+(res<<1)+c-'0';\n\t\t\t\tnum*=10;\n\t\t\t}",
"{\n\t\t\t\tres = (res<<3)+(res<<1)+c-'0';\n\t\t\t\tnum*=10;\n\t\t\t}",
"res = (res<<3)+(res<<1)+c-'0'",
"res",
"(res<<3)+(res<<1)+c-'0'",
"(res<<3)+(res<<1)+c",
"(res<<3)+(res<<1)+c",
"(res<<3)",
"res",
"3",
"(res<<1)",
"res",
"1",
"c",
"'0'",
"num*=10",
"num",
"10",
"return neg?-res:res;",
"neg?-res:res",
"neg",
"-res",
"res",
"res",
"public double nextDouble() {\n\t\t\tdouble cur = nextLong();\n\t\t\treturn c!='.' ? cur:cur+nextLong()/num;\n\t\t}",
"nextDouble",
"{\n\t\t\tdouble cur = nextLong();\n\t\t\treturn c!='.' ? cur:cur+nextLong()/num;\n\t\t}",
"double cur = nextLong();",
"cur",
"nextLong()",
"nextLong",
"return c!='.' ? cur:cur+nextLong()/num;",
"c!='.' ? cur:cur+nextLong()/num",
"c!='.'",
"c",
"'.'",
"cur",
"cur+nextLong()/num",
"cur",
"nextLong()/num",
"nextLong()",
"nextLong",
"num",
"public String next() {\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c>32) {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}",
"next",
"{\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c>32) {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}",
"StringBuilder res = new StringBuilder();",
"res",
"new StringBuilder()",
"while(c<=32)c=nextChar();",
"c<=32",
"c",
"32",
"c=nextChar()",
"c",
"nextChar()",
"nextChar",
"while(c>32) {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}",
"c>32",
"c",
"32",
"{\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}",
"res.append(c)",
"res.append",
"res",
"c",
"c=nextChar()",
"c",
"nextChar()",
"nextChar",
"return res.toString();",
"res.toString()",
"res.toString",
"res",
"public String nextLine() {\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c!='\\n') {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}",
"nextLine",
"{\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c!='\\n') {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}",
"StringBuilder res = new StringBuilder();",
"res",
"new StringBuilder()",
"while(c<=32)c=nextChar();",
"c<=32",
"c",
"32",
"c=nextChar()",
"c",
"nextChar()",
"nextChar",
"while(c!='\\n') {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}",
"c!='\\n'",
"c",
"'\\n'",
"{\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}",
"res.append(c)",
"res.append",
"res",
"c",
"c=nextChar()",
"c",
"nextChar()",
"nextChar",
"return res.toString();",
"res.toString()",
"res.toString",
"res",
"public boolean hasNext() {\n\t\t\tif(c>32)return true;\n\t\t\twhile(true) {\n\t\t\t\tc=nextChar();\n\t\t\t\tif(c==NC)return false;\n\t\t\t\telse if(c>32)return true;\n\t\t\t}\n\t\t}",
"hasNext",
"{\n\t\t\tif(c>32)return true;\n\t\t\twhile(true) {\n\t\t\t\tc=nextChar();\n\t\t\t\tif(c==NC)return false;\n\t\t\t\telse if(c>32)return true;\n\t\t\t}\n\t\t}",
"if(c>32)return true;",
"c>32",
"c",
"32",
"return true;",
"true",
"while(true) {\n\t\t\t\tc=nextChar();\n\t\t\t\tif(c==NC)return false;\n\t\t\t\telse if(c>32)return true;\n\t\t\t}",
"true",
"{\n\t\t\t\tc=nextChar();\n\t\t\t\tif(c==NC)return false;\n\t\t\t\telse if(c>32)return true;\n\t\t\t}",
"c=nextChar()",
"c",
"nextChar()",
"nextChar",
"if(c==NC)return false;\n\t\t\t\telse if(c>32)return true;",
"c==NC",
"c",
"NC",
"return false;",
"false",
"if(c>32)return true;",
"c>32",
"c",
"32",
"return true;",
"true",
"public int[] nextIntArray(int n) {\n\t\t\tint[] res = new int[n];\n\t\t\tfor(int i = 0; i < n; i++) res[i] = nextInt();\n\t\t\treturn res;\n\t\t}",
"nextIntArray",
"{\n\t\t\tint[] res = new int[n];\n\t\t\tfor(int i = 0; i < n; i++) res[i] = nextInt();\n\t\t\treturn res;\n\t\t}",
"int[] res = new int[n];",
"res",
"new int[n]",
"n",
"for(int i = 0; i < n; i++) res[i] = nextInt();",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < n",
"i",
"n",
"i++",
"i++",
"i",
"res[i] = nextInt();",
"res[i] = nextInt()",
"res[i]",
"res",
"i",
"nextInt()",
"nextInt",
"return res;",
"res",
"int n",
"n",
"public class Main {\n\tpublic static void main (String[] args) { new Main(); }\n\n\tpublic Main() {\n\t\tFastScanner fs = new FastScanner();\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tSystem.err.println(\"\");\n\n\t\tint h1 = fs.nextInt(), s1 = fs.nextInt();\n\t\tint h2 = fs.nextInt(), s2 = fs.nextInt();\n\t\t\n\t\tboolean wins = false;\n\t\twhile(h1 > 0 && h2 > 0) {\n\t\t\th2 -= s1;\n\t\t\tif(h2 <= 0) {\n\t\t\t\twins = true;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\th1 -= s2;\n\t\t}\n\t\t\n\t\tif(wins) out.println(\"Yes\");\n\t\telse out.println(\"No\");\n\t\t\n\t\tout.close();\n\t}\n\n\tclass FastScanner {\n\t\tpublic int BS = 1<<16;\n\t\tpublic char NC = (char)0;\n\t\tbyte[] buf = new byte[BS];\n\t\tint bId = 0, size = 0;\n\t\tchar c = NC;\n\t\tdouble num = 1;\n\t\tBufferedInputStream in;\n\n\t\tpublic FastScanner() {\n\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t}\n\n\t\tpublic FastScanner(String s) {\n\t\t\ttry {\n\t\t\t\tin = new BufferedInputStream(new FileInputStream(new File(s)), BS);\n\t\t\t}\n\t\t\tcatch (Exception e) {\n\t\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t\t}\n\t\t}\n\n\t\tpublic char nextChar(){\n\t\t\twhile(bId==size) {\n\t\t\t\ttry {\n\t\t\t\t\tsize = in.read(buf);\n\t\t\t\t}catch(Exception e) {\n\t\t\t\t\treturn NC;\n\t\t\t\t} \n\t\t\t\tif(size==-1)return NC;\n\t\t\t\tbId=0;\n\t\t\t}\n\t\t\treturn (char)buf[bId++];\n\t\t}\n\n\t\tpublic int nextInt() {\n\t\t\treturn (int)nextLong();\n\t\t}\n\n\t\tpublic long nextLong() {\n\t\t\tnum=1;\n\t\t\tboolean neg = false;\n\t\t\tif(c==NC)c=nextChar();\n\t\t\tfor(;(c<'0' || c>'9'); c = nextChar()) {\n\t\t\t\tif(c=='-')neg=true;\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tfor(; c>='0' && c <='9'; c=nextChar()) {\n\t\t\t\tres = (res<<3)+(res<<1)+c-'0';\n\t\t\t\tnum*=10;\n\t\t\t}\n\t\t\treturn neg?-res:res;\n\t\t}\n\n\t\tpublic double nextDouble() {\n\t\t\tdouble cur = nextLong();\n\t\t\treturn c!='.' ? cur:cur+nextLong()/num;\n\t\t}\n\n\t\tpublic String next() {\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c>32) {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}\n\n\t\tpublic String nextLine() {\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c!='\\n') {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}\n\n\t\tpublic boolean hasNext() {\n\t\t\tif(c>32)return true;\n\t\t\twhile(true) {\n\t\t\t\tc=nextChar();\n\t\t\t\tif(c==NC)return false;\n\t\t\t\telse if(c>32)return true;\n\t\t\t}\n\t\t}\n\t\t\n\t\tpublic int[] nextIntArray(int n) {\n\t\t\tint[] res = new int[n];\n\t\t\tfor(int i = 0; i < n; i++) res[i] = nextInt();\n\t\t\treturn res;\n\t\t}\n\t\t\n\t}\n\n}",
"public class Main {\n\tpublic static void main (String[] args) { new Main(); }\n\n\tpublic Main() {\n\t\tFastScanner fs = new FastScanner();\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tSystem.err.println(\"\");\n\n\t\tint h1 = fs.nextInt(), s1 = fs.nextInt();\n\t\tint h2 = fs.nextInt(), s2 = fs.nextInt();\n\t\t\n\t\tboolean wins = false;\n\t\twhile(h1 > 0 && h2 > 0) {\n\t\t\th2 -= s1;\n\t\t\tif(h2 <= 0) {\n\t\t\t\twins = true;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\th1 -= s2;\n\t\t}\n\t\t\n\t\tif(wins) out.println(\"Yes\");\n\t\telse out.println(\"No\");\n\t\t\n\t\tout.close();\n\t}\n\n\tclass FastScanner {\n\t\tpublic int BS = 1<<16;\n\t\tpublic char NC = (char)0;\n\t\tbyte[] buf = new byte[BS];\n\t\tint bId = 0, size = 0;\n\t\tchar c = NC;\n\t\tdouble num = 1;\n\t\tBufferedInputStream in;\n\n\t\tpublic FastScanner() {\n\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t}\n\n\t\tpublic FastScanner(String s) {\n\t\t\ttry {\n\t\t\t\tin = new BufferedInputStream(new FileInputStream(new File(s)), BS);\n\t\t\t}\n\t\t\tcatch (Exception e) {\n\t\t\t\tin = new BufferedInputStream(System.in, BS);\n\t\t\t}\n\t\t}\n\n\t\tpublic char nextChar(){\n\t\t\twhile(bId==size) {\n\t\t\t\ttry {\n\t\t\t\t\tsize = in.read(buf);\n\t\t\t\t}catch(Exception e) {\n\t\t\t\t\treturn NC;\n\t\t\t\t} \n\t\t\t\tif(size==-1)return NC;\n\t\t\t\tbId=0;\n\t\t\t}\n\t\t\treturn (char)buf[bId++];\n\t\t}\n\n\t\tpublic int nextInt() {\n\t\t\treturn (int)nextLong();\n\t\t}\n\n\t\tpublic long nextLong() {\n\t\t\tnum=1;\n\t\t\tboolean neg = false;\n\t\t\tif(c==NC)c=nextChar();\n\t\t\tfor(;(c<'0' || c>'9'); c = nextChar()) {\n\t\t\t\tif(c=='-')neg=true;\n\t\t\t}\n\t\t\tlong res = 0;\n\t\t\tfor(; c>='0' && c <='9'; c=nextChar()) {\n\t\t\t\tres = (res<<3)+(res<<1)+c-'0';\n\t\t\t\tnum*=10;\n\t\t\t}\n\t\t\treturn neg?-res:res;\n\t\t}\n\n\t\tpublic double nextDouble() {\n\t\t\tdouble cur = nextLong();\n\t\t\treturn c!='.' ? cur:cur+nextLong()/num;\n\t\t}\n\n\t\tpublic String next() {\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c>32) {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}\n\n\t\tpublic String nextLine() {\n\t\t\tStringBuilder res = new StringBuilder();\n\t\t\twhile(c<=32)c=nextChar();\n\t\t\twhile(c!='\\n') {\n\t\t\t\tres.append(c);\n\t\t\t\tc=nextChar();\n\t\t\t}\n\t\t\treturn res.toString();\n\t\t}\n\n\t\tpublic boolean hasNext() {\n\t\t\tif(c>32)return true;\n\t\t\twhile(true) {\n\t\t\t\tc=nextChar();\n\t\t\t\tif(c==NC)return false;\n\t\t\t\telse if(c>32)return true;\n\t\t\t}\n\t\t}\n\t\t\n\t\tpublic int[] nextIntArray(int n) {\n\t\t\tint[] res = new int[n];\n\t\t\tfor(int i = 0; i < n; i++) res[i] = nextInt();\n\t\t\treturn res;\n\t\t}\n\t\t\n\t}\n\n}",
"Main"
] |
import java.io.*;
import java.util.*;
public class Main {
public static void main (String[] args) { new Main(); }
public Main() {
FastScanner fs = new FastScanner();
PrintWriter out = new PrintWriter(System.out);
System.err.println("");
int h1 = fs.nextInt(), s1 = fs.nextInt();
int h2 = fs.nextInt(), s2 = fs.nextInt();
boolean wins = false;
while(h1 > 0 && h2 > 0) {
h2 -= s1;
if(h2 <= 0) {
wins = true;
break;
}
h1 -= s2;
}
if(wins) out.println("Yes");
else out.println("No");
out.close();
}
class FastScanner {
public int BS = 1<<16;
public char NC = (char)0;
byte[] buf = new byte[BS];
int bId = 0, size = 0;
char c = NC;
double num = 1;
BufferedInputStream in;
public FastScanner() {
in = new BufferedInputStream(System.in, BS);
}
public FastScanner(String s) {
try {
in = new BufferedInputStream(new FileInputStream(new File(s)), BS);
}
catch (Exception e) {
in = new BufferedInputStream(System.in, BS);
}
}
public char nextChar(){
while(bId==size) {
try {
size = in.read(buf);
}catch(Exception e) {
return NC;
}
if(size==-1)return NC;
bId=0;
}
return (char)buf[bId++];
}
public int nextInt() {
return (int)nextLong();
}
public long nextLong() {
num=1;
boolean neg = false;
if(c==NC)c=nextChar();
for(;(c<'0' || c>'9'); c = nextChar()) {
if(c=='-')neg=true;
}
long res = 0;
for(; c>='0' && c <='9'; c=nextChar()) {
res = (res<<3)+(res<<1)+c-'0';
num*=10;
}
return neg?-res:res;
}
public double nextDouble() {
double cur = nextLong();
return c!='.' ? cur:cur+nextLong()/num;
}
public String next() {
StringBuilder res = new StringBuilder();
while(c<=32)c=nextChar();
while(c>32) {
res.append(c);
c=nextChar();
}
return res.toString();
}
public String nextLine() {
StringBuilder res = new StringBuilder();
while(c<=32)c=nextChar();
while(c!='\n') {
res.append(c);
c=nextChar();
}
return res.toString();
}
public boolean hasNext() {
if(c>32)return true;
while(true) {
c=nextChar();
if(c==NC)return false;
else if(c>32)return true;
}
}
public int[] nextIntArray(int n) {
int[] res = new int[n];
for(int i = 0; i < n; i++) res[i] = nextInt();
return res;
}
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
38,
5,
13,
30,
30,
41,
13,
17,
41,
13,
20,
17,
41,
13,
4,
18,
13,
41,
13,
4,
18,
4,
18,
13,
17,
11,
1,
41,
13,
17,
2,
13,
18,
13,
13,
1,
40,
13,
30,
30,
0,
18,
13,
13,
4,
18,
13,
18,
13,
13,
41,
13,
2,
2,
2,
18,
13,
17,
18,
13,
17,
17,
18,
13,
17,
41,
13,
2,
2,
2,
18,
13,
17,
18,
13,
17,
17,
18,
13,
17,
4,
18,
18,
13,
13,
8,
2,
13,
13,
17,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
109,
8
],
[
109,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
16,
17
],
[
16,
18
],
[
15,
19
],
[
19,
20
],
[
20,
21
],
[
20,
22
],
[
19,
23
],
[
23,
24
],
[
23,
25
],
[
19,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
19,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
37,
38
],
[
34,
39
],
[
19,
40
],
[
40,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
40,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
47,
49
],
[
40,
50
],
[
50,
51
],
[
51,
52
],
[
40,
53
],
[
54,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
55,
59
],
[
59,
60
],
[
60,
61
],
[
59,
62
],
[
62,
63
],
[
62,
64
],
[
19,
65
],
[
65,
66
],
[
65,
67
],
[
67,
68
],
[
68,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
69,
73
],
[
73,
74
],
[
73,
75
],
[
68,
76
],
[
67,
77
],
[
77,
78
],
[
77,
79
],
[
19,
80
],
[
80,
81
],
[
80,
82
],
[
82,
83
],
[
83,
84
],
[
84,
85
],
[
85,
86
],
[
85,
87
],
[
84,
88
],
[
88,
89
],
[
88,
90
],
[
83,
91
],
[
82,
92
],
[
92,
93
],
[
92,
94
],
[
19,
95
],
[
95,
96
],
[
96,
97
],
[
97,
98
],
[
97,
99
],
[
95,
100
],
[
100,
101
],
[
101,
102
],
[
101,
103
],
[
100,
104
],
[
100,
105
],
[
9,
106
],
[
106,
107
],
[
0,
108
],
[
108,
109
],
[
108,
110
]
] |
[
"import java.io.*;\nimport java.util.*;\n\npublic class Main {\n public static void main(String[]args) {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n try {\n String isWin = \"\";\n \n int [] a = new int [4];\n \n \n String lines = br.readLine(); \n \n String[] strs = lines.trim().split(\"\\\\s+\");\n \n for (int i = 0; i < strs.length; i++) {\n a[i] = Integer.parseInt(strs[i]);\n }\n \n int taka = (a[0]+a[3]-1)/a[3];\n int aoki = (a[2]+a[1]-1)/a[1];\n \n \n System.out.println(taka>=aoki?\"Yes\" : \"No\" ); \n \n }catch (Exception e) {\n }\n \n}}",
"import java.io.*;",
"io.*",
"java",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n public static void main(String[]args) {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n try {\n String isWin = \"\";\n \n int [] a = new int [4];\n \n \n String lines = br.readLine(); \n \n String[] strs = lines.trim().split(\"\\\\s+\");\n \n for (int i = 0; i < strs.length; i++) {\n a[i] = Integer.parseInt(strs[i]);\n }\n \n int taka = (a[0]+a[3]-1)/a[3];\n int aoki = (a[2]+a[1]-1)/a[1];\n \n \n System.out.println(taka>=aoki?\"Yes\" : \"No\" ); \n \n }catch (Exception e) {\n }\n \n}}",
"Main",
"public static void main(String[]args) {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n try {\n String isWin = \"\";\n \n int [] a = new int [4];\n \n \n String lines = br.readLine(); \n \n String[] strs = lines.trim().split(\"\\\\s+\");\n \n for (int i = 0; i < strs.length; i++) {\n a[i] = Integer.parseInt(strs[i]);\n }\n \n int taka = (a[0]+a[3]-1)/a[3];\n int aoki = (a[2]+a[1]-1)/a[1];\n \n \n System.out.println(taka>=aoki?\"Yes\" : \"No\" ); \n \n }catch (Exception e) {\n }\n \n}",
"main",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n try {\n String isWin = \"\";\n \n int [] a = new int [4];\n \n \n String lines = br.readLine(); \n \n String[] strs = lines.trim().split(\"\\\\s+\");\n \n for (int i = 0; i < strs.length; i++) {\n a[i] = Integer.parseInt(strs[i]);\n }\n \n int taka = (a[0]+a[3]-1)/a[3];\n int aoki = (a[2]+a[1]-1)/a[1];\n \n \n System.out.println(taka>=aoki?\"Yes\" : \"No\" ); \n \n }catch (Exception e) {\n }\n \n}",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"try {\n String isWin = \"\";\n \n int [] a = new int [4];\n \n \n String lines = br.readLine(); \n \n String[] strs = lines.trim().split(\"\\\\s+\");\n \n for (int i = 0; i < strs.length; i++) {\n a[i] = Integer.parseInt(strs[i]);\n }\n \n int taka = (a[0]+a[3]-1)/a[3];\n int aoki = (a[2]+a[1]-1)/a[1];\n \n \n System.out.println(taka>=aoki?\"Yes\" : \"No\" ); \n \n }catch (Exception e) {\n }",
"catch (Exception e) {\n }",
"Exception e",
"{\n }",
"{\n String isWin = \"\";\n \n int [] a = new int [4];\n \n \n String lines = br.readLine(); \n \n String[] strs = lines.trim().split(\"\\\\s+\");\n \n for (int i = 0; i < strs.length; i++) {\n a[i] = Integer.parseInt(strs[i]);\n }\n \n int taka = (a[0]+a[3]-1)/a[3];\n int aoki = (a[2]+a[1]-1)/a[1];\n \n \n System.out.println(taka>=aoki?\"Yes\" : \"No\" ); \n \n }",
"String isWin = \"\";",
"isWin",
"\"\"",
"int [] a = new int [4];",
"a",
"new int [4]",
"4",
"String lines = br.readLine();",
"lines",
"br.readLine()",
"br.readLine",
"br",
"String[] strs = lines.trim().split(\"\\\\s+\");",
"strs",
"lines.trim().split(\"\\\\s+\")",
"lines.trim().split",
"lines.trim()",
"lines.trim",
"lines",
"\"\\\\s+\"",
"for (int i = 0; i < strs.length; i++) {\n a[i] = Integer.parseInt(strs[i]);\n }",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < strs.length",
"i",
"strs.length",
"strs",
"strs.length",
"i++",
"i++",
"i",
"{\n a[i] = Integer.parseInt(strs[i]);\n }",
"{\n a[i] = Integer.parseInt(strs[i]);\n }",
"a[i] = Integer.parseInt(strs[i])",
"a[i]",
"a",
"i",
"Integer.parseInt(strs[i])",
"Integer.parseInt",
"Integer",
"strs[i]",
"strs",
"i",
"int taka = (a[0]+a[3]-1)/a[3];",
"taka",
"(a[0]+a[3]-1)/a[3]",
"(a[0]+a[3]-1)",
"a[0]+a[3]",
"a[0]",
"a",
"0",
"a[3]",
"a",
"3",
"1",
"a[3]",
"a",
"3",
"int aoki = (a[2]+a[1]-1)/a[1];",
"aoki",
"(a[2]+a[1]-1)/a[1]",
"(a[2]+a[1]-1)",
"a[2]+a[1]",
"a[2]",
"a",
"2",
"a[1]",
"a",
"1",
"1",
"a[1]",
"a",
"1",
"System.out.println(taka>=aoki?\"Yes\" : \"No\" )",
"System.out.println",
"System.out",
"System",
"System.out",
"taka>=aoki?\"Yes\" : \"No\"",
"taka>=aoki",
"taka",
"aoki",
"\"Yes\"",
"\"No\"",
"String[]args",
"args",
"public class Main {\n public static void main(String[]args) {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n try {\n String isWin = \"\";\n \n int [] a = new int [4];\n \n \n String lines = br.readLine(); \n \n String[] strs = lines.trim().split(\"\\\\s+\");\n \n for (int i = 0; i < strs.length; i++) {\n a[i] = Integer.parseInt(strs[i]);\n }\n \n int taka = (a[0]+a[3]-1)/a[3];\n int aoki = (a[2]+a[1]-1)/a[1];\n \n \n System.out.println(taka>=aoki?\"Yes\" : \"No\" ); \n \n }catch (Exception e) {\n }\n \n}}",
"public class Main {\n public static void main(String[]args) {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n try {\n String isWin = \"\";\n \n int [] a = new int [4];\n \n \n String lines = br.readLine(); \n \n String[] strs = lines.trim().split(\"\\\\s+\");\n \n for (int i = 0; i < strs.length; i++) {\n a[i] = Integer.parseInt(strs[i]);\n }\n \n int taka = (a[0]+a[3]-1)/a[3];\n int aoki = (a[2]+a[1]-1)/a[1];\n \n \n System.out.println(taka>=aoki?\"Yes\" : \"No\" ); \n \n }catch (Exception e) {\n }\n \n}}",
"Main"
] |
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[]args) {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
try {
String isWin = "";
int [] a = new int [4];
String lines = br.readLine();
String[] strs = lines.trim().split("\\s+");
for (int i = 0; i < strs.length; i++) {
a[i] = Integer.parseInt(strs[i]);
}
int taka = (a[0]+a[3]-1)/a[3];
int aoki = (a[2]+a[1]-1)/a[1];
System.out.println(taka>=aoki?"Yes" : "No" );
}catch (Exception e) {
}
}}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
17,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
0,
13,
17,
3,
0,
13,
13,
14,
2,
13,
17,
30,
3,
14,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
4,
18,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
99,
5
],
[
99,
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
],
[
23,
24
],
[
22,
25
],
[
25,
26
],
[
26,
27
],
[
8,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
30,
33
],
[
33,
34
],
[
34,
35
],
[
8,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
39,
40
],
[
38,
41
],
[
41,
42
],
[
42,
43
],
[
8,
44
],
[
44,
45
],
[
44,
46
],
[
8,
47
],
[
47,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
48,
52
],
[
52,
53
],
[
52,
54
],
[
47,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
55,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
59,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
63,
67
],
[
55,
68
],
[
68,
69
],
[
68,
70
],
[
55,
71
],
[
71,
72
],
[
72,
73
],
[
72,
74
],
[
71,
75
],
[
75,
76
],
[
8,
77
],
[
77,
78
],
[
77,
79
],
[
79,
80
],
[
80,
81
],
[
81,
82
],
[
82,
83
],
[
82,
84
],
[
80,
85
],
[
77,
86
],
[
86,
87
],
[
87,
88
],
[
88,
89
],
[
89,
90
],
[
89,
91
],
[
87,
92
],
[
8,
93
],
[
93,
94
],
[
94,
95
],
[
6,
96
],
[
96,
97
],
[
0,
98
],
[
98,
99
],
[
98,
100
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int t_hp = Integer.parseInt(sc.next());\n int t_atk = Integer.parseInt(sc.next());\n int a_hp = Integer.parseInt(sc.next());\n int a_atk = Integer.parseInt(sc.next());\n boolean t_victory = false;\n while ((t_hp > 0) || (a_hp > 0)) {\n a_hp -= t_atk;\n if (a_hp <= 0) {\n t_victory = true;\n break;\n }\n t_hp -= a_atk;\n if (t_hp <= 0) {\n break;\n }\n }\n if (t_victory) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n sc.close();\n }\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int t_hp = Integer.parseInt(sc.next());\n int t_atk = Integer.parseInt(sc.next());\n int a_hp = Integer.parseInt(sc.next());\n int a_atk = Integer.parseInt(sc.next());\n boolean t_victory = false;\n while ((t_hp > 0) || (a_hp > 0)) {\n a_hp -= t_atk;\n if (a_hp <= 0) {\n t_victory = true;\n break;\n }\n t_hp -= a_atk;\n if (t_hp <= 0) {\n break;\n }\n }\n if (t_victory) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n sc.close();\n }\n\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int t_hp = Integer.parseInt(sc.next());\n int t_atk = Integer.parseInt(sc.next());\n int a_hp = Integer.parseInt(sc.next());\n int a_atk = Integer.parseInt(sc.next());\n boolean t_victory = false;\n while ((t_hp > 0) || (a_hp > 0)) {\n a_hp -= t_atk;\n if (a_hp <= 0) {\n t_victory = true;\n break;\n }\n t_hp -= a_atk;\n if (t_hp <= 0) {\n break;\n }\n }\n if (t_victory) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n sc.close();\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int t_hp = Integer.parseInt(sc.next());\n int t_atk = Integer.parseInt(sc.next());\n int a_hp = Integer.parseInt(sc.next());\n int a_atk = Integer.parseInt(sc.next());\n boolean t_victory = false;\n while ((t_hp > 0) || (a_hp > 0)) {\n a_hp -= t_atk;\n if (a_hp <= 0) {\n t_victory = true;\n break;\n }\n t_hp -= a_atk;\n if (t_hp <= 0) {\n break;\n }\n }\n if (t_victory) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n sc.close();\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int t_hp = Integer.parseInt(sc.next());",
"t_hp",
"Integer.parseInt(sc.next())",
"Integer.parseInt",
"Integer",
"sc.next()",
"sc.next",
"sc",
"int t_atk = Integer.parseInt(sc.next());",
"t_atk",
"Integer.parseInt(sc.next())",
"Integer.parseInt",
"Integer",
"sc.next()",
"sc.next",
"sc",
"int a_hp = Integer.parseInt(sc.next());",
"a_hp",
"Integer.parseInt(sc.next())",
"Integer.parseInt",
"Integer",
"sc.next()",
"sc.next",
"sc",
"int a_atk = Integer.parseInt(sc.next());",
"a_atk",
"Integer.parseInt(sc.next())",
"Integer.parseInt",
"Integer",
"sc.next()",
"sc.next",
"sc",
"boolean t_victory = false;",
"t_victory",
"false",
"while ((t_hp > 0) || (a_hp > 0)) {\n a_hp -= t_atk;\n if (a_hp <= 0) {\n t_victory = true;\n break;\n }\n t_hp -= a_atk;\n if (t_hp <= 0) {\n break;\n }\n }",
"(t_hp > 0) || (a_hp > 0)",
"(t_hp > 0)",
"t_hp",
"0",
"(a_hp > 0)",
"a_hp",
"0",
"{\n a_hp -= t_atk;\n if (a_hp <= 0) {\n t_victory = true;\n break;\n }\n t_hp -= a_atk;\n if (t_hp <= 0) {\n break;\n }\n }",
"a_hp -= t_atk",
"a_hp",
"t_atk",
"if (a_hp <= 0) {\n t_victory = true;\n break;\n }",
"a_hp <= 0",
"a_hp",
"0",
"{\n t_victory = true;\n break;\n }",
"t_victory = true",
"t_victory",
"true",
"break;",
"t_hp -= a_atk",
"t_hp",
"a_atk",
"if (t_hp <= 0) {\n break;\n }",
"t_hp <= 0",
"t_hp",
"0",
"{\n break;\n }",
"break;",
"if (t_victory) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }",
"t_victory",
"{\n System.out.println(\"Yes\");\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n System.out.println(\"No\");\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"sc.close()",
"sc.close",
"sc",
"String[] args",
"args",
"public class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int t_hp = Integer.parseInt(sc.next());\n int t_atk = Integer.parseInt(sc.next());\n int a_hp = Integer.parseInt(sc.next());\n int a_atk = Integer.parseInt(sc.next());\n boolean t_victory = false;\n while ((t_hp > 0) || (a_hp > 0)) {\n a_hp -= t_atk;\n if (a_hp <= 0) {\n t_victory = true;\n break;\n }\n t_hp -= a_atk;\n if (t_hp <= 0) {\n break;\n }\n }\n if (t_victory) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n sc.close();\n }\n\n}",
"public class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int t_hp = Integer.parseInt(sc.next());\n int t_atk = Integer.parseInt(sc.next());\n int a_hp = Integer.parseInt(sc.next());\n int a_atk = Integer.parseInt(sc.next());\n boolean t_victory = false;\n while ((t_hp > 0) || (a_hp > 0)) {\n a_hp -= t_atk;\n if (a_hp <= 0) {\n t_victory = true;\n break;\n }\n t_hp -= a_atk;\n if (t_hp <= 0) {\n break;\n }\n }\n if (t_victory) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n sc.close();\n }\n\n}",
"Main"
] |
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int t_hp = Integer.parseInt(sc.next());
int t_atk = Integer.parseInt(sc.next());
int a_hp = Integer.parseInt(sc.next());
int a_atk = Integer.parseInt(sc.next());
boolean t_victory = false;
while ((t_hp > 0) || (a_hp > 0)) {
a_hp -= t_atk;
if (a_hp <= 0) {
t_victory = true;
break;
}
t_hp -= a_atk;
if (t_hp <= 0) {
break;
}
}
if (t_victory) {
System.out.println("Yes");
} else {
System.out.println("No");
}
sc.close();
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
2,
13,
13,
41,
13,
2,
13,
13,
41,
13,
17,
41,
13,
17,
14,
2,
2,
13,
17,
17,
30,
40,
13,
0,
13,
13,
30,
0,
13,
13,
14,
2,
2,
13,
17,
17,
30,
40,
13,
0,
13,
13,
30,
0,
13,
13,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
101,
5
],
[
101,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
34,
36
],
[
8,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
39,
41
],
[
8,
42
],
[
42,
43
],
[
42,
44
],
[
8,
45
],
[
45,
46
],
[
45,
47
],
[
8,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
49,
53
],
[
48,
54
],
[
54,
55
],
[
55,
56
],
[
54,
57
],
[
57,
58
],
[
57,
59
],
[
48,
60
],
[
60,
61
],
[
61,
62
],
[
61,
63
],
[
8,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
65,
69
],
[
64,
70
],
[
70,
71
],
[
71,
72
],
[
70,
73
],
[
73,
74
],
[
73,
75
],
[
64,
76
],
[
76,
77
],
[
77,
78
],
[
77,
79
],
[
8,
80
],
[
80,
81
],
[
81,
82
],
[
81,
83
],
[
80,
84
],
[
84,
85
],
[
85,
86
],
[
86,
87
],
[
87,
88
],
[
87,
89
],
[
85,
90
],
[
80,
91
],
[
91,
92
],
[
92,
93
],
[
93,
94
],
[
94,
95
],
[
94,
96
],
[
92,
97
],
[
6,
98
],
[
98,
99
],
[
0,
100
],
[
100,
101
],
[
100,
102
]
] |
[
"import java.util.Scanner;\n\npublic class Main{\n public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt(); \n double ad = (double)a / d;\n double cd = (double)c / b;\n int ansa = 0;\n int ansc = 0;\n if(ad % 1 != 0){\n ad++;\n ansa = (int)ad;\n }else{\n ansa = (int)ad;\n }\n \n if(cd % 1 != 0){\n cd++;\n ansc = (int)cd;\n }else{\n ansc = (int)cd;\n } \n if(ansa >= ansc){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\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 a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt(); \n double ad = (double)a / d;\n double cd = (double)c / b;\n int ansa = 0;\n int ansc = 0;\n if(ad % 1 != 0){\n ad++;\n ansa = (int)ad;\n }else{\n ansa = (int)ad;\n }\n \n if(cd % 1 != 0){\n cd++;\n ansc = (int)cd;\n }else{\n ansc = (int)cd;\n } \n if(ansa >= ansc){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }\n}",
"Main",
"public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt(); \n double ad = (double)a / d;\n double cd = (double)c / b;\n int ansa = 0;\n int ansc = 0;\n if(ad % 1 != 0){\n ad++;\n ansa = (int)ad;\n }else{\n ansa = (int)ad;\n }\n \n if(cd % 1 != 0){\n cd++;\n ansc = (int)cd;\n }else{\n ansc = (int)cd;\n } \n if(ansa >= ansc){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt(); \n double ad = (double)a / d;\n double cd = (double)c / b;\n int ansa = 0;\n int ansc = 0;\n if(ad % 1 != 0){\n ad++;\n ansa = (int)ad;\n }else{\n ansa = (int)ad;\n }\n \n if(cd % 1 != 0){\n cd++;\n ansc = (int)cd;\n }else{\n ansc = (int)cd;\n } \n if(ansa >= ansc){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b = sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c = sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int d = sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"double ad = (double)a / d;",
"ad",
"(double)a / d",
"(double)a",
"d",
"double cd = (double)c / b;",
"cd",
"(double)c / b",
"(double)c",
"b",
"int ansa = 0;",
"ansa",
"0",
"int ansc = 0;",
"ansc",
"0",
"if(ad % 1 != 0){\n ad++;\n ansa = (int)ad;\n }else{\n ansa = (int)ad;\n }",
"ad % 1 != 0",
"ad % 1",
"ad",
"1",
"0",
"{\n ad++;\n ansa = (int)ad;\n }",
"ad++",
"ad",
"ansa = (int)ad",
"ansa",
"(int)ad",
"{\n ansa = (int)ad;\n }",
"ansa = (int)ad",
"ansa",
"(int)ad",
"if(cd % 1 != 0){\n cd++;\n ansc = (int)cd;\n }else{\n ansc = (int)cd;\n }",
"cd % 1 != 0",
"cd % 1",
"cd",
"1",
"0",
"{\n cd++;\n ansc = (int)cd;\n }",
"cd++",
"cd",
"ansc = (int)cd",
"ansc",
"(int)cd",
"{\n ansc = (int)cd;\n }",
"ansc = (int)cd",
"ansc",
"(int)cd",
"if(ansa >= ansc){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }",
"ansa >= ansc",
"ansa",
"ansc",
"{\n System.out.println(\"Yes\");\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n System.out.println(\"No\");\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String args[]",
"args",
"public class Main{\n public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt(); \n double ad = (double)a / d;\n double cd = (double)c / b;\n int ansa = 0;\n int ansc = 0;\n if(ad % 1 != 0){\n ad++;\n ansa = (int)ad;\n }else{\n ansa = (int)ad;\n }\n \n if(cd % 1 != 0){\n cd++;\n ansc = (int)cd;\n }else{\n ansc = (int)cd;\n } \n if(ansa >= ansc){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }\n}",
"public class Main{\n public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt(); \n double ad = (double)a / d;\n double cd = (double)c / b;\n int ansa = 0;\n int ansc = 0;\n if(ad % 1 != 0){\n ad++;\n ansa = (int)ad;\n }else{\n ansa = (int)ad;\n }\n \n if(cd % 1 != 0){\n cd++;\n ansc = (int)cd;\n }else{\n ansc = (int)cd;\n } \n if(ansa >= ansc){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\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();
int b = sc.nextInt();
int c = sc.nextInt();
int d = sc.nextInt();
double ad = (double)a / d;
double cd = (double)c / b;
int ansa = 0;
int ansc = 0;
if(ad % 1 != 0){
ad++;
ansa = (int)ad;
}else{
ansa = (int)ad;
}
if(cd % 1 != 0){
cd++;
ansc = (int)cd;
}else{
ansc = (int)cd;
}
if(ansa >= ansc){
System.out.println("Yes");
}else{
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
38,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
8,
2,
2,
2,
2,
13,
13,
17,
13,
2,
2,
2,
13,
13,
17,
13,
17,
17,
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
],
[
10,
11
],
[
11,
12
],
[
11,
13
],
[
10,
14
],
[
14,
15
],
[
14,
16
],
[
16,
17
],
[
17,
18
],
[
10,
19
],
[
19,
20
],
[
19,
21
],
[
21,
22
],
[
22,
23
],
[
10,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
27,
28
],
[
10,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
32,
33
],
[
10,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
34,
39
],
[
39,
40
],
[
40,
41
],
[
41,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
42,
46
],
[
41,
47
],
[
40,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
49,
53
],
[
48,
54
],
[
39,
55
],
[
39,
56
],
[
6,
57
],
[
57,
58
],
[
0,
59
],
[
59,
60
],
[
59,
61
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry (Scanner scanner = new Scanner(System.in)) {\n\t\t\tint a = scanner.nextInt(), b = scanner.nextInt();\n\t\t\tint c = scanner.nextInt(), d = scanner.nextInt();\n\t\t\tSystem.out.println(((c + b - 1) / b <= (a + d - 1) / d) ? \"Yes\" : \"No\");\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\ttry (Scanner scanner = new Scanner(System.in)) {\n\t\t\tint a = scanner.nextInt(), b = scanner.nextInt();\n\t\t\tint c = scanner.nextInt(), d = scanner.nextInt();\n\t\t\tSystem.out.println(((c + b - 1) / b <= (a + d - 1) / d) ? \"Yes\" : \"No\");\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\ttry (Scanner scanner = new Scanner(System.in)) {\n\t\t\tint a = scanner.nextInt(), b = scanner.nextInt();\n\t\t\tint c = scanner.nextInt(), d = scanner.nextInt();\n\t\t\tSystem.out.println(((c + b - 1) / b <= (a + d - 1) / d) ? \"Yes\" : \"No\");\n\t\t}\n\t}",
"main",
"{\n\t\ttry (Scanner scanner = new Scanner(System.in)) {\n\t\t\tint a = scanner.nextInt(), b = scanner.nextInt();\n\t\t\tint c = scanner.nextInt(), d = scanner.nextInt();\n\t\t\tSystem.out.println(((c + b - 1) / b <= (a + d - 1) / d) ? \"Yes\" : \"No\");\n\t\t}\n\t}",
"try (Scanner scanner = new Scanner(System.in)) {\n\t\t\tint a = scanner.nextInt(), b = scanner.nextInt();\n\t\t\tint c = scanner.nextInt(), d = scanner.nextInt();\n\t\t\tSystem.out.println(((c + b - 1) / b <= (a + d - 1) / d) ? \"Yes\" : \"No\");\n\t\t}",
"{\n\t\t\tint a = scanner.nextInt(), b = scanner.nextInt();\n\t\t\tint c = scanner.nextInt(), d = scanner.nextInt();\n\t\t\tSystem.out.println(((c + b - 1) / b <= (a + d - 1) / d) ? \"Yes\" : \"No\");\n\t\t}",
"Scanner scanner = new Scanner(System.in)",
"Scanner scanner = new Scanner(System.in)",
"new Scanner(System.in)",
"int a = scanner.nextInt()",
"a",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"b = scanner.nextInt();",
"b",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"int c = scanner.nextInt()",
"c",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"d = scanner.nextInt();",
"d",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"System.out.println(((c + b - 1) / b <= (a + d - 1) / d) ? \"Yes\" : \"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"((c + b - 1) / b <= (a + d - 1) / d) ? \"Yes\" : \"No\"",
"((c + b - 1) / b <= (a + d - 1) / d)",
"(c + b - 1) / b",
"(c + b - 1)",
"c + b",
"c",
"b",
"1",
"b",
"(a + d - 1) / d",
"(a + d - 1)",
"a + d",
"a",
"d",
"1",
"d",
"\"Yes\"",
"\"No\"",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry (Scanner scanner = new Scanner(System.in)) {\n\t\t\tint a = scanner.nextInt(), b = scanner.nextInt();\n\t\t\tint c = scanner.nextInt(), d = scanner.nextInt();\n\t\t\tSystem.out.println(((c + b - 1) / b <= (a + d - 1) / d) ? \"Yes\" : \"No\");\n\t\t}\n\t}\n}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry (Scanner scanner = new Scanner(System.in)) {\n\t\t\tint a = scanner.nextInt(), b = scanner.nextInt();\n\t\t\tint c = scanner.nextInt(), d = scanner.nextInt();\n\t\t\tSystem.out.println(((c + b - 1) / b <= (a + d - 1) / d) ? \"Yes\" : \"No\");\n\t\t}\n\t}\n}",
"Main"
] |
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
try (Scanner scanner = new Scanner(System.in)) {
int a = scanner.nextInt(), b = scanner.nextInt();
int c = scanner.nextInt(), d = scanner.nextInt();
System.out.println(((c + b - 1) / b <= (a + d - 1) / d) ? "Yes" : "No");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
2,
2,
13,
17,
2,
13,
17,
30,
14,
2,
13,
17,
30,
0,
13,
2,
13,
13,
14,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
2,
13,
13,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
90,
5
],
[
90,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
37,
38
],
[
37,
39
],
[
32,
40
],
[
40,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
41,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
48,
49
],
[
48,
50
],
[
40,
51
],
[
51,
52
],
[
52,
53
],
[
53,
54
],
[
53,
55
],
[
52,
56
],
[
56,
57
],
[
56,
58
],
[
51,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
62,
63
],
[
62,
64
],
[
8,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
65,
69
],
[
69,
70
],
[
70,
71
],
[
71,
72
],
[
72,
73
],
[
72,
74
],
[
70,
75
],
[
65,
76
],
[
76,
77
],
[
77,
78
],
[
77,
79
],
[
76,
80
],
[
80,
81
],
[
81,
82
],
[
82,
83
],
[
83,
84
],
[
83,
85
],
[
81,
86
],
[
6,
87
],
[
87,
88
],
[
0,
89
],
[
89,
90
],
[
89,
91
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO 自動生成されたメソッド・スタブ\n\n\t\tScanner sc=new Scanner(System.in);\n\t\t//高橋君の体力\n\t\tint A=sc.nextInt();\n\t\t//高橋君の攻撃力\n\t\tint B=sc.nextInt();\n\t\t//青木君の体力\n\t\tint C=sc.nextInt();\n\t\t//青木くんの攻撃力\n\t\tint D=sc.nextInt();\n\t\t\n\t\t\n\t\twhile(C>0&&A>0) {\n\t\t\tif(C>0) {\n\t\t\t\tC=C-B;\n\t\t\t}\n\t\t\t\t\n\t\t\tif(A>0&&C>0) {\n\t\t\t\tA=A-D;\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t\tif(C<A) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else if(A<C) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n\t\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO 自動生成されたメソッド・スタブ\n\n\t\tScanner sc=new Scanner(System.in);\n\t\t//高橋君の体力\n\t\tint A=sc.nextInt();\n\t\t//高橋君の攻撃力\n\t\tint B=sc.nextInt();\n\t\t//青木君の体力\n\t\tint C=sc.nextInt();\n\t\t//青木くんの攻撃力\n\t\tint D=sc.nextInt();\n\t\t\n\t\t\n\t\twhile(C>0&&A>0) {\n\t\t\tif(C>0) {\n\t\t\t\tC=C-B;\n\t\t\t}\n\t\t\t\t\n\t\t\tif(A>0&&C>0) {\n\t\t\t\tA=A-D;\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t\tif(C<A) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else if(A<C) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n\t\n}",
"Main",
"public static void main(String[] args) {\n\t\t// TODO 自動生成されたメソッド・スタブ\n\n\t\tScanner sc=new Scanner(System.in);\n\t\t//高橋君の体力\n\t\tint A=sc.nextInt();\n\t\t//高橋君の攻撃力\n\t\tint B=sc.nextInt();\n\t\t//青木君の体力\n\t\tint C=sc.nextInt();\n\t\t//青木くんの攻撃力\n\t\tint D=sc.nextInt();\n\t\t\n\t\t\n\t\twhile(C>0&&A>0) {\n\t\t\tif(C>0) {\n\t\t\t\tC=C-B;\n\t\t\t}\n\t\t\t\t\n\t\t\tif(A>0&&C>0) {\n\t\t\t\tA=A-D;\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t\tif(C<A) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else if(A<C) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}",
"main",
"{\n\t\t// TODO 自動生成されたメソッド・スタブ\n\n\t\tScanner sc=new Scanner(System.in);\n\t\t//高橋君の体力\n\t\tint A=sc.nextInt();\n\t\t//高橋君の攻撃力\n\t\tint B=sc.nextInt();\n\t\t//青木君の体力\n\t\tint C=sc.nextInt();\n\t\t//青木くんの攻撃力\n\t\tint D=sc.nextInt();\n\t\t\n\t\t\n\t\twhile(C>0&&A>0) {\n\t\t\tif(C>0) {\n\t\t\t\tC=C-B;\n\t\t\t}\n\t\t\t\t\n\t\t\tif(A>0&&C>0) {\n\t\t\t\tA=A-D;\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t\tif(C<A) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else if(A<C) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}",
"Scanner sc=new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A=sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B=sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C=sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D=sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"while(C>0&&A>0) {\n\t\t\tif(C>0) {\n\t\t\t\tC=C-B;\n\t\t\t}\n\t\t\t\t\n\t\t\tif(A>0&&C>0) {\n\t\t\t\tA=A-D;\n\t\t\t}\n\t\t}",
"C>0&&A>0",
"C>0",
"C",
"0",
"A>0",
"A",
"0",
"{\n\t\t\tif(C>0) {\n\t\t\t\tC=C-B;\n\t\t\t}\n\t\t\t\t\n\t\t\tif(A>0&&C>0) {\n\t\t\t\tA=A-D;\n\t\t\t}\n\t\t}",
"if(C>0) {\n\t\t\t\tC=C-B;\n\t\t\t}",
"C>0",
"C",
"0",
"{\n\t\t\t\tC=C-B;\n\t\t\t}",
"C=C-B",
"C",
"C-B",
"C",
"B",
"if(A>0&&C>0) {\n\t\t\t\tA=A-D;\n\t\t\t}",
"A>0&&C>0",
"A>0",
"A",
"0",
"C>0",
"C",
"0",
"{\n\t\t\t\tA=A-D;\n\t\t\t}",
"A=A-D",
"A",
"A-D",
"A",
"D",
"if(C<A) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else if(A<C) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"C<A",
"C",
"A",
"{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"if(A<C) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"A<C",
"A",
"C",
"{\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO 自動生成されたメソッド・スタブ\n\n\t\tScanner sc=new Scanner(System.in);\n\t\t//高橋君の体力\n\t\tint A=sc.nextInt();\n\t\t//高橋君の攻撃力\n\t\tint B=sc.nextInt();\n\t\t//青木君の体力\n\t\tint C=sc.nextInt();\n\t\t//青木くんの攻撃力\n\t\tint D=sc.nextInt();\n\t\t\n\t\t\n\t\twhile(C>0&&A>0) {\n\t\t\tif(C>0) {\n\t\t\t\tC=C-B;\n\t\t\t}\n\t\t\t\t\n\t\t\tif(A>0&&C>0) {\n\t\t\t\tA=A-D;\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t\tif(C<A) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else if(A<C) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n\t\n}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO 自動生成されたメソッド・スタブ\n\n\t\tScanner sc=new Scanner(System.in);\n\t\t//高橋君の体力\n\t\tint A=sc.nextInt();\n\t\t//高橋君の攻撃力\n\t\tint B=sc.nextInt();\n\t\t//青木君の体力\n\t\tint C=sc.nextInt();\n\t\t//青木くんの攻撃力\n\t\tint D=sc.nextInt();\n\t\t\n\t\t\n\t\twhile(C>0&&A>0) {\n\t\t\tif(C>0) {\n\t\t\t\tC=C-B;\n\t\t\t}\n\t\t\t\t\n\t\t\tif(A>0&&C>0) {\n\t\t\t\tA=A-D;\n\t\t\t}\n\t\t}\n\t\t\n\t\t\n\t\tif(C<A) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else if(A<C) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n\t\n}",
"Main"
] |
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// TODO 自動生成されたメソッド・スタブ
Scanner sc=new Scanner(System.in);
//高橋君の体力
int A=sc.nextInt();
//高橋君の攻撃力
int B=sc.nextInt();
//青木君の体力
int C=sc.nextInt();
//青木くんの攻撃力
int D=sc.nextInt();
while(C>0&&A>0) {
if(C>0) {
C=C-B;
}
if(A>0&&C>0) {
A=A-D;
}
}
if(C<A) {
System.out.println("Yes");
}else if(A<C) {
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
11,
1,
2,
13,
17,
30,
30,
0,
13,
2,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
0,
13,
17,
3,
0,
13,
2,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
0,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
84,
5
],
[
84,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
37,
39
],
[
35,
40
],
[
41,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
44,
46
],
[
41,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
47,
51
],
[
51,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
52,
57
],
[
51,
58
],
[
58,
59
],
[
58,
60
],
[
51,
61
],
[
41,
62
],
[
62,
63
],
[
62,
64
],
[
64,
65
],
[
64,
66
],
[
41,
67
],
[
67,
68
],
[
68,
69
],
[
68,
70
],
[
67,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
74,
75
],
[
74,
76
],
[
72,
77
],
[
71,
78
],
[
78,
79
],
[
78,
80
],
[
6,
81
],
[
81,
82
],
[
0,
83
],
[
83,
84
],
[
83,
85
]
] |
[
"import java.util.*;\npublic class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\t// 整数の入力\n\t\tint A = sc.nextInt();\n \tint B = sc.nextInt();\n \tint C = sc.nextInt();\n \tint D = sc.nextInt();\n \t\n \tboolean flg=true;\n \tfor(;flg==true;){\n C=C-B;\n if(C<=0){\n System.out.println(\"Yes\");\n flg=false;\n break;\n }\n A=A-D;\n if(A<=0){\n System.out.println(\"No\");\n flg=false;\n }\n }\n \n\t\t\n\t\t\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\t// 整数の入力\n\t\tint A = sc.nextInt();\n \tint B = sc.nextInt();\n \tint C = sc.nextInt();\n \tint D = sc.nextInt();\n \t\n \tboolean flg=true;\n \tfor(;flg==true;){\n C=C-B;\n if(C<=0){\n System.out.println(\"Yes\");\n flg=false;\n break;\n }\n A=A-D;\n if(A<=0){\n System.out.println(\"No\");\n flg=false;\n }\n }\n \n\t\t\n\t\t\n\t}\n}",
"Main",
"public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\t// 整数の入力\n\t\tint A = sc.nextInt();\n \tint B = sc.nextInt();\n \tint C = sc.nextInt();\n \tint D = sc.nextInt();\n \t\n \tboolean flg=true;\n \tfor(;flg==true;){\n C=C-B;\n if(C<=0){\n System.out.println(\"Yes\");\n flg=false;\n break;\n }\n A=A-D;\n if(A<=0){\n System.out.println(\"No\");\n flg=false;\n }\n }\n \n\t\t\n\t\t\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\t// 整数の入力\n\t\tint A = sc.nextInt();\n \tint B = sc.nextInt();\n \tint C = sc.nextInt();\n \tint D = sc.nextInt();\n \t\n \tboolean flg=true;\n \tfor(;flg==true;){\n C=C-B;\n if(C<=0){\n System.out.println(\"Yes\");\n flg=false;\n break;\n }\n A=A-D;\n if(A<=0){\n System.out.println(\"No\");\n flg=false;\n }\n }\n \n\t\t\n\t\t\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"boolean flg=true;",
"flg",
"true",
"for(;flg==true;){\n C=C-B;\n if(C<=0){\n System.out.println(\"Yes\");\n flg=false;\n break;\n }\n A=A-D;\n if(A<=0){\n System.out.println(\"No\");\n flg=false;\n }\n }",
";",
"flg==true",
"flg",
"true",
"{\n C=C-B;\n if(C<=0){\n System.out.println(\"Yes\");\n flg=false;\n break;\n }\n A=A-D;\n if(A<=0){\n System.out.println(\"No\");\n flg=false;\n }\n }",
"{\n C=C-B;\n if(C<=0){\n System.out.println(\"Yes\");\n flg=false;\n break;\n }\n A=A-D;\n if(A<=0){\n System.out.println(\"No\");\n flg=false;\n }\n }",
"C=C-B",
"C",
"C-B",
"C",
"B",
"if(C<=0){\n System.out.println(\"Yes\");\n flg=false;\n break;\n }",
"C<=0",
"C",
"0",
"{\n System.out.println(\"Yes\");\n flg=false;\n break;\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"flg=false",
"flg",
"false",
"break;",
"A=A-D",
"A",
"A-D",
"A",
"D",
"if(A<=0){\n System.out.println(\"No\");\n flg=false;\n }",
"A<=0",
"A",
"0",
"{\n System.out.println(\"No\");\n flg=false;\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"flg=false",
"flg",
"false",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\t// 整数の入力\n\t\tint A = sc.nextInt();\n \tint B = sc.nextInt();\n \tint C = sc.nextInt();\n \tint D = sc.nextInt();\n \t\n \tboolean flg=true;\n \tfor(;flg==true;){\n C=C-B;\n if(C<=0){\n System.out.println(\"Yes\");\n flg=false;\n break;\n }\n A=A-D;\n if(A<=0){\n System.out.println(\"No\");\n flg=false;\n }\n }\n \n\t\t\n\t\t\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\t// 整数の入力\n\t\tint A = sc.nextInt();\n \tint B = sc.nextInt();\n \tint C = sc.nextInt();\n \tint D = sc.nextInt();\n \t\n \tboolean flg=true;\n \tfor(;flg==true;){\n C=C-B;\n if(C<=0){\n System.out.println(\"Yes\");\n flg=false;\n break;\n }\n A=A-D;\n if(A<=0){\n System.out.println(\"No\");\n flg=false;\n }\n }\n \n\t\t\n\t\t\n\t}\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
// 整数の入力
int A = sc.nextInt();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
boolean flg=true;
for(;flg==true;){
C=C-B;
if(C<=0){
System.out.println("Yes");
flg=false;
break;
}
A=A-D;
if(A<=0){
System.out.println("No");
flg=false;
}
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
41,
13,
17,
41,
13,
17,
42,
2,
13,
17,
30,
0,
13,
13,
40,
13,
42,
2,
13,
17,
30,
0,
13,
13,
40,
13,
14,
2,
13,
13,
30,
0,
13,
17,
4,
18,
18,
13,
13,
13,
4,
18,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
81,
5
],
[
81,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
35,
37
],
[
8,
38
],
[
38,
39
],
[
38,
40
],
[
8,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
41,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
45,
49
],
[
49,
50
],
[
8,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
51,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
55,
59
],
[
59,
60
],
[
8,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
8,
69
],
[
69,
70
],
[
70,
71
],
[
71,
72
],
[
71,
73
],
[
69,
74
],
[
8,
75
],
[
75,
76
],
[
76,
77
],
[
6,
78
],
[
78,
79
],
[
0,
80
],
[
80,
81
],
[
80,
82
]
] |
[
"import java.util.*;\n\npublic class Main {\npublic static void main(String[] args) {\n\t\t\n\t\tScanner keyboard = new Scanner(System.in); \n\t\t\n\t\tint A= keyboard.nextInt();\n\t\tint B= keyboard.nextInt();\n\t\tint C= keyboard.nextInt();\n\t\tint D= keyboard.nextInt();\n\t\t\n\t\tString ans = \"No\";\n\t\tint countT = 0;\n\t\tint countA = 0;\n\t\t\n\t\twhile(A>0) {\n\t\t\tA -= D;\n\t\t\tcountT++;\n\t\t}\n\t\twhile(C>0) {\n\t\t\tC -= B;\n\t\t\tcountA++;\n\t\t}\n\t\t\n\t\tif(countT >= countA) {\n\t\t\tans = \"Yes\";\n\t\t}\n\t\t\n\t\t\n\t\tSystem.out.println(ans);\n\t\tkeyboard.close();\t\n\t\t\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\npublic static void main(String[] args) {\n\t\t\n\t\tScanner keyboard = new Scanner(System.in); \n\t\t\n\t\tint A= keyboard.nextInt();\n\t\tint B= keyboard.nextInt();\n\t\tint C= keyboard.nextInt();\n\t\tint D= keyboard.nextInt();\n\t\t\n\t\tString ans = \"No\";\n\t\tint countT = 0;\n\t\tint countA = 0;\n\t\t\n\t\twhile(A>0) {\n\t\t\tA -= D;\n\t\t\tcountT++;\n\t\t}\n\t\twhile(C>0) {\n\t\t\tC -= B;\n\t\t\tcountA++;\n\t\t}\n\t\t\n\t\tif(countT >= countA) {\n\t\t\tans = \"Yes\";\n\t\t}\n\t\t\n\t\t\n\t\tSystem.out.println(ans);\n\t\tkeyboard.close();\t\n\t\t\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\t\n\t\tScanner keyboard = new Scanner(System.in); \n\t\t\n\t\tint A= keyboard.nextInt();\n\t\tint B= keyboard.nextInt();\n\t\tint C= keyboard.nextInt();\n\t\tint D= keyboard.nextInt();\n\t\t\n\t\tString ans = \"No\";\n\t\tint countT = 0;\n\t\tint countA = 0;\n\t\t\n\t\twhile(A>0) {\n\t\t\tA -= D;\n\t\t\tcountT++;\n\t\t}\n\t\twhile(C>0) {\n\t\t\tC -= B;\n\t\t\tcountA++;\n\t\t}\n\t\t\n\t\tif(countT >= countA) {\n\t\t\tans = \"Yes\";\n\t\t}\n\t\t\n\t\t\n\t\tSystem.out.println(ans);\n\t\tkeyboard.close();\t\n\t\t\n\t}",
"main",
"{\n\t\t\n\t\tScanner keyboard = new Scanner(System.in); \n\t\t\n\t\tint A= keyboard.nextInt();\n\t\tint B= keyboard.nextInt();\n\t\tint C= keyboard.nextInt();\n\t\tint D= keyboard.nextInt();\n\t\t\n\t\tString ans = \"No\";\n\t\tint countT = 0;\n\t\tint countA = 0;\n\t\t\n\t\twhile(A>0) {\n\t\t\tA -= D;\n\t\t\tcountT++;\n\t\t}\n\t\twhile(C>0) {\n\t\t\tC -= B;\n\t\t\tcountA++;\n\t\t}\n\t\t\n\t\tif(countT >= countA) {\n\t\t\tans = \"Yes\";\n\t\t}\n\t\t\n\t\t\n\t\tSystem.out.println(ans);\n\t\tkeyboard.close();\t\n\t\t\n\t}",
"Scanner keyboard = new Scanner(System.in);",
"keyboard",
"new Scanner(System.in)",
"int A= keyboard.nextInt();",
"A",
"keyboard.nextInt()",
"keyboard.nextInt",
"keyboard",
"int B= keyboard.nextInt();",
"B",
"keyboard.nextInt()",
"keyboard.nextInt",
"keyboard",
"int C= keyboard.nextInt();",
"C",
"keyboard.nextInt()",
"keyboard.nextInt",
"keyboard",
"int D= keyboard.nextInt();",
"D",
"keyboard.nextInt()",
"keyboard.nextInt",
"keyboard",
"String ans = \"No\";",
"ans",
"\"No\"",
"int countT = 0;",
"countT",
"0",
"int countA = 0;",
"countA",
"0",
"while(A>0) {\n\t\t\tA -= D;\n\t\t\tcountT++;\n\t\t}",
"A>0",
"A",
"0",
"{\n\t\t\tA -= D;\n\t\t\tcountT++;\n\t\t}",
"A -= D",
"A",
"D",
"countT++",
"countT",
"while(C>0) {\n\t\t\tC -= B;\n\t\t\tcountA++;\n\t\t}",
"C>0",
"C",
"0",
"{\n\t\t\tC -= B;\n\t\t\tcountA++;\n\t\t}",
"C -= B",
"C",
"B",
"countA++",
"countA",
"if(countT >= countA) {\n\t\t\tans = \"Yes\";\n\t\t}",
"countT >= countA",
"countT",
"countA",
"{\n\t\t\tans = \"Yes\";\n\t\t}",
"ans = \"Yes\"",
"ans",
"\"Yes\"",
"System.out.println(ans)",
"System.out.println",
"System.out",
"System",
"System.out",
"ans",
"keyboard.close()",
"keyboard.close",
"keyboard",
"String[] args",
"args",
"public class Main {\npublic static void main(String[] args) {\n\t\t\n\t\tScanner keyboard = new Scanner(System.in); \n\t\t\n\t\tint A= keyboard.nextInt();\n\t\tint B= keyboard.nextInt();\n\t\tint C= keyboard.nextInt();\n\t\tint D= keyboard.nextInt();\n\t\t\n\t\tString ans = \"No\";\n\t\tint countT = 0;\n\t\tint countA = 0;\n\t\t\n\t\twhile(A>0) {\n\t\t\tA -= D;\n\t\t\tcountT++;\n\t\t}\n\t\twhile(C>0) {\n\t\t\tC -= B;\n\t\t\tcountA++;\n\t\t}\n\t\t\n\t\tif(countT >= countA) {\n\t\t\tans = \"Yes\";\n\t\t}\n\t\t\n\t\t\n\t\tSystem.out.println(ans);\n\t\tkeyboard.close();\t\n\t\t\n\t}\n}",
"public class Main {\npublic static void main(String[] args) {\n\t\t\n\t\tScanner keyboard = new Scanner(System.in); \n\t\t\n\t\tint A= keyboard.nextInt();\n\t\tint B= keyboard.nextInt();\n\t\tint C= keyboard.nextInt();\n\t\tint D= keyboard.nextInt();\n\t\t\n\t\tString ans = \"No\";\n\t\tint countT = 0;\n\t\tint countA = 0;\n\t\t\n\t\twhile(A>0) {\n\t\t\tA -= D;\n\t\t\tcountT++;\n\t\t}\n\t\twhile(C>0) {\n\t\t\tC -= B;\n\t\t\tcountA++;\n\t\t}\n\t\t\n\t\tif(countT >= countA) {\n\t\t\tans = \"Yes\";\n\t\t}\n\t\t\n\t\t\n\t\tSystem.out.println(ans);\n\t\tkeyboard.close();\t\n\t\t\n\t}\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner keyboard = new Scanner(System.in);
int A= keyboard.nextInt();
int B= keyboard.nextInt();
int C= keyboard.nextInt();
int D= keyboard.nextInt();
String ans = "No";
int countT = 0;
int countA = 0;
while(A>0) {
A -= D;
countT++;
}
while(C>0) {
C -= B;
countA++;
}
if(countT >= countA) {
ans = "Yes";
}
System.out.println(ans);
keyboard.close();
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
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,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
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
],
[
13,
14
],
[
13,
15
],
[
0,
16
],
[
16,
17
],
[
16,
18
],
[
0,
19
],
[
19,
20
],
[
19,
21
],
[
0,
22
],
[
22,
23
],
[
22,
24
],
[
0,
25
],
[
95,
26
],
[
95,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
30,
32
],
[
29,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
36,
37
],
[
29,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
41,
42
],
[
29,
43
],
[
43,
44
],
[
43,
45
],
[
45,
46
],
[
46,
47
],
[
29,
48
],
[
48,
49
],
[
48,
50
],
[
50,
51
],
[
51,
52
],
[
29,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
54,
58
],
[
58,
59
],
[
58,
60
],
[
53,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
65,
69
],
[
69,
70
],
[
70,
71
],
[
71,
72
],
[
72,
73
],
[
72,
74
],
[
70,
75
],
[
69,
76
],
[
61,
77
],
[
77,
78
],
[
77,
79
],
[
61,
80
],
[
80,
81
],
[
81,
82
],
[
81,
83
],
[
80,
84
],
[
84,
85
],
[
85,
86
],
[
86,
87
],
[
87,
88
],
[
87,
89
],
[
85,
90
],
[
84,
91
],
[
27,
92
],
[
92,
93
],
[
0,
94
],
[
94,
95
],
[
94,
96
]
] |
[
"import java.util.*;\nimport java.util.HashSet;\nimport java.util.Map;\nimport java.util.HashMap;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.Arrays;\nimport java.util.Scanner;\n\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n\n while (a > 0 || c > 0){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }\n\n }\n}\n\n\n\n",
"import java.util.*;",
"util.*",
"java",
"import java.util.HashSet;",
"HashSet",
"java.util",
"import java.util.Map;",
"Map",
"java.util",
"import java.util.HashMap;",
"HashMap",
"java.util",
"import java.util.ArrayList;",
"ArrayList",
"java.util",
"import java.util.List;",
"List",
"java.util",
"import java.util.Arrays;",
"Arrays",
"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 int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n\n while (a > 0 || c > 0){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }\n\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n\n while (a > 0 || c > 0){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }\n\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n\n while (a > 0 || c > 0){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }\n\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b = sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c = sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int d = sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"while (a > 0 || c > 0){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }",
"a > 0 || c > 0",
"a > 0",
"a",
"0",
"c > 0",
"c",
"0",
"{\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }",
"c -= b",
"c",
"b",
"if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }",
"c <= 0",
"c",
"0",
"{\n System.out.println(\"Yes\");\n break;\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"a -= d",
"a",
"d",
"if (a <= 0){\n System.out.println(\"No\");\n break;\n }",
"a <= 0",
"a",
"0",
"{\n System.out.println(\"No\");\n break;\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"break;",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n\n while (a > 0 || c > 0){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }\n\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n\n while (a > 0 || c > 0){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }\n\n }\n}",
"Main"
] |
import java.util.*;
import java.util.HashSet;
import java.util.Map;
import java.util.HashMap;
import java.util.ArrayList;
import java.util.List;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int d = sc.nextInt();
while (a > 0 || c > 0){
c -= b;
if (c <= 0){
System.out.println("Yes");
break;
}
a -= d;
if (a <= 0){
System.out.println("No");
break;
}
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
11,
1,
41,
13,
17,
2,
13,
17,
1,
40,
13,
30,
30,
0,
13,
13,
0,
13,
13,
14,
2,
13,
17,
30,
0,
13,
17,
3,
14,
2,
13,
17,
30,
0,
13,
17,
3,
4,
18,
18,
13,
13,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
81,
5
],
[
81,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
35,
40
],
[
40,
41
],
[
40,
42
],
[
35,
43
],
[
43,
44
],
[
44,
45
],
[
35,
46
],
[
47,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
47,
51
],
[
51,
52
],
[
51,
53
],
[
47,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
54,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
58,
62
],
[
47,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
63,
67
],
[
67,
68
],
[
68,
69
],
[
68,
70
],
[
67,
71
],
[
8,
72
],
[
72,
73
],
[
73,
74
],
[
74,
75
],
[
74,
76
],
[
72,
77
],
[
6,
78
],
[
78,
79
],
[
0,
80
],
[
80,
81
],
[
80,
82
]
] |
[
"import java.util.Scanner;\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n String S = \"\";\n for(int i=0; i<100; i++) {\n C -= B;\n A -= D;\n if(C<=0) {\n S = \"Yes\";\n break;\n }\n if(A<=0) {\n S = \"No\";\n break;\n }\n }\n System.out.println(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 A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n String S = \"\";\n for(int i=0; i<100; i++) {\n C -= B;\n A -= D;\n if(C<=0) {\n S = \"Yes\";\n break;\n }\n if(A<=0) {\n S = \"No\";\n break;\n }\n }\n System.out.println(S);\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n String S = \"\";\n for(int i=0; i<100; i++) {\n C -= B;\n A -= D;\n if(C<=0) {\n S = \"Yes\";\n break;\n }\n if(A<=0) {\n S = \"No\";\n break;\n }\n }\n System.out.println(S);\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n String S = \"\";\n for(int i=0; i<100; i++) {\n C -= B;\n A -= D;\n if(C<=0) {\n S = \"Yes\";\n break;\n }\n if(A<=0) {\n S = \"No\";\n break;\n }\n }\n System.out.println(S);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"String S = \"\";",
"S",
"\"\"",
"for(int i=0; i<100; i++) {\n C -= B;\n A -= D;\n if(C<=0) {\n S = \"Yes\";\n break;\n }\n if(A<=0) {\n S = \"No\";\n break;\n }\n }",
"int i=0;",
"int i=0;",
"i",
"0",
"i<100",
"i",
"100",
"i++",
"i++",
"i",
"{\n C -= B;\n A -= D;\n if(C<=0) {\n S = \"Yes\";\n break;\n }\n if(A<=0) {\n S = \"No\";\n break;\n }\n }",
"{\n C -= B;\n A -= D;\n if(C<=0) {\n S = \"Yes\";\n break;\n }\n if(A<=0) {\n S = \"No\";\n break;\n }\n }",
"C -= B",
"C",
"B",
"A -= D",
"A",
"D",
"if(C<=0) {\n S = \"Yes\";\n break;\n }",
"C<=0",
"C",
"0",
"{\n S = \"Yes\";\n break;\n }",
"S = \"Yes\"",
"S",
"\"Yes\"",
"break;",
"if(A<=0) {\n S = \"No\";\n break;\n }",
"A<=0",
"A",
"0",
"{\n S = \"No\";\n break;\n }",
"S = \"No\"",
"S",
"\"No\"",
"break;",
"System.out.println(S)",
"System.out.println",
"System.out",
"System",
"System.out",
"S",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n String S = \"\";\n for(int i=0; i<100; i++) {\n C -= B;\n A -= D;\n if(C<=0) {\n S = \"Yes\";\n break;\n }\n if(A<=0) {\n S = \"No\";\n break;\n }\n }\n System.out.println(S);\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n String S = \"\";\n for(int i=0; i<100; i++) {\n C -= B;\n A -= D;\n if(C<=0) {\n S = \"Yes\";\n break;\n }\n if(A<=0) {\n S = \"No\";\n break;\n }\n }\n System.out.println(S);\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();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
String S = "";
for(int i=0; i<100; i++) {
C -= B;
A -= D;
if(C<=0) {
S = "Yes";
break;
}
if(A<=0) {
S = "No";
break;
}
}
System.out.println(S);
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
2,
13,
13,
41,
13,
4,
18,
13,
2,
13,
13,
4,
18,
18,
13,
13,
8,
2,
13,
13,
17,
17,
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
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
34,
37
],
[
37,
38
],
[
37,
39
],
[
8,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
43,
44
],
[
42,
45
],
[
45,
46
],
[
45,
47
],
[
8,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
48,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
53,
58
],
[
6,
59
],
[
59,
60
],
[
0,
61
],
[
61,
62
],
[
61,
63
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int aHealth = sc.nextInt();\n int aAttack = sc.nextInt();\n int bHealth = sc.nextInt();\n int bAttack = sc.nextInt();\n int aWin = (int) Math.ceil((double) bHealth/aAttack);\n int bWin = (int) Math.ceil((double) aHealth/bAttack);\n System.out.println(aWin <= bWin ? \"Yes\" : \"No\");\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 aHealth = sc.nextInt();\n int aAttack = sc.nextInt();\n int bHealth = sc.nextInt();\n int bAttack = sc.nextInt();\n int aWin = (int) Math.ceil((double) bHealth/aAttack);\n int bWin = (int) Math.ceil((double) aHealth/bAttack);\n System.out.println(aWin <= bWin ? \"Yes\" : \"No\");\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int aHealth = sc.nextInt();\n int aAttack = sc.nextInt();\n int bHealth = sc.nextInt();\n int bAttack = sc.nextInt();\n int aWin = (int) Math.ceil((double) bHealth/aAttack);\n int bWin = (int) Math.ceil((double) aHealth/bAttack);\n System.out.println(aWin <= bWin ? \"Yes\" : \"No\");\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int aHealth = sc.nextInt();\n int aAttack = sc.nextInt();\n int bHealth = sc.nextInt();\n int bAttack = sc.nextInt();\n int aWin = (int) Math.ceil((double) bHealth/aAttack);\n int bWin = (int) Math.ceil((double) aHealth/bAttack);\n System.out.println(aWin <= bWin ? \"Yes\" : \"No\");\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int aHealth = sc.nextInt();",
"aHealth",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int aAttack = sc.nextInt();",
"aAttack",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int bHealth = sc.nextInt();",
"bHealth",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int bAttack = sc.nextInt();",
"bAttack",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int aWin = (int) Math.ceil((double) bHealth/aAttack);",
"aWin",
"(int) Math.ceil((double) bHealth/aAttack)",
"Math.ceil",
"Math",
"(double) bHealth/aAttack",
"(double) bHealth",
"aAttack",
"int bWin = (int) Math.ceil((double) aHealth/bAttack);",
"bWin",
"(int) Math.ceil((double) aHealth/bAttack)",
"Math.ceil",
"Math",
"(double) aHealth/bAttack",
"(double) aHealth",
"bAttack",
"System.out.println(aWin <= bWin ? \"Yes\" : \"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"aWin <= bWin ? \"Yes\" : \"No\"",
"aWin <= bWin",
"aWin",
"bWin",
"\"Yes\"",
"\"No\"",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int aHealth = sc.nextInt();\n int aAttack = sc.nextInt();\n int bHealth = sc.nextInt();\n int bAttack = sc.nextInt();\n int aWin = (int) Math.ceil((double) bHealth/aAttack);\n int bWin = (int) Math.ceil((double) aHealth/bAttack);\n System.out.println(aWin <= bWin ? \"Yes\" : \"No\");\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int aHealth = sc.nextInt();\n int aAttack = sc.nextInt();\n int bHealth = sc.nextInt();\n int bAttack = sc.nextInt();\n int aWin = (int) Math.ceil((double) bHealth/aAttack);\n int bWin = (int) Math.ceil((double) aHealth/bAttack);\n System.out.println(aWin <= bWin ? \"Yes\" : \"No\");\n }\n}",
"Main"
] |
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int aHealth = sc.nextInt();
int aAttack = sc.nextInt();
int bHealth = sc.nextInt();
int bAttack = sc.nextInt();
int aWin = (int) Math.ceil((double) bHealth/aAttack);
int bWin = (int) Math.ceil((double) aHealth/bAttack);
System.out.println(aWin <= bWin ? "Yes" : "No");
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
18,
13,
13,
41,
13,
18,
13,
13,
41,
13,
20,
41,
13,
20,
41,
13,
20,
4,
18,
13,
17,
13,
13,
4,
18,
13,
23,
13,
6,
13,
12,
13,
30,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
8,
2,
2,
13,
13,
17,
2,
13,
13,
2,
2,
13,
13,
17,
41,
13,
8,
2,
2,
13,
13,
17,
2,
13,
13,
2,
2,
13,
13,
17,
14,
2,
13,
13,
4,
18,
13,
17,
4,
18,
13,
17,
23,
13,
23,
13,
23,
13,
6,
13,
41,
13,
41,
13,
12,
13,
30,
0,
13,
20,
0,
13,
17,
23,
13,
12,
13,
30,
42,
2,
2,
13,
17,
40,
4,
18,
13,
30,
38,
5,
13,
30,
37,
20,
30,
0,
13,
20,
29,
4,
18,
13,
12,
13,
30,
29,
4,
18,
13,
4,
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
],
[
13,
14
],
[
13,
15
],
[
0,
16
],
[
16,
17
],
[
16,
18
],
[
0,
19
],
[
19,
20
],
[
19,
21
],
[
0,
22
],
[
22,
23
],
[
22,
24
],
[
0,
25
],
[
25,
26
],
[
25,
27
],
[
0,
28
],
[
192,
29
],
[
192,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
35,
37
],
[
32,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
40,
42
],
[
32,
43
],
[
43,
44
],
[
43,
45
],
[
32,
46
],
[
46,
47
],
[
46,
48
],
[
32,
49
],
[
49,
50
],
[
49,
51
],
[
32,
52
],
[
52,
53
],
[
53,
54
],
[
52,
55
],
[
52,
56
],
[
52,
57
],
[
32,
58
],
[
58,
59
],
[
59,
60
],
[
30,
61
],
[
61,
62
],
[
192,
63
],
[
63,
64
],
[
63,
65
],
[
65,
66
],
[
65,
67
],
[
67,
68
],
[
68,
69
],
[
68,
70
],
[
70,
71
],
[
71,
72
],
[
67,
73
],
[
73,
74
],
[
73,
75
],
[
75,
76
],
[
76,
77
],
[
67,
78
],
[
78,
79
],
[
78,
80
],
[
80,
81
],
[
81,
82
],
[
67,
83
],
[
83,
84
],
[
83,
85
],
[
85,
86
],
[
86,
87
],
[
67,
88
],
[
88,
89
],
[
88,
90
],
[
90,
91
],
[
91,
92
],
[
92,
93
],
[
92,
94
],
[
91,
95
],
[
90,
96
],
[
96,
97
],
[
96,
98
],
[
90,
99
],
[
99,
100
],
[
100,
101
],
[
100,
102
],
[
99,
103
],
[
67,
104
],
[
104,
105
],
[
104,
106
],
[
106,
107
],
[
107,
108
],
[
108,
109
],
[
108,
110
],
[
107,
111
],
[
106,
112
],
[
112,
113
],
[
112,
114
],
[
106,
115
],
[
115,
116
],
[
116,
117
],
[
116,
118
],
[
115,
119
],
[
67,
120
],
[
120,
121
],
[
121,
122
],
[
121,
123
],
[
120,
124
],
[
124,
125
],
[
125,
126
],
[
124,
127
],
[
120,
128
],
[
128,
129
],
[
129,
130
],
[
128,
131
],
[
65,
132
],
[
132,
133
],
[
65,
134
],
[
134,
135
],
[
65,
136
],
[
136,
137
],
[
192,
138
],
[
138,
139
],
[
138,
140
],
[
140,
141
],
[
138,
142
],
[
142,
143
],
[
138,
144
],
[
144,
145
],
[
144,
146
],
[
146,
147
],
[
147,
148
],
[
147,
149
],
[
146,
150
],
[
150,
151
],
[
150,
152
],
[
144,
153
],
[
153,
154
],
[
138,
155
],
[
155,
156
],
[
155,
157
],
[
157,
158
],
[
158,
159
],
[
159,
160
],
[
160,
161
],
[
160,
162
],
[
159,
163
],
[
163,
164
],
[
164,
165
],
[
165,
166
],
[
158,
167
],
[
167,
168
],
[
168,
169
],
[
169,
170
],
[
169,
171
],
[
171,
172
],
[
172,
173
],
[
168,
174
],
[
174,
175
],
[
175,
176
],
[
175,
177
],
[
157,
178
],
[
178,
179
],
[
179,
180
],
[
180,
181
],
[
138,
182
],
[
182,
183
],
[
182,
184
],
[
184,
185
],
[
185,
186
],
[
186,
187
],
[
187,
188
],
[
186,
189
],
[
189,
190
],
[
0,
191
],
[
191,
192
],
[
191,
193
]
] |
[
"import java.io.OutputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.PrintWriter;\nimport java.util.StringTokenizer;\nimport java.io.IOException;\nimport java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.io.InputStream;\n\n/**\n * Built using CHelper plug-in\n * Actual solution is at the top\n *\n * @author Tarek\n */\npublic class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n BBattle solver = new BBattle();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class BBattle {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n\n int a = in.nextInt();\n int b = in.nextInt();\n int c = in.nextInt();\n int d = in.nextInt();\n int sum1 = (a % d == 0 ? a / d : a / d + 1);\n int sum2 = (c % b == 0 ? c / b : c / b + 1);\n // out.println(sum1);\n if (sum1 >= sum2) out.println(\"Yes\");\n else out.println(\"No\");\n }\n\n }\n\n static class InputReader {\n public BufferedReader reader;\n public StringTokenizer tokenizer;\n\n public InputReader(InputStream stream) {\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }\n}\n",
"import java.io.OutputStream;",
"OutputStream",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStream;",
"InputStream",
"java.io",
"import java.io.PrintWriter;",
"PrintWriter",
"java.io",
"import java.util.StringTokenizer;",
"StringTokenizer",
"java.util",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"import java.io.InputStream;",
"InputStream",
"java.io",
"public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n BBattle solver = new BBattle();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class BBattle {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n\n int a = in.nextInt();\n int b = in.nextInt();\n int c = in.nextInt();\n int d = in.nextInt();\n int sum1 = (a % d == 0 ? a / d : a / d + 1);\n int sum2 = (c % b == 0 ? c / b : c / b + 1);\n // out.println(sum1);\n if (sum1 >= sum2) out.println(\"Yes\");\n else out.println(\"No\");\n }\n\n }\n\n static class InputReader {\n public BufferedReader reader;\n public StringTokenizer tokenizer;\n\n public InputReader(InputStream stream) {\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }\n}",
"Main",
"public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n BBattle solver = new BBattle();\n solver.solve(1, in, out);\n out.close();\n }",
"main",
"{\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n BBattle solver = new BBattle();\n solver.solve(1, in, out);\n out.close();\n }",
"InputStream inputStream = System.in;",
"inputStream",
"System.in",
"System",
"System.in",
"OutputStream outputStream = System.out;",
"outputStream",
"System.out",
"System",
"System.out",
"InputReader in = new InputReader(inputStream);",
"in",
"new InputReader(inputStream)",
"PrintWriter out = new PrintWriter(outputStream);",
"out",
"new PrintWriter(outputStream)",
"BBattle solver = new BBattle();",
"solver",
"new BBattle()",
"solver.solve(1, in, out)",
"solver.solve",
"solver",
"1",
"in",
"out",
"out.close()",
"out.close",
"out",
"String[] args",
"args",
"static class BBattle {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n\n int a = in.nextInt();\n int b = in.nextInt();\n int c = in.nextInt();\n int d = in.nextInt();\n int sum1 = (a % d == 0 ? a / d : a / d + 1);\n int sum2 = (c % b == 0 ? c / b : c / b + 1);\n // out.println(sum1);\n if (sum1 >= sum2) out.println(\"Yes\");\n else out.println(\"No\");\n }\n\n }",
"BBattle",
"public void solve(int testNumber, InputReader in, PrintWriter out) {\n\n int a = in.nextInt();\n int b = in.nextInt();\n int c = in.nextInt();\n int d = in.nextInt();\n int sum1 = (a % d == 0 ? a / d : a / d + 1);\n int sum2 = (c % b == 0 ? c / b : c / b + 1);\n // out.println(sum1);\n if (sum1 >= sum2) out.println(\"Yes\");\n else out.println(\"No\");\n }",
"solve",
"{\n\n int a = in.nextInt();\n int b = in.nextInt();\n int c = in.nextInt();\n int d = in.nextInt();\n int sum1 = (a % d == 0 ? a / d : a / d + 1);\n int sum2 = (c % b == 0 ? c / b : c / b + 1);\n // out.println(sum1);\n if (sum1 >= sum2) out.println(\"Yes\");\n else out.println(\"No\");\n }",
"int a = in.nextInt();",
"a",
"in.nextInt()",
"in.nextInt",
"in",
"int b = in.nextInt();",
"b",
"in.nextInt()",
"in.nextInt",
"in",
"int c = in.nextInt();",
"c",
"in.nextInt()",
"in.nextInt",
"in",
"int d = in.nextInt();",
"d",
"in.nextInt()",
"in.nextInt",
"in",
"int sum1 = (a % d == 0 ? a / d : a / d + 1);",
"sum1",
"(a % d == 0 ? a / d : a / d + 1)",
"a % d == 0",
"a % d",
"a",
"d",
"0",
"a / d",
"a",
"d",
"a / d + 1",
"a / d",
"a",
"d",
"1",
"int sum2 = (c % b == 0 ? c / b : c / b + 1);",
"sum2",
"(c % b == 0 ? c / b : c / b + 1)",
"c % b == 0",
"c % b",
"c",
"b",
"0",
"c / b",
"c",
"b",
"c / b + 1",
"c / b",
"c",
"b",
"1",
"if (sum1 >= sum2) out.println(\"Yes\");\n else out.println(\"No\");",
"sum1 >= sum2",
"sum1",
"sum2",
"out.println(\"Yes\")",
"out.println",
"out",
"\"Yes\"",
"out.println(\"No\")",
"out.println",
"out",
"\"No\"",
"int testNumber",
"testNumber",
"InputReader in",
"in",
"PrintWriter out",
"out",
"static class InputReader {\n public BufferedReader reader;\n public StringTokenizer tokenizer;\n\n public InputReader(InputStream stream) {\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }",
"InputReader",
"public BufferedReader reader;",
"reader",
"public StringTokenizer tokenizer;",
"tokenizer",
"public InputReader(InputStream stream) {\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }",
"InputReader",
"{\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }",
"reader = new BufferedReader(new InputStreamReader(stream), 32768)",
"reader",
"new BufferedReader(new InputStreamReader(stream), 32768)",
"tokenizer = null",
"tokenizer",
"null",
"InputStream stream",
"stream",
"public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }",
"next",
"{\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }",
"while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }",
"tokenizer == null || !tokenizer.hasMoreTokens()",
"tokenizer == null",
"tokenizer",
"null",
"!tokenizer.hasMoreTokens()",
"tokenizer.hasMoreTokens()",
"tokenizer.hasMoreTokens",
"tokenizer",
"{\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }",
"try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }",
"catch (IOException e) {\n throw new RuntimeException(e);\n }",
"IOException e",
"{\n throw new RuntimeException(e);\n }",
"throw new RuntimeException(e);",
"new RuntimeException(e)",
"{\n tokenizer = new StringTokenizer(reader.readLine());\n }",
"tokenizer = new StringTokenizer(reader.readLine())",
"tokenizer",
"new StringTokenizer(reader.readLine())",
"return tokenizer.nextToken();",
"tokenizer.nextToken()",
"tokenizer.nextToken",
"tokenizer",
"public int nextInt() {\n return Integer.parseInt(next());\n }",
"nextInt",
"{\n return Integer.parseInt(next());\n }",
"return Integer.parseInt(next());",
"Integer.parseInt(next())",
"Integer.parseInt",
"Integer",
"next()",
"next",
"public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n BBattle solver = new BBattle();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class BBattle {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n\n int a = in.nextInt();\n int b = in.nextInt();\n int c = in.nextInt();\n int d = in.nextInt();\n int sum1 = (a % d == 0 ? a / d : a / d + 1);\n int sum2 = (c % b == 0 ? c / b : c / b + 1);\n // out.println(sum1);\n if (sum1 >= sum2) out.println(\"Yes\");\n else out.println(\"No\");\n }\n\n }\n\n static class InputReader {\n public BufferedReader reader;\n public StringTokenizer tokenizer;\n\n public InputReader(InputStream stream) {\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }\n}",
"public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n BBattle solver = new BBattle();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class BBattle {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n\n int a = in.nextInt();\n int b = in.nextInt();\n int c = in.nextInt();\n int d = in.nextInt();\n int sum1 = (a % d == 0 ? a / d : a / d + 1);\n int sum2 = (c % b == 0 ? c / b : c / b + 1);\n // out.println(sum1);\n if (sum1 >= sum2) out.println(\"Yes\");\n else out.println(\"No\");\n }\n\n }\n\n static class InputReader {\n public BufferedReader reader;\n public StringTokenizer tokenizer;\n\n public InputReader(InputStream stream) {\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }\n}",
"Main"
] |
import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.StringTokenizer;
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.InputStream;
/**
* Built using CHelper plug-in
* Actual solution is at the top
*
* @author Tarek
*/
public class Main {
public static void main(String[] args) {
InputStream inputStream = System.in;
OutputStream outputStream = System.out;
InputReader in = new InputReader(inputStream);
PrintWriter out = new PrintWriter(outputStream);
BBattle solver = new BBattle();
solver.solve(1, in, out);
out.close();
}
static class BBattle {
public void solve(int testNumber, InputReader in, PrintWriter out) {
int a = in.nextInt();
int b = in.nextInt();
int c = in.nextInt();
int d = in.nextInt();
int sum1 = (a % d == 0 ? a / d : a / d + 1);
int sum2 = (c % b == 0 ? c / b : c / b + 1);
// out.println(sum1);
if (sum1 >= sum2) out.println("Yes");
else out.println("No");
}
}
static class InputReader {
public BufferedReader reader;
public StringTokenizer tokenizer;
public InputReader(InputStream stream) {
reader = new BufferedReader(new InputStreamReader(stream), 32768);
tokenizer = null;
}
public String next() {
while (tokenizer == null || !tokenizer.hasMoreTokens()) {
try {
tokenizer = new StringTokenizer(reader.readLine());
} catch (IOException e) {
throw new RuntimeException(e);
}
}
return tokenizer.nextToken();
}
public int nextInt() {
return Integer.parseInt(next());
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
42,
2,
13,
17,
30,
14,
2,
2,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
0,
13,
17,
0,
13,
2,
13,
13,
14,
2,
2,
13,
17,
2,
2,
13,
13,
17,
30,
0,
13,
17,
4,
18,
18,
13,
13,
17,
0,
13,
2,
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
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
35,
39
],
[
39,
40
],
[
40,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
41,
45
],
[
40,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
47,
52
],
[
46,
53
],
[
53,
54
],
[
53,
55
],
[
40,
56
],
[
56,
57
],
[
56,
58
],
[
58,
59
],
[
58,
60
],
[
39,
61
],
[
61,
62
],
[
62,
63
],
[
63,
64
],
[
63,
65
],
[
62,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
66,
70
],
[
61,
71
],
[
71,
72
],
[
72,
73
],
[
72,
74
],
[
71,
75
],
[
75,
76
],
[
76,
77
],
[
77,
78
],
[
77,
79
],
[
75,
80
],
[
61,
81
],
[
81,
82
],
[
81,
83
],
[
83,
84
],
[
83,
85
],
[
6,
86
],
[
86,
87
]
] |
[
"import java.util.*;\nclass Main\n{\n public static void main(String args[])\n {\n Scanner in=new Scanner(System.in);\n int a=in.nextInt();\n int b=in.nextInt();\n int c=in.nextInt();\n int d=in.nextInt();\n int flag=0;\n while(flag==0)\n {\n if(c-b<=0)\n {\n System.out.print(\"Yes\");\n flag=1;\n }\n else\n c=c-b;\n if(flag==0 && (a-d)<=0)\n {\n flag=1;\n System.out.print(\"No\");\n }\n else\n a=a-d;\n }\n \n \n \n \n \n \n \n \n }\n}",
"import java.util.*;",
"util.*",
"java",
"class Main\n{\n public static void main(String args[])\n {\n Scanner in=new Scanner(System.in);\n int a=in.nextInt();\n int b=in.nextInt();\n int c=in.nextInt();\n int d=in.nextInt();\n int flag=0;\n while(flag==0)\n {\n if(c-b<=0)\n {\n System.out.print(\"Yes\");\n flag=1;\n }\n else\n c=c-b;\n if(flag==0 && (a-d)<=0)\n {\n flag=1;\n System.out.print(\"No\");\n }\n else\n a=a-d;\n }\n \n \n \n \n \n \n \n \n }\n}",
"Main",
"public static void main(String args[])\n {\n Scanner in=new Scanner(System.in);\n int a=in.nextInt();\n int b=in.nextInt();\n int c=in.nextInt();\n int d=in.nextInt();\n int flag=0;\n while(flag==0)\n {\n if(c-b<=0)\n {\n System.out.print(\"Yes\");\n flag=1;\n }\n else\n c=c-b;\n if(flag==0 && (a-d)<=0)\n {\n flag=1;\n System.out.print(\"No\");\n }\n else\n a=a-d;\n }\n \n \n \n \n \n \n \n \n }",
"main",
"{\n Scanner in=new Scanner(System.in);\n int a=in.nextInt();\n int b=in.nextInt();\n int c=in.nextInt();\n int d=in.nextInt();\n int flag=0;\n while(flag==0)\n {\n if(c-b<=0)\n {\n System.out.print(\"Yes\");\n flag=1;\n }\n else\n c=c-b;\n if(flag==0 && (a-d)<=0)\n {\n flag=1;\n System.out.print(\"No\");\n }\n else\n a=a-d;\n }\n \n \n \n \n \n \n \n \n }",
"Scanner in=new Scanner(System.in);",
"in",
"new Scanner(System.in)",
"int a=in.nextInt();",
"a",
"in.nextInt()",
"in.nextInt",
"in",
"int b=in.nextInt();",
"b",
"in.nextInt()",
"in.nextInt",
"in",
"int c=in.nextInt();",
"c",
"in.nextInt()",
"in.nextInt",
"in",
"int d=in.nextInt();",
"d",
"in.nextInt()",
"in.nextInt",
"in",
"int flag=0;",
"flag",
"0",
"while(flag==0)\n {\n if(c-b<=0)\n {\n System.out.print(\"Yes\");\n flag=1;\n }\n else\n c=c-b;\n if(flag==0 && (a-d)<=0)\n {\n flag=1;\n System.out.print(\"No\");\n }\n else\n a=a-d;\n }",
"flag==0",
"flag",
"0",
"{\n if(c-b<=0)\n {\n System.out.print(\"Yes\");\n flag=1;\n }\n else\n c=c-b;\n if(flag==0 && (a-d)<=0)\n {\n flag=1;\n System.out.print(\"No\");\n }\n else\n a=a-d;\n }",
"if(c-b<=0)\n {\n System.out.print(\"Yes\");\n flag=1;\n }\n else\n c=c-b;",
"c-b<=0",
"c-b",
"c",
"b",
"0",
"{\n System.out.print(\"Yes\");\n flag=1;\n }",
"System.out.print(\"Yes\")",
"System.out.print",
"System.out",
"System",
"System.out",
"\"Yes\"",
"flag=1",
"flag",
"1",
"c=c-b",
"c",
"c-b",
"c",
"b",
"if(flag==0 && (a-d)<=0)\n {\n flag=1;\n System.out.print(\"No\");\n }\n else\n a=a-d;",
"flag==0 && (a-d)<=0",
"flag==0",
"flag",
"0",
"(a-d)<=0",
"(a-d)",
"a",
"d",
"0",
"{\n flag=1;\n System.out.print(\"No\");\n }",
"flag=1",
"flag",
"1",
"System.out.print(\"No\")",
"System.out.print",
"System.out",
"System",
"System.out",
"\"No\"",
"a=a-d",
"a",
"a-d",
"a",
"d",
"String args[]",
"args"
] |
import java.util.*;
class Main
{
public static void main(String args[])
{
Scanner in=new Scanner(System.in);
int a=in.nextInt();
int b=in.nextInt();
int c=in.nextInt();
int d=in.nextInt();
int flag=0;
while(flag==0)
{
if(c-b<=0)
{
System.out.print("Yes");
flag=1;
}
else
c=c-b;
if(flag==0 && (a-d)<=0)
{
flag=1;
System.out.print("No");
}
else
a=a-d;
}
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
8,
2,
2,
13,
13,
17,
2,
13,
13,
2,
2,
13,
13,
17,
41,
13,
8,
2,
2,
13,
13,
17,
2,
13,
13,
2,
2,
13,
13,
17,
41,
13,
8,
2,
13,
13,
17,
17,
4,
18,
18,
13,
13,
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
],
[
20,
21
],
[
21,
22
],
[
20,
23
],
[
23,
24
],
[
24,
25
],
[
11,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
28,
31
],
[
31,
32
],
[
32,
33
],
[
11,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
36,
39
],
[
39,
40
],
[
40,
41
],
[
11,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
44,
47
],
[
47,
48
],
[
48,
49
],
[
11,
50
],
[
50,
51
],
[
50,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
52,
58
],
[
58,
59
],
[
58,
60
],
[
52,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
11,
66
],
[
66,
67
],
[
66,
68
],
[
68,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
69,
73
],
[
68,
74
],
[
74,
75
],
[
74,
76
],
[
68,
77
],
[
77,
78
],
[
78,
79
],
[
78,
80
],
[
77,
81
],
[
11,
82
],
[
82,
83
],
[
82,
84
],
[
84,
85
],
[
85,
86
],
[
85,
87
],
[
84,
88
],
[
84,
89
],
[
11,
90
],
[
90,
91
],
[
91,
92
],
[
92,
93
],
[
92,
94
],
[
90,
95
],
[
9,
96
],
[
96,
97
]
] |
[
"import java.util.*;\nimport java.io.*;\nclass Main {\n public static void main(String[] args) throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st= new StringTokenizer(br.readLine());\n int th = Integer.parseInt(st.nextToken());\n int ts = Integer.parseInt(st.nextToken());\n int ah = Integer.parseInt(st.nextToken());\n int as = Integer.parseInt(st.nextToken());\n\n int tnum = ah%ts==0?ah/ts:(ah/ts) +1;\n int anum = th%as==0?th/as:(th/as) +1;\n String ans = tnum>anum? \"No\":\"Yes\";\n System.out.println(ans);\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 StringTokenizer st= new StringTokenizer(br.readLine());\n int th = Integer.parseInt(st.nextToken());\n int ts = Integer.parseInt(st.nextToken());\n int ah = Integer.parseInt(st.nextToken());\n int as = Integer.parseInt(st.nextToken());\n\n int tnum = ah%ts==0?ah/ts:(ah/ts) +1;\n int anum = th%as==0?th/as:(th/as) +1;\n String ans = tnum>anum? \"No\":\"Yes\";\n System.out.println(ans);\n \n\n }\n}",
"Main",
"public static void main(String[] args) throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st= new StringTokenizer(br.readLine());\n int th = Integer.parseInt(st.nextToken());\n int ts = Integer.parseInt(st.nextToken());\n int ah = Integer.parseInt(st.nextToken());\n int as = Integer.parseInt(st.nextToken());\n\n int tnum = ah%ts==0?ah/ts:(ah/ts) +1;\n int anum = th%as==0?th/as:(th/as) +1;\n String ans = tnum>anum? \"No\":\"Yes\";\n System.out.println(ans);\n \n\n }",
"main",
"{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n StringTokenizer st= new StringTokenizer(br.readLine());\n int th = Integer.parseInt(st.nextToken());\n int ts = Integer.parseInt(st.nextToken());\n int ah = Integer.parseInt(st.nextToken());\n int as = Integer.parseInt(st.nextToken());\n\n int tnum = ah%ts==0?ah/ts:(ah/ts) +1;\n int anum = th%as==0?th/as:(th/as) +1;\n String ans = tnum>anum? \"No\":\"Yes\";\n System.out.println(ans);\n \n\n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"StringTokenizer st= new StringTokenizer(br.readLine());",
"st",
"new StringTokenizer(br.readLine())",
"int th = Integer.parseInt(st.nextToken());",
"th",
"Integer.parseInt(st.nextToken())",
"Integer.parseInt",
"Integer",
"st.nextToken()",
"st.nextToken",
"st",
"int ts = Integer.parseInt(st.nextToken());",
"ts",
"Integer.parseInt(st.nextToken())",
"Integer.parseInt",
"Integer",
"st.nextToken()",
"st.nextToken",
"st",
"int ah = Integer.parseInt(st.nextToken());",
"ah",
"Integer.parseInt(st.nextToken())",
"Integer.parseInt",
"Integer",
"st.nextToken()",
"st.nextToken",
"st",
"int as = Integer.parseInt(st.nextToken());",
"as",
"Integer.parseInt(st.nextToken())",
"Integer.parseInt",
"Integer",
"st.nextToken()",
"st.nextToken",
"st",
"int tnum = ah%ts==0?ah/ts:(ah/ts) +1;",
"tnum",
"ah%ts==0?ah/ts:(ah/ts) +1",
"ah%ts==0",
"ah%ts",
"ah",
"ts",
"0",
"ah/ts",
"ah",
"ts",
"(ah/ts) +1",
"(ah/ts)",
"ah",
"ts",
"1",
"int anum = th%as==0?th/as:(th/as) +1;",
"anum",
"th%as==0?th/as:(th/as) +1",
"th%as==0",
"th%as",
"th",
"as",
"0",
"th/as",
"th",
"as",
"(th/as) +1",
"(th/as)",
"th",
"as",
"1",
"String ans = tnum>anum? \"No\":\"Yes\";",
"ans",
"tnum>anum? \"No\":\"Yes\"",
"tnum>anum",
"tnum",
"anum",
"\"No\"",
"\"Yes\"",
"System.out.println(ans)",
"System.out.println",
"System.out",
"System",
"System.out",
"ans",
"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));
StringTokenizer st= new StringTokenizer(br.readLine());
int th = Integer.parseInt(st.nextToken());
int ts = Integer.parseInt(st.nextToken());
int ah = Integer.parseInt(st.nextToken());
int as = Integer.parseInt(st.nextToken());
int tnum = ah%ts==0?ah/ts:(ah/ts) +1;
int anum = th%as==0?th/as:(th/as) +1;
String ans = tnum>anum? "No":"Yes";
System.out.println(ans);
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
8,
2,
2,
2,
13,
2,
13,
17,
13,
2,
2,
13,
2,
13,
17,
13,
17,
17,
4,
18,
18,
13,
13,
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
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
8,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
42,
44
],
[
39,
45
],
[
38,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
49,
50
],
[
49,
51
],
[
46,
52
],
[
37,
53
],
[
37,
54
],
[
8,
55
],
[
55,
56
],
[
56,
57
],
[
57,
58
],
[
57,
59
],
[
55,
60
],
[
6,
61
],
[
61,
62
],
[
0,
63
],
[
63,
64
],
[
63,
65
]
] |
[
"\nimport java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint c = sc.nextInt();\n\t\tint d = sc.nextInt();\n\t\tsc.close();\n\n\t\tString result = (a+(d-1))/d >= (c+(b-1))/b ? \"Yes\" : \"No\";\n\n\t\tSystem.out.println(result);\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 sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint c = sc.nextInt();\n\t\tint d = sc.nextInt();\n\t\tsc.close();\n\n\t\tString result = (a+(d-1))/d >= (c+(b-1))/b ? \"Yes\" : \"No\";\n\n\t\tSystem.out.println(result);\n\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint c = sc.nextInt();\n\t\tint d = sc.nextInt();\n\t\tsc.close();\n\n\t\tString result = (a+(d-1))/d >= (c+(b-1))/b ? \"Yes\" : \"No\";\n\n\t\tSystem.out.println(result);\n\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint c = sc.nextInt();\n\t\tint d = sc.nextInt();\n\t\tsc.close();\n\n\t\tString result = (a+(d-1))/d >= (c+(b-1))/b ? \"Yes\" : \"No\";\n\n\t\tSystem.out.println(result);\n\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b = sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c = sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int d = sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"sc.close()",
"sc.close",
"sc",
"String result = (a+(d-1))/d >= (c+(b-1))/b ? \"Yes\" : \"No\";",
"result",
"(a+(d-1))/d >= (c+(b-1))/b ? \"Yes\" : \"No\"",
"(a+(d-1))/d >= (c+(b-1))/b",
"(a+(d-1))/d",
"(a+(d-1))",
"a",
"(d-1)",
"d",
"1",
"d",
"(c+(b-1))/b",
"(c+(b-1))",
"c",
"(b-1)",
"b",
"1",
"b",
"\"Yes\"",
"\"No\"",
"System.out.println(result)",
"System.out.println",
"System.out",
"System",
"System.out",
"result",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint c = sc.nextInt();\n\t\tint d = sc.nextInt();\n\t\tsc.close();\n\n\t\tString result = (a+(d-1))/d >= (c+(b-1))/b ? \"Yes\" : \"No\";\n\n\t\tSystem.out.println(result);\n\n\t}\n\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint c = sc.nextInt();\n\t\tint d = sc.nextInt();\n\t\tsc.close();\n\n\t\tString result = (a+(d-1))/d >= (c+(b-1))/b ? \"Yes\" : \"No\";\n\n\t\tSystem.out.println(result);\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 a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int d = sc.nextInt();
sc.close();
String result = (a+(d-1))/d >= (c+(b-1))/b ? "Yes" : "No";
System.out.println(result);
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
41,
13,
41,
13,
41,
13,
41,
13,
0,
13,
4,
18,
13,
0,
13,
4,
18,
13,
0,
13,
4,
18,
13,
0,
13,
4,
18,
13,
42,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
0,
13,
17,
3,
0,
13,
13,
14,
2,
13,
17,
30,
0,
13,
17,
3,
9,
14,
13,
4,
18,
18,
13,
13,
17,
4,
18,
18,
13,
13,
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
],
[
8,
14
],
[
14,
15
],
[
8,
16
],
[
16,
17
],
[
8,
18
],
[
18,
19
],
[
8,
20
],
[
20,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
8,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
40,
41
],
[
8,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
48,
52
],
[
52,
53
],
[
53,
54
],
[
53,
55
],
[
52,
56
],
[
44,
57
],
[
57,
58
],
[
57,
59
],
[
44,
60
],
[
60,
61
],
[
61,
62
],
[
61,
63
],
[
60,
64
],
[
64,
65
],
[
65,
66
],
[
65,
67
],
[
64,
68
],
[
60,
69
],
[
8,
70
],
[
70,
71
],
[
70,
72
],
[
72,
73
],
[
73,
74
],
[
74,
75
],
[
74,
76
],
[
72,
77
],
[
70,
78
],
[
78,
79
],
[
79,
80
],
[
80,
81
],
[
80,
82
],
[
78,
83
],
[
6,
84
],
[
84,
85
]
] |
[
"import java.util.*;\nclass Main{\n static public void main(String args[]){\n Scanner sc=new Scanner(System.in); \n boolean flag;\n int a,b,c,d;\n a=sc.nextInt();\n b=sc.nextInt();//kougeki\n c=sc.nextInt();\n d=sc.nextInt();//kougeki\n \n while(true){\n \t\n c-=b;\n\t \n\t \tif(c<=0){\n\t \tflag=true;break;\n\t\t}\n\n\t a-=d;\n\t if(a<=0){\n\t \tflag=false;break;\n\t\t}\n\t\t\n\t else continue;\n }\n \n if(flag)System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}",
"import java.util.*;",
"util.*",
"java",
"class Main{\n static public void main(String args[]){\n Scanner sc=new Scanner(System.in); \n boolean flag;\n int a,b,c,d;\n a=sc.nextInt();\n b=sc.nextInt();//kougeki\n c=sc.nextInt();\n d=sc.nextInt();//kougeki\n \n while(true){\n \t\n c-=b;\n\t \n\t \tif(c<=0){\n\t \tflag=true;break;\n\t\t}\n\n\t a-=d;\n\t if(a<=0){\n\t \tflag=false;break;\n\t\t}\n\t\t\n\t else continue;\n }\n \n if(flag)System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}",
"Main",
"static public void main(String args[]){\n Scanner sc=new Scanner(System.in); \n boolean flag;\n int a,b,c,d;\n a=sc.nextInt();\n b=sc.nextInt();//kougeki\n c=sc.nextInt();\n d=sc.nextInt();//kougeki\n \n while(true){\n \t\n c-=b;\n\t \n\t \tif(c<=0){\n\t \tflag=true;break;\n\t\t}\n\n\t a-=d;\n\t if(a<=0){\n\t \tflag=false;break;\n\t\t}\n\t\t\n\t else continue;\n }\n \n if(flag)System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }",
"main",
"{\n Scanner sc=new Scanner(System.in); \n boolean flag;\n int a,b,c,d;\n a=sc.nextInt();\n b=sc.nextInt();//kougeki\n c=sc.nextInt();\n d=sc.nextInt();//kougeki\n \n while(true){\n \t\n c-=b;\n\t \n\t \tif(c<=0){\n\t \tflag=true;break;\n\t\t}\n\n\t a-=d;\n\t if(a<=0){\n\t \tflag=false;break;\n\t\t}\n\t\t\n\t else continue;\n }\n \n if(flag)System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }",
"Scanner sc=new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"boolean flag;",
"flag",
"int a",
"a",
"b",
"b",
"c",
"c",
"d;",
"d",
"a=sc.nextInt()",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"b=sc.nextInt()",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"c=sc.nextInt()",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"d=sc.nextInt()",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"while(true){\n \t\n c-=b;\n\t \n\t \tif(c<=0){\n\t \tflag=true;break;\n\t\t}\n\n\t a-=d;\n\t if(a<=0){\n\t \tflag=false;break;\n\t\t}\n\t\t\n\t else continue;\n }",
"true",
"{\n \t\n c-=b;\n\t \n\t \tif(c<=0){\n\t \tflag=true;break;\n\t\t}\n\n\t a-=d;\n\t if(a<=0){\n\t \tflag=false;break;\n\t\t}\n\t\t\n\t else continue;\n }",
"c-=b",
"c",
"b",
"if(c<=0){\n\t \tflag=true;break;\n\t\t}",
"c<=0",
"c",
"0",
"{\n\t \tflag=true;break;\n\t\t}",
"flag=true",
"flag",
"true",
"break;",
"a-=d",
"a",
"d",
"if(a<=0){\n\t \tflag=false;break;\n\t\t}\n\t\t\n\t else continue;",
"a<=0",
"a",
"0",
"{\n\t \tflag=false;break;\n\t\t}",
"flag=false",
"flag",
"false",
"break;",
"continue;",
"if(flag)System.out.println(\"Yes\");\n else System.out.println(\"No\");",
"flag",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String args[]",
"args"
] |
import java.util.*;
class Main{
static public void main(String args[]){
Scanner sc=new Scanner(System.in);
boolean flag;
int a,b,c,d;
a=sc.nextInt();
b=sc.nextInt();//kougeki
c=sc.nextInt();
d=sc.nextInt();//kougeki
while(true){
c-=b;
if(c<=0){
flag=true;break;
}
a-=d;
if(a<=0){
flag=false;break;
}
else continue;
}
if(flag)System.out.println("Yes");
else System.out.println("No");
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
4,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
17,
42,
17,
30,
0,
13,
13,
40,
13,
14,
2,
13,
17,
30,
4,
18,
13,
17,
3,
0,
13,
13,
40,
13,
14,
2,
13,
17,
30,
4,
18,
13,
17,
3,
4,
18,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
100,
8
],
[
100,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
11,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
23,
24
],
[
20,
25
],
[
11,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
28,
31
],
[
31,
32
],
[
31,
33
],
[
11,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
36,
39
],
[
39,
40
],
[
39,
41
],
[
11,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
44,
47
],
[
47,
48
],
[
47,
49
],
[
11,
50
],
[
50,
51
],
[
50,
52
],
[
52,
53
],
[
53,
54
],
[
52,
55
],
[
55,
56
],
[
55,
57
],
[
11,
58
],
[
58,
59
],
[
58,
60
],
[
11,
61
],
[
61,
62
],
[
61,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
63,
67
],
[
67,
68
],
[
63,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
69,
73
],
[
73,
74
],
[
74,
75
],
[
75,
76
],
[
74,
77
],
[
73,
78
],
[
63,
79
],
[
79,
80
],
[
79,
81
],
[
63,
82
],
[
82,
83
],
[
63,
84
],
[
84,
85
],
[
85,
86
],
[
85,
87
],
[
84,
88
],
[
88,
89
],
[
89,
90
],
[
90,
91
],
[
89,
92
],
[
88,
93
],
[
11,
94
],
[
94,
95
],
[
95,
96
],
[
9,
97
],
[
97,
98
],
[
0,
99
],
[
99,
100
],
[
99,
101
]
] |
[
"import java.util.*;\nimport java.io.*;\n\npublic class Main {\n public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n int count = 0;\n \n while(true){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }\n \n out.close();\n \n }\n}",
"import java.util.*;",
"util.*",
"java",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n int count = 0;\n \n while(true){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }\n \n out.close();\n \n }\n}",
"Main",
"public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n int count = 0;\n \n while(true){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }\n \n out.close();\n \n }",
"main",
"{\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n int count = 0;\n \n while(true){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }\n \n out.close();\n \n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));",
"out",
"new PrintWriter(new OutputStreamWriter(System.out))",
"String[] str = br.readLine().split(\" \");",
"str",
"br.readLine().split(\" \")",
"br.readLine().split",
"br.readLine()",
"br.readLine",
"br",
"\" \"",
"int tHP = Integer.parseInt(str[0]);",
"tHP",
"Integer.parseInt(str[0])",
"Integer.parseInt",
"Integer",
"str[0]",
"str",
"0",
"int tATK = Integer.parseInt(str[1]);",
"tATK",
"Integer.parseInt(str[1])",
"Integer.parseInt",
"Integer",
"str[1]",
"str",
"1",
"int aHP = Integer.parseInt(str[2]);",
"aHP",
"Integer.parseInt(str[2])",
"Integer.parseInt",
"Integer",
"str[2]",
"str",
"2",
"int aATK = Integer.parseInt(str[3]);",
"aATK",
"Integer.parseInt(str[3])",
"Integer.parseInt",
"Integer",
"str[3]",
"str",
"3",
"int count = 0;",
"count",
"0",
"while(true){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }",
"true",
"{\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }",
"aHP -= tATK",
"aHP",
"tATK",
"count++",
"count",
"if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }",
"aHP <= 0",
"aHP",
"0",
"{\n out.println(\"Yes\");\n break;\n }",
"out.println(\"Yes\")",
"out.println",
"out",
"\"Yes\"",
"break;",
"tHP -= aATK",
"tHP",
"aATK",
"count++",
"count",
"if(tHP <= 0){\n out.println(\"No\");\n break;\n }",
"tHP <= 0",
"tHP",
"0",
"{\n out.println(\"No\");\n break;\n }",
"out.println(\"No\")",
"out.println",
"out",
"\"No\"",
"break;",
"out.close()",
"out.close",
"out",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n int count = 0;\n \n while(true){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }\n \n out.close();\n \n }\n}",
"public class Main {\n public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n int count = 0;\n \n while(true){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n out.println(\"Yes\");\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n out.println(\"No\");\n break;\n }\n }\n \n out.close();\n \n }\n}",
"Main"
] |
import java.util.*;
import java.io.*;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));
String[] str = br.readLine().split(" ");
int tHP = Integer.parseInt(str[0]);
int tATK = Integer.parseInt(str[1]);
int aHP = Integer.parseInt(str[2]);
int aATK = Integer.parseInt(str[3]);
int count = 0;
while(true){
aHP -= tATK;
count++;
if(aHP <= 0){
out.println("Yes");
break;
}
tHP -= aATK;
count++;
if(tHP <= 0){
out.println("No");
break;
}
}
out.close();
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
14,
2,
2,
2,
2,
2,
2,
2,
2,
17,
13,
2,
13,
17,
2,
17,
13,
2,
13,
17,
2,
17,
13,
2,
13,
17,
2,
17,
13,
2,
13,
17,
30,
30,
37,
20,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
0,
13,
13,
30,
4,
18,
18,
13,
13,
17,
29,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
105,
5
],
[
105,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
39,
34
],
[
58,
35
],
[
55,
36
],
[
52,
37
],
[
49,
38
],
[
46,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
39,
43
],
[
43,
44
],
[
43,
45
],
[
46,
46
],
[
46,
47
],
[
46,
48
],
[
49,
49
],
[
49,
50
],
[
49,
51
],
[
52,
52
],
[
52,
53
],
[
52,
54
],
[
55,
55
],
[
55,
56
],
[
55,
57
],
[
58,
58
],
[
58,
59
],
[
58,
60
],
[
39,
61
],
[
61,
62
],
[
61,
63
],
[
32,
64
],
[
32,
65
],
[
65,
66
],
[
66,
67
],
[
8,
68
],
[
68,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
69,
73
],
[
73,
74
],
[
73,
75
],
[
68,
76
],
[
76,
77
],
[
77,
78
],
[
77,
79
],
[
76,
80
],
[
80,
81
],
[
81,
82
],
[
81,
83
],
[
80,
84
],
[
84,
85
],
[
85,
86
],
[
85,
87
],
[
80,
88
],
[
88,
89
],
[
89,
90
],
[
90,
91
],
[
91,
92
],
[
91,
93
],
[
89,
94
],
[
88,
95
],
[
8,
96
],
[
96,
97
],
[
97,
98
],
[
98,
99
],
[
98,
100
],
[
96,
101
],
[
6,
102
],
[
102,
103
],
[
0,
104
],
[
104,
105
],
[
104,
106
]
] |
[
"import java.util.Scanner;\npublic class Main{\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tif (1<=A&&A<=100 &&1<=B&&B<=100 &&1<=C&&C<=100 &&1<=D&&D<=100 ){\n\t\t}\n\t\telse{\n\t\t\tthrow new IllegalArgumentException(\"不適切な数値です。\");\n\t\t}\n\t\twhile(A> 0 && C> 0){\t\n\t\t\tC -= B;\n\t\t\tif (C > 0){\n\t\t\t\tA -= D;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t}\n\t\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tif (1<=A&&A<=100 &&1<=B&&B<=100 &&1<=C&&C<=100 &&1<=D&&D<=100 ){\n\t\t}\n\t\telse{\n\t\t\tthrow new IllegalArgumentException(\"不適切な数値です。\");\n\t\t}\n\t\twhile(A> 0 && C> 0){\t\n\t\t\tC -= B;\n\t\t\tif (C > 0){\n\t\t\t\tA -= D;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t}\n\t\n}",
"Main",
"public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tif (1<=A&&A<=100 &&1<=B&&B<=100 &&1<=C&&C<=100 &&1<=D&&D<=100 ){\n\t\t}\n\t\telse{\n\t\t\tthrow new IllegalArgumentException(\"不適切な数値です。\");\n\t\t}\n\t\twhile(A> 0 && C> 0){\t\n\t\t\tC -= B;\n\t\t\tif (C > 0){\n\t\t\t\tA -= D;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tif (1<=A&&A<=100 &&1<=B&&B<=100 &&1<=C&&C<=100 &&1<=D&&D<=100 ){\n\t\t}\n\t\telse{\n\t\t\tthrow new IllegalArgumentException(\"不適切な数値です。\");\n\t\t}\n\t\twhile(A> 0 && C> 0){\t\n\t\t\tC -= B;\n\t\t\tif (C > 0){\n\t\t\t\tA -= D;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"if (1<=A&&A<=100 &&1<=B&&B<=100 &&1<=C&&C<=100 &&1<=D&&D<=100 ){\n\t\t}\n\t\telse{\n\t\t\tthrow new IllegalArgumentException(\"不適切な数値です。\");\n\t\t}",
"1<=A&&A<=100 &&1<=B&&B<=100 &&1<=C&&C<=100 &&1<=D&&D<=100",
"1<=D",
"C<=100",
"1<=C",
"B<=100",
"1<=B",
"1<=A&&A<=100 &&1<=B&&B<=100 &&1<=C&&C<=100 &&1<=D&&D<=100",
"1<=A",
"1",
"A",
"A<=100",
"A",
"100",
"1<=B",
"1",
"B",
"B<=100",
"B",
"100",
"1<=C",
"1",
"C",
"C<=100",
"C",
"100",
"1<=D",
"1",
"D",
"D<=100",
"D",
"100",
"{\n\t\t}",
"{\n\t\t\tthrow new IllegalArgumentException(\"不適切な数値です。\");\n\t\t}",
"throw new IllegalArgumentException(\"不適切な数値です。\");",
"new IllegalArgumentException(\"不適切な数値です。\")",
"while(A> 0 && C> 0){\t\n\t\t\tC -= B;\n\t\t\tif (C > 0){\n\t\t\t\tA -= D;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}",
"A> 0 && C> 0",
"A> 0",
"A",
"0",
"C> 0",
"C",
"0",
"{\t\n\t\t\tC -= B;\n\t\t\tif (C > 0){\n\t\t\t\tA -= D;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}",
"C -= B",
"C",
"B",
"if (C > 0){\n\t\t\t\tA -= D;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}",
"C > 0",
"C",
"0",
"{\n\t\t\t\tA -= D;\n\t\t\t}",
"A -= D",
"A",
"D",
"{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"return;",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main{\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tif (1<=A&&A<=100 &&1<=B&&B<=100 &&1<=C&&C<=100 &&1<=D&&D<=100 ){\n\t\t}\n\t\telse{\n\t\t\tthrow new IllegalArgumentException(\"不適切な数値です。\");\n\t\t}\n\t\twhile(A> 0 && C> 0){\t\n\t\t\tC -= B;\n\t\t\tif (C > 0){\n\t\t\t\tA -= D;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t}\n\t\n}",
"public class Main{\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tif (1<=A&&A<=100 &&1<=B&&B<=100 &&1<=C&&C<=100 &&1<=D&&D<=100 ){\n\t\t}\n\t\telse{\n\t\t\tthrow new IllegalArgumentException(\"不適切な数値です。\");\n\t\t}\n\t\twhile(A> 0 && C> 0){\t\n\t\t\tC -= B;\n\t\t\tif (C > 0){\n\t\t\t\tA -= D;\n\t\t\t}else{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t}\n\t\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();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
if (1<=A&&A<=100 &&1<=B&&B<=100 &&1<=C&&C<=100 &&1<=D&&D<=100 ){
}
else{
throw new IllegalArgumentException("不適切な数値です。");
}
while(A> 0 && C> 0){
C -= B;
if (C > 0){
A -= D;
}else{
System.out.println("Yes");
return;
}
}
System.out.println("No");
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
20,
4,
18,
13,
4,
18,
13,
23,
13,
12,
13,
30,
41,
13,
4,
18,
4,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
2,
13,
13,
14,
2,
2,
13,
13,
17,
30,
40,
13,
41,
13,
2,
13,
13,
14,
2,
2,
13,
13,
17,
30,
40,
13,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
12,
13,
30,
12,
13,
30,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
130,
11
],
[
130,
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
],
[
25,
26
],
[
14,
27
],
[
27,
28
],
[
28,
29
],
[
12,
30
],
[
30,
31
],
[
130,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
37,
42
],
[
34,
43
],
[
43,
44
],
[
43,
45
],
[
45,
46
],
[
46,
47
],
[
45,
48
],
[
48,
49
],
[
48,
50
],
[
34,
51
],
[
51,
52
],
[
51,
53
],
[
53,
54
],
[
54,
55
],
[
53,
56
],
[
56,
57
],
[
56,
58
],
[
34,
59
],
[
59,
60
],
[
59,
61
],
[
61,
62
],
[
62,
63
],
[
61,
64
],
[
64,
65
],
[
64,
66
],
[
34,
67
],
[
67,
68
],
[
67,
69
],
[
69,
70
],
[
70,
71
],
[
69,
72
],
[
72,
73
],
[
72,
74
],
[
34,
75
],
[
75,
76
],
[
75,
77
],
[
77,
78
],
[
77,
79
],
[
34,
80
],
[
80,
81
],
[
81,
82
],
[
82,
83
],
[
82,
84
],
[
81,
85
],
[
80,
86
],
[
86,
87
],
[
87,
88
],
[
34,
89
],
[
89,
90
],
[
89,
91
],
[
91,
92
],
[
91,
93
],
[
34,
94
],
[
94,
95
],
[
95,
96
],
[
96,
97
],
[
96,
98
],
[
95,
99
],
[
94,
100
],
[
100,
101
],
[
101,
102
],
[
34,
103
],
[
103,
104
],
[
104,
105
],
[
104,
106
],
[
103,
107
],
[
107,
108
],
[
108,
109
],
[
109,
110
],
[
110,
111
],
[
110,
112
],
[
108,
113
],
[
103,
114
],
[
114,
115
],
[
115,
116
],
[
116,
117
],
[
117,
118
],
[
117,
119
],
[
115,
120
],
[
32,
121
],
[
121,
122
],
[
130,
123
],
[
123,
124
],
[
123,
125
],
[
130,
126
],
[
126,
127
],
[
126,
128
],
[
0,
129
],
[
129,
130
],
[
129,
131
]
] |
[
"import java.util.*;\nimport java.io.*;\nimport java.nio.charset.StandardCharsets;\n\npublic class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tInputStreamReader reader = new InputStreamReader(System.in, StandardCharsets.UTF_8);\n\t\tBufferedReader in = new BufferedReader(reader);\n\t\tMain ins = new Main(in);\n\t\tins.calc();\n\t\tins.showResult();\n\t}\n\n\tMain(BufferedReader in) throws IOException {\n\t\tString[] tokens = in.readLine().split(\" \");\n\t\tint A = Integer.parseInt(tokens[0]);\n\t\tint B = Integer.parseInt(tokens[1]);\n\t\tint C = Integer.parseInt(tokens[2]);\n\t\tint D = Integer.parseInt(tokens[3]);\n\n\t\tint turnTakahashi = C / B;\n\t\tif (C % B > 0) {\n\t\t\tturnTakahashi++;\n\t\t}\n\t\tint turnAoki = A / D;\n\t\tif (A % D > 0) {\n\t\t\tturnAoki++;\n\t\t}\n\t\tif (turnTakahashi <= turnAoki) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\n\t}\n\n\tvoid calc() {\n\t}\n\n\tvoid showResult() {\n\t}\n\n}",
"import java.util.*;",
"util.*",
"java",
"import java.io.*;",
"io.*",
"java",
"import java.nio.charset.StandardCharsets;",
"StandardCharsets",
"java.nio.charset",
"public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tInputStreamReader reader = new InputStreamReader(System.in, StandardCharsets.UTF_8);\n\t\tBufferedReader in = new BufferedReader(reader);\n\t\tMain ins = new Main(in);\n\t\tins.calc();\n\t\tins.showResult();\n\t}\n\n\tMain(BufferedReader in) throws IOException {\n\t\tString[] tokens = in.readLine().split(\" \");\n\t\tint A = Integer.parseInt(tokens[0]);\n\t\tint B = Integer.parseInt(tokens[1]);\n\t\tint C = Integer.parseInt(tokens[2]);\n\t\tint D = Integer.parseInt(tokens[3]);\n\n\t\tint turnTakahashi = C / B;\n\t\tif (C % B > 0) {\n\t\t\tturnTakahashi++;\n\t\t}\n\t\tint turnAoki = A / D;\n\t\tif (A % D > 0) {\n\t\t\tturnAoki++;\n\t\t}\n\t\tif (turnTakahashi <= turnAoki) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\n\t}\n\n\tvoid calc() {\n\t}\n\n\tvoid showResult() {\n\t}\n\n}",
"Main",
"public static void main(String[] args) throws IOException {\n\t\tInputStreamReader reader = new InputStreamReader(System.in, StandardCharsets.UTF_8);\n\t\tBufferedReader in = new BufferedReader(reader);\n\t\tMain ins = new Main(in);\n\t\tins.calc();\n\t\tins.showResult();\n\t}",
"main",
"{\n\t\tInputStreamReader reader = new InputStreamReader(System.in, StandardCharsets.UTF_8);\n\t\tBufferedReader in = new BufferedReader(reader);\n\t\tMain ins = new Main(in);\n\t\tins.calc();\n\t\tins.showResult();\n\t}",
"InputStreamReader reader = new InputStreamReader(System.in, StandardCharsets.UTF_8);",
"reader",
"new InputStreamReader(System.in, StandardCharsets.UTF_8)",
"BufferedReader in = new BufferedReader(reader);",
"in",
"new BufferedReader(reader)",
"Main ins = new Main(in);",
"ins",
"new Main(in)",
"ins.calc()",
"ins.calc",
"ins",
"ins.showResult()",
"ins.showResult",
"ins",
"String[] args",
"args",
"Main(BufferedReader in) throws IOException {\n\t\tString[] tokens = in.readLine().split(\" \");\n\t\tint A = Integer.parseInt(tokens[0]);\n\t\tint B = Integer.parseInt(tokens[1]);\n\t\tint C = Integer.parseInt(tokens[2]);\n\t\tint D = Integer.parseInt(tokens[3]);\n\n\t\tint turnTakahashi = C / B;\n\t\tif (C % B > 0) {\n\t\t\tturnTakahashi++;\n\t\t}\n\t\tint turnAoki = A / D;\n\t\tif (A % D > 0) {\n\t\t\tturnAoki++;\n\t\t}\n\t\tif (turnTakahashi <= turnAoki) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\n\t}",
"Main",
"{\n\t\tString[] tokens = in.readLine().split(\" \");\n\t\tint A = Integer.parseInt(tokens[0]);\n\t\tint B = Integer.parseInt(tokens[1]);\n\t\tint C = Integer.parseInt(tokens[2]);\n\t\tint D = Integer.parseInt(tokens[3]);\n\n\t\tint turnTakahashi = C / B;\n\t\tif (C % B > 0) {\n\t\t\tturnTakahashi++;\n\t\t}\n\t\tint turnAoki = A / D;\n\t\tif (A % D > 0) {\n\t\t\tturnAoki++;\n\t\t}\n\t\tif (turnTakahashi <= turnAoki) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\n\t}",
"String[] tokens = in.readLine().split(\" \");",
"tokens",
"in.readLine().split(\" \")",
"in.readLine().split",
"in.readLine()",
"in.readLine",
"in",
"\" \"",
"int A = Integer.parseInt(tokens[0]);",
"A",
"Integer.parseInt(tokens[0])",
"Integer.parseInt",
"Integer",
"tokens[0]",
"tokens",
"0",
"int B = Integer.parseInt(tokens[1]);",
"B",
"Integer.parseInt(tokens[1])",
"Integer.parseInt",
"Integer",
"tokens[1]",
"tokens",
"1",
"int C = Integer.parseInt(tokens[2]);",
"C",
"Integer.parseInt(tokens[2])",
"Integer.parseInt",
"Integer",
"tokens[2]",
"tokens",
"2",
"int D = Integer.parseInt(tokens[3]);",
"D",
"Integer.parseInt(tokens[3])",
"Integer.parseInt",
"Integer",
"tokens[3]",
"tokens",
"3",
"int turnTakahashi = C / B;",
"turnTakahashi",
"C / B",
"C",
"B",
"if (C % B > 0) {\n\t\t\tturnTakahashi++;\n\t\t}",
"C % B > 0",
"C % B",
"C",
"B",
"0",
"{\n\t\t\tturnTakahashi++;\n\t\t}",
"turnTakahashi++",
"turnTakahashi",
"int turnAoki = A / D;",
"turnAoki",
"A / D",
"A",
"D",
"if (A % D > 0) {\n\t\t\tturnAoki++;\n\t\t}",
"A % D > 0",
"A % D",
"A",
"D",
"0",
"{\n\t\t\tturnAoki++;\n\t\t}",
"turnAoki++",
"turnAoki",
"if (turnTakahashi <= turnAoki) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"turnTakahashi <= turnAoki",
"turnTakahashi",
"turnAoki",
"{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"BufferedReader in",
"in",
"void calc() {\n\t}",
"calc",
"{\n\t}",
"void showResult() {\n\t}",
"showResult",
"{\n\t}",
"public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tInputStreamReader reader = new InputStreamReader(System.in, StandardCharsets.UTF_8);\n\t\tBufferedReader in = new BufferedReader(reader);\n\t\tMain ins = new Main(in);\n\t\tins.calc();\n\t\tins.showResult();\n\t}\n\n\tMain(BufferedReader in) throws IOException {\n\t\tString[] tokens = in.readLine().split(\" \");\n\t\tint A = Integer.parseInt(tokens[0]);\n\t\tint B = Integer.parseInt(tokens[1]);\n\t\tint C = Integer.parseInt(tokens[2]);\n\t\tint D = Integer.parseInt(tokens[3]);\n\n\t\tint turnTakahashi = C / B;\n\t\tif (C % B > 0) {\n\t\t\tturnTakahashi++;\n\t\t}\n\t\tint turnAoki = A / D;\n\t\tif (A % D > 0) {\n\t\t\tturnAoki++;\n\t\t}\n\t\tif (turnTakahashi <= turnAoki) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\n\t}\n\n\tvoid calc() {\n\t}\n\n\tvoid showResult() {\n\t}\n\n}",
"public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tInputStreamReader reader = new InputStreamReader(System.in, StandardCharsets.UTF_8);\n\t\tBufferedReader in = new BufferedReader(reader);\n\t\tMain ins = new Main(in);\n\t\tins.calc();\n\t\tins.showResult();\n\t}\n\n\tMain(BufferedReader in) throws IOException {\n\t\tString[] tokens = in.readLine().split(\" \");\n\t\tint A = Integer.parseInt(tokens[0]);\n\t\tint B = Integer.parseInt(tokens[1]);\n\t\tint C = Integer.parseInt(tokens[2]);\n\t\tint D = Integer.parseInt(tokens[3]);\n\n\t\tint turnTakahashi = C / B;\n\t\tif (C % B > 0) {\n\t\t\tturnTakahashi++;\n\t\t}\n\t\tint turnAoki = A / D;\n\t\tif (A % D > 0) {\n\t\t\tturnAoki++;\n\t\t}\n\t\tif (turnTakahashi <= turnAoki) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\n\t}\n\n\tvoid calc() {\n\t}\n\n\tvoid showResult() {\n\t}\n\n}",
"Main"
] |
import java.util.*;
import java.io.*;
import java.nio.charset.StandardCharsets;
public class Main {
public static void main(String[] args) throws IOException {
InputStreamReader reader = new InputStreamReader(System.in, StandardCharsets.UTF_8);
BufferedReader in = new BufferedReader(reader);
Main ins = new Main(in);
ins.calc();
ins.showResult();
}
Main(BufferedReader in) throws IOException {
String[] tokens = in.readLine().split(" ");
int A = Integer.parseInt(tokens[0]);
int B = Integer.parseInt(tokens[1]);
int C = Integer.parseInt(tokens[2]);
int D = Integer.parseInt(tokens[3]);
int turnTakahashi = C / B;
if (C % B > 0) {
turnTakahashi++;
}
int turnAoki = A / D;
if (A % D > 0) {
turnAoki++;
}
if (turnTakahashi <= turnAoki) {
System.out.println("Yes");
} else {
System.out.println("No");
}
}
void calc() {
}
void showResult() {
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
9,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
9,
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
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
37,
38
],
[
37,
39
],
[
32,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
40,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
49,
54
],
[
48,
55
],
[
40,
56
],
[
56,
57
],
[
56,
58
],
[
40,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
59,
63
],
[
63,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
64,
69
],
[
63,
70
],
[
6,
71
],
[
71,
72
],
[
0,
73
],
[
73,
74
],
[
73,
75
]
] |
[
"import java.util.*;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int hp1 = sc.nextInt();\n int attack1 = sc.nextInt();\n int hp2 = sc.nextInt();\n int attack2 = sc.nextInt();\n while(hp1 > 0 && hp2 > 0){\n hp2 -= attack1;\n if(hp2 <= 0) {\n System.out.println(\"Yes\");\n continue;\n }\n hp1 -= attack2;\n if(hp1 <= 0) {\n System.out.println(\"No\");\n continue;\n }\n }\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 hp1 = sc.nextInt();\n int attack1 = sc.nextInt();\n int hp2 = sc.nextInt();\n int attack2 = sc.nextInt();\n while(hp1 > 0 && hp2 > 0){\n hp2 -= attack1;\n if(hp2 <= 0) {\n System.out.println(\"Yes\");\n continue;\n }\n hp1 -= attack2;\n if(hp1 <= 0) {\n System.out.println(\"No\");\n continue;\n }\n }\n }\n }",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int hp1 = sc.nextInt();\n int attack1 = sc.nextInt();\n int hp2 = sc.nextInt();\n int attack2 = sc.nextInt();\n while(hp1 > 0 && hp2 > 0){\n hp2 -= attack1;\n if(hp2 <= 0) {\n System.out.println(\"Yes\");\n continue;\n }\n hp1 -= attack2;\n if(hp1 <= 0) {\n System.out.println(\"No\");\n continue;\n }\n }\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int hp1 = sc.nextInt();\n int attack1 = sc.nextInt();\n int hp2 = sc.nextInt();\n int attack2 = sc.nextInt();\n while(hp1 > 0 && hp2 > 0){\n hp2 -= attack1;\n if(hp2 <= 0) {\n System.out.println(\"Yes\");\n continue;\n }\n hp1 -= attack2;\n if(hp1 <= 0) {\n System.out.println(\"No\");\n continue;\n }\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int hp1 = sc.nextInt();",
"hp1",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int attack1 = sc.nextInt();",
"attack1",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int hp2 = sc.nextInt();",
"hp2",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int attack2 = sc.nextInt();",
"attack2",
"sc.nextInt()",
"sc.nextInt",
"sc",
"while(hp1 > 0 && hp2 > 0){\n hp2 -= attack1;\n if(hp2 <= 0) {\n System.out.println(\"Yes\");\n continue;\n }\n hp1 -= attack2;\n if(hp1 <= 0) {\n System.out.println(\"No\");\n continue;\n }\n }",
"hp1 > 0 && hp2 > 0",
"hp1 > 0",
"hp1",
"0",
"hp2 > 0",
"hp2",
"0",
"{\n hp2 -= attack1;\n if(hp2 <= 0) {\n System.out.println(\"Yes\");\n continue;\n }\n hp1 -= attack2;\n if(hp1 <= 0) {\n System.out.println(\"No\");\n continue;\n }\n }",
"hp2 -= attack1",
"hp2",
"attack1",
"if(hp2 <= 0) {\n System.out.println(\"Yes\");\n continue;\n }",
"hp2 <= 0",
"hp2",
"0",
"{\n System.out.println(\"Yes\");\n continue;\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"continue;",
"hp1 -= attack2",
"hp1",
"attack2",
"if(hp1 <= 0) {\n System.out.println(\"No\");\n continue;\n }",
"hp1 <= 0",
"hp1",
"0",
"{\n System.out.println(\"No\");\n continue;\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"continue;",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int hp1 = sc.nextInt();\n int attack1 = sc.nextInt();\n int hp2 = sc.nextInt();\n int attack2 = sc.nextInt();\n while(hp1 > 0 && hp2 > 0){\n hp2 -= attack1;\n if(hp2 <= 0) {\n System.out.println(\"Yes\");\n continue;\n }\n hp1 -= attack2;\n if(hp1 <= 0) {\n System.out.println(\"No\");\n continue;\n }\n }\n }\n }",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int hp1 = sc.nextInt();\n int attack1 = sc.nextInt();\n int hp2 = sc.nextInt();\n int attack2 = sc.nextInt();\n while(hp1 > 0 && hp2 > 0){\n hp2 -= attack1;\n if(hp2 <= 0) {\n System.out.println(\"Yes\");\n continue;\n }\n hp1 -= attack2;\n if(hp1 <= 0) {\n System.out.println(\"No\");\n continue;\n }\n }\n }\n }",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int hp1 = sc.nextInt();
int attack1 = sc.nextInt();
int hp2 = sc.nextInt();
int attack2 = sc.nextInt();
while(hp1 > 0 && hp2 > 0){
hp2 -= attack1;
if(hp2 <= 0) {
System.out.println("Yes");
continue;
}
hp1 -= attack2;
if(hp1 <= 0) {
System.out.println("No");
continue;
}
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
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
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
37,
38
],
[
37,
39
],
[
32,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
40,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
49,
54
],
[
48,
55
],
[
40,
56
],
[
56,
57
],
[
56,
58
],
[
40,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
59,
63
],
[
63,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
64,
69
],
[
63,
70
],
[
6,
71
],
[
71,
72
],
[
0,
73
],
[
73,
74
],
[
73,
75
]
] |
[
"import java.util.*;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tdo {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t} while(A > 0 || C > 0);\n\t\t\n\t}\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 A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tdo {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t} while(A > 0 || C > 0);\n\t\t\n\t}\n\t\n}",
"Main",
"public static void main(String[] args) {\n\t\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tdo {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t} while(A > 0 || C > 0);\n\t\t\n\t}",
"main",
"{\n\t\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tdo {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t} while(A > 0 || C > 0);\n\t\t\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"do {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t} while(A > 0 || C > 0);",
"A > 0 || C > 0",
"A > 0",
"A",
"0",
"C > 0",
"C",
"0",
"{\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}",
"C -= B",
"C",
"B",
"if(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}",
"C <= 0",
"C",
"0",
"{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"A -= D",
"A",
"D",
"if(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}",
"A <= 0",
"A",
"0",
"{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"break;",
"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 A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tdo {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t} while(A > 0 || C > 0);\n\t\t\n\t}\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 A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tdo {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t} while(A > 0 || C > 0);\n\t\t\n\t}\n\t\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
do {
C -= B;
if(C <= 0) {
System.out.println("Yes");
break;
}
A -= D;
if(A <= 0) {
System.out.println("No");
break;
}
} while(A > 0 || C > 0);
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
18,
13,
13,
41,
13,
18,
13,
13,
41,
13,
20,
41,
13,
20,
41,
13,
20,
4,
18,
13,
17,
13,
13,
4,
18,
13,
23,
13,
6,
13,
12,
13,
30,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
13,
17,
29,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
13,
17,
29,
23,
13,
23,
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
],
[
13,
14
],
[
13,
15
],
[
0,
16
],
[
112,
17
],
[
112,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
23,
25
],
[
20,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
28,
30
],
[
20,
31
],
[
31,
32
],
[
31,
33
],
[
20,
34
],
[
34,
35
],
[
34,
36
],
[
20,
37
],
[
37,
38
],
[
37,
39
],
[
20,
40
],
[
40,
41
],
[
41,
42
],
[
40,
43
],
[
40,
44
],
[
40,
45
],
[
20,
46
],
[
46,
47
],
[
47,
48
],
[
18,
49
],
[
49,
50
],
[
112,
51
],
[
51,
52
],
[
51,
53
],
[
53,
54
],
[
53,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
58,
59
],
[
59,
60
],
[
55,
61
],
[
61,
62
],
[
61,
63
],
[
63,
64
],
[
64,
65
],
[
55,
66
],
[
66,
67
],
[
66,
68
],
[
68,
69
],
[
69,
70
],
[
55,
71
],
[
71,
72
],
[
71,
73
],
[
73,
74
],
[
74,
75
],
[
55,
76
],
[
76,
77
],
[
76,
78
],
[
78,
79
],
[
79,
80
],
[
79,
81
],
[
78,
82
],
[
82,
83
],
[
83,
84
],
[
83,
85
],
[
82,
86
],
[
86,
87
],
[
87,
88
],
[
88,
89
],
[
87,
90
],
[
86,
91
],
[
78,
92
],
[
92,
93
],
[
92,
94
],
[
78,
95
],
[
95,
96
],
[
96,
97
],
[
96,
98
],
[
95,
99
],
[
99,
100
],
[
100,
101
],
[
101,
102
],
[
100,
103
],
[
99,
104
],
[
53,
105
],
[
105,
106
],
[
53,
107
],
[
107,
108
],
[
53,
109
],
[
109,
110
],
[
0,
111
],
[
111,
112
],
[
111,
113
]
] |
[
"import java.io.OutputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.PrintWriter;\nimport java.util.Scanner;\n\n/**\n * Built using CHelper plug-in\n * Actual solution is at the top\n */\npublic class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n Scanner in = new Scanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n abc164_b solver = new abc164_b();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class abc164_b {\n public void solve(int testNumber, Scanner in, PrintWriter out) {\n int A = in.nextInt();\n int B = in.nextInt();\n int C = in.nextInt();\n int D = in.nextInt();\n\n while (true) {\n C -= B;\n if (C <= 0) {\n out.println(\"Yes\");\n return;\n }\n A -= D;\n if (A <= 0) {\n out.println(\"No\");\n return;\n }\n\n }\n\n\n }\n\n }\n}\n",
"import java.io.OutputStream;",
"OutputStream",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStream;",
"InputStream",
"java.io",
"import java.io.PrintWriter;",
"PrintWriter",
"java.io",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n Scanner in = new Scanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n abc164_b solver = new abc164_b();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class abc164_b {\n public void solve(int testNumber, Scanner in, PrintWriter out) {\n int A = in.nextInt();\n int B = in.nextInt();\n int C = in.nextInt();\n int D = in.nextInt();\n\n while (true) {\n C -= B;\n if (C <= 0) {\n out.println(\"Yes\");\n return;\n }\n A -= D;\n if (A <= 0) {\n out.println(\"No\");\n return;\n }\n\n }\n\n\n }\n\n }\n}",
"Main",
"public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n Scanner in = new Scanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n abc164_b solver = new abc164_b();\n solver.solve(1, in, out);\n out.close();\n }",
"main",
"{\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n Scanner in = new Scanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n abc164_b solver = new abc164_b();\n solver.solve(1, in, out);\n out.close();\n }",
"InputStream inputStream = System.in;",
"inputStream",
"System.in",
"System",
"System.in",
"OutputStream outputStream = System.out;",
"outputStream",
"System.out",
"System",
"System.out",
"Scanner in = new Scanner(inputStream);",
"in",
"new Scanner(inputStream)",
"PrintWriter out = new PrintWriter(outputStream);",
"out",
"new PrintWriter(outputStream)",
"abc164_b solver = new abc164_b();",
"solver",
"new abc164_b()",
"solver.solve(1, in, out)",
"solver.solve",
"solver",
"1",
"in",
"out",
"out.close()",
"out.close",
"out",
"String[] args",
"args",
"static class abc164_b {\n public void solve(int testNumber, Scanner in, PrintWriter out) {\n int A = in.nextInt();\n int B = in.nextInt();\n int C = in.nextInt();\n int D = in.nextInt();\n\n while (true) {\n C -= B;\n if (C <= 0) {\n out.println(\"Yes\");\n return;\n }\n A -= D;\n if (A <= 0) {\n out.println(\"No\");\n return;\n }\n\n }\n\n\n }\n\n }",
"abc164_b",
"public void solve(int testNumber, Scanner in, PrintWriter out) {\n int A = in.nextInt();\n int B = in.nextInt();\n int C = in.nextInt();\n int D = in.nextInt();\n\n while (true) {\n C -= B;\n if (C <= 0) {\n out.println(\"Yes\");\n return;\n }\n A -= D;\n if (A <= 0) {\n out.println(\"No\");\n return;\n }\n\n }\n\n\n }",
"solve",
"{\n int A = in.nextInt();\n int B = in.nextInt();\n int C = in.nextInt();\n int D = in.nextInt();\n\n while (true) {\n C -= B;\n if (C <= 0) {\n out.println(\"Yes\");\n return;\n }\n A -= D;\n if (A <= 0) {\n out.println(\"No\");\n return;\n }\n\n }\n\n\n }",
"int A = in.nextInt();",
"A",
"in.nextInt()",
"in.nextInt",
"in",
"int B = in.nextInt();",
"B",
"in.nextInt()",
"in.nextInt",
"in",
"int C = in.nextInt();",
"C",
"in.nextInt()",
"in.nextInt",
"in",
"int D = in.nextInt();",
"D",
"in.nextInt()",
"in.nextInt",
"in",
"while (true) {\n C -= B;\n if (C <= 0) {\n out.println(\"Yes\");\n return;\n }\n A -= D;\n if (A <= 0) {\n out.println(\"No\");\n return;\n }\n\n }",
"true",
"{\n C -= B;\n if (C <= 0) {\n out.println(\"Yes\");\n return;\n }\n A -= D;\n if (A <= 0) {\n out.println(\"No\");\n return;\n }\n\n }",
"C -= B",
"C",
"B",
"if (C <= 0) {\n out.println(\"Yes\");\n return;\n }",
"C <= 0",
"C",
"0",
"{\n out.println(\"Yes\");\n return;\n }",
"out.println(\"Yes\")",
"out.println",
"out",
"\"Yes\"",
"return;",
"A -= D",
"A",
"D",
"if (A <= 0) {\n out.println(\"No\");\n return;\n }",
"A <= 0",
"A",
"0",
"{\n out.println(\"No\");\n return;\n }",
"out.println(\"No\")",
"out.println",
"out",
"\"No\"",
"return;",
"int testNumber",
"testNumber",
"Scanner in",
"in",
"PrintWriter out",
"out",
"public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n Scanner in = new Scanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n abc164_b solver = new abc164_b();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class abc164_b {\n public void solve(int testNumber, Scanner in, PrintWriter out) {\n int A = in.nextInt();\n int B = in.nextInt();\n int C = in.nextInt();\n int D = in.nextInt();\n\n while (true) {\n C -= B;\n if (C <= 0) {\n out.println(\"Yes\");\n return;\n }\n A -= D;\n if (A <= 0) {\n out.println(\"No\");\n return;\n }\n\n }\n\n\n }\n\n }\n}",
"public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n Scanner in = new Scanner(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n abc164_b solver = new abc164_b();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class abc164_b {\n public void solve(int testNumber, Scanner in, PrintWriter out) {\n int A = in.nextInt();\n int B = in.nextInt();\n int C = in.nextInt();\n int D = in.nextInt();\n\n while (true) {\n C -= B;\n if (C <= 0) {\n out.println(\"Yes\");\n return;\n }\n A -= D;\n if (A <= 0) {\n out.println(\"No\");\n return;\n }\n\n }\n\n\n }\n\n }\n}",
"Main"
] |
import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;
/**
* Built using CHelper plug-in
* Actual solution is at the top
*/
public class Main {
public static void main(String[] args) {
InputStream inputStream = System.in;
OutputStream outputStream = System.out;
Scanner in = new Scanner(inputStream);
PrintWriter out = new PrintWriter(outputStream);
abc164_b solver = new abc164_b();
solver.solve(1, in, out);
out.close();
}
static class abc164_b {
public void solve(int testNumber, Scanner in, PrintWriter out) {
int A = in.nextInt();
int B = in.nextInt();
int C = in.nextInt();
int D = in.nextInt();
while (true) {
C -= B;
if (C <= 0) {
out.println("Yes");
return;
}
A -= D;
if (A <= 0) {
out.println("No");
return;
}
}
}
}
}
|
[
7,
15,
13,
17,
6,
13,
41,
13,
20,
41,
13,
20,
12,
13,
30,
41,
13,
4,
13,
41,
13,
4,
13,
41,
13,
4,
13,
41,
13,
4,
13,
41,
13,
17,
42,
2,
2,
13,
17,
2,
13,
17,
30,
14,
2,
2,
13,
17,
17,
30,
0,
13,
13,
30,
0,
13,
13,
40,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
12,
13,
30,
29,
4,
18,
13,
23,
13,
12,
13,
30,
29,
4,
18,
13,
23,
13,
12,
13,
30,
29,
4,
18,
13,
12,
13,
30,
29,
4,
18,
13,
4,
18,
13,
12,
13,
30,
29,
4,
18,
13,
4,
18,
13,
12,
13,
30,
29,
4,
18,
13,
4,
18,
13,
12,
13,
30,
29,
4,
18,
13,
17,
23,
13,
12,
13,
30,
29,
4,
18,
13,
23,
13,
12,
13,
30,
29,
2,
13,
17,
23,
13,
12,
13,
30,
41,
13,
18,
13,
13,
41,
13,
18,
13,
17,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
0,
13,
4,
18,
13,
13,
18,
13,
13,
29,
13,
23,
13,
12,
13,
30,
41,
13,
18,
13,
13,
41,
13,
18,
13,
17,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
0,
13,
4,
18,
13,
13,
18,
13,
13,
29,
13,
23,
13,
12,
13,
30,
41,
13,
18,
13,
13,
41,
13,
18,
13,
17,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
0,
13,
4,
18,
13,
13,
18,
13,
13,
29,
13,
23,
13,
12,
13,
30,
41,
13,
18,
13,
13,
41,
13,
18,
13,
17,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
0,
13,
4,
18,
13,
13,
18,
13,
13,
29,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
319,
5
],
[
319,
6
],
[
6,
7
],
[
6,
8
],
[
319,
9
],
[
9,
10
],
[
9,
11
],
[
319,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
14,
19
],
[
19,
20
],
[
19,
21
],
[
21,
22
],
[
14,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
14,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
14,
31
],
[
31,
32
],
[
31,
33
],
[
14,
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
],
[
44,
48
],
[
43,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
43,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
42,
57
],
[
57,
58
],
[
14,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
59,
63
],
[
63,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
64,
69
],
[
59,
70
],
[
70,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
71,
76
],
[
12,
77
],
[
77,
78
],
[
319,
79
],
[
79,
80
],
[
79,
81
],
[
81,
82
],
[
82,
83
],
[
83,
84
],
[
84,
85
],
[
79,
86
],
[
86,
87
],
[
319,
88
],
[
88,
89
],
[
88,
90
],
[
90,
91
],
[
91,
92
],
[
92,
93
],
[
93,
94
],
[
88,
95
],
[
95,
96
],
[
319,
97
],
[
97,
98
],
[
97,
99
],
[
99,
100
],
[
100,
101
],
[
101,
102
],
[
102,
103
],
[
319,
104
],
[
104,
105
],
[
104,
106
],
[
106,
107
],
[
107,
108
],
[
108,
109
],
[
109,
110
],
[
108,
111
],
[
111,
112
],
[
112,
113
],
[
319,
114
],
[
114,
115
],
[
114,
116
],
[
116,
117
],
[
117,
118
],
[
118,
119
],
[
119,
120
],
[
118,
121
],
[
121,
122
],
[
122,
123
],
[
319,
124
],
[
124,
125
],
[
124,
126
],
[
126,
127
],
[
127,
128
],
[
128,
129
],
[
129,
130
],
[
128,
131
],
[
131,
132
],
[
132,
133
],
[
319,
134
],
[
134,
135
],
[
134,
136
],
[
136,
137
],
[
137,
138
],
[
138,
139
],
[
139,
140
],
[
138,
141
],
[
134,
142
],
[
142,
143
],
[
319,
144
],
[
144,
145
],
[
144,
146
],
[
146,
147
],
[
147,
148
],
[
148,
149
],
[
149,
150
],
[
144,
151
],
[
151,
152
],
[
319,
153
],
[
153,
154
],
[
153,
155
],
[
155,
156
],
[
156,
157
],
[
157,
158
],
[
157,
159
],
[
153,
160
],
[
160,
161
],
[
319,
162
],
[
162,
163
],
[
162,
164
],
[
164,
165
],
[
165,
166
],
[
165,
167
],
[
167,
168
],
[
167,
169
],
[
164,
170
],
[
170,
171
],
[
170,
172
],
[
172,
173
],
[
172,
174
],
[
164,
175
],
[
175,
176
],
[
176,
177
],
[
177,
178
],
[
177,
179
],
[
175,
180
],
[
180,
181
],
[
180,
182
],
[
175,
183
],
[
183,
184
],
[
184,
185
],
[
175,
186
],
[
187,
187
],
[
187,
188
],
[
188,
189
],
[
188,
190
],
[
190,
191
],
[
191,
192
],
[
190,
193
],
[
190,
194
],
[
194,
195
],
[
194,
196
],
[
164,
197
],
[
197,
198
],
[
162,
199
],
[
199,
200
],
[
319,
201
],
[
201,
202
],
[
201,
203
],
[
203,
204
],
[
204,
205
],
[
204,
206
],
[
206,
207
],
[
206,
208
],
[
203,
209
],
[
209,
210
],
[
209,
211
],
[
211,
212
],
[
211,
213
],
[
203,
214
],
[
214,
215
],
[
215,
216
],
[
216,
217
],
[
216,
218
],
[
214,
219
],
[
219,
220
],
[
219,
221
],
[
214,
222
],
[
222,
223
],
[
223,
224
],
[
214,
225
],
[
226,
226
],
[
226,
227
],
[
227,
228
],
[
227,
229
],
[
229,
230
],
[
230,
231
],
[
229,
232
],
[
229,
233
],
[
233,
234
],
[
233,
235
],
[
203,
236
],
[
236,
237
],
[
201,
238
],
[
238,
239
],
[
319,
240
],
[
240,
241
],
[
240,
242
],
[
242,
243
],
[
243,
244
],
[
243,
245
],
[
245,
246
],
[
245,
247
],
[
242,
248
],
[
248,
249
],
[
248,
250
],
[
250,
251
],
[
250,
252
],
[
242,
253
],
[
253,
254
],
[
254,
255
],
[
255,
256
],
[
255,
257
],
[
253,
258
],
[
258,
259
],
[
258,
260
],
[
253,
261
],
[
261,
262
],
[
262,
263
],
[
253,
264
],
[
265,
265
],
[
265,
266
],
[
266,
267
],
[
266,
268
],
[
268,
269
],
[
269,
270
],
[
268,
271
],
[
268,
272
],
[
272,
273
],
[
272,
274
],
[
242,
275
],
[
275,
276
],
[
240,
277
],
[
277,
278
],
[
319,
279
],
[
279,
280
],
[
279,
281
],
[
281,
282
],
[
282,
283
],
[
282,
284
],
[
284,
285
],
[
284,
286
],
[
281,
287
],
[
287,
288
],
[
287,
289
],
[
289,
290
],
[
289,
291
],
[
281,
292
],
[
292,
293
],
[
293,
294
],
[
294,
295
],
[
294,
296
],
[
292,
297
],
[
297,
298
],
[
297,
299
],
[
292,
300
],
[
300,
301
],
[
301,
302
],
[
292,
303
],
[
304,
304
],
[
304,
305
],
[
305,
306
],
[
305,
307
],
[
307,
308
],
[
308,
309
],
[
307,
310
],
[
307,
311
],
[
311,
312
],
[
311,
313
],
[
281,
314
],
[
314,
315
],
[
279,
316
],
[
316,
317
],
[
0,
318
],
[
318,
319
],
[
318,
320
]
] |
[
"import java.util.*;\n\n//update 2020/1/1 23:01\n\npublic class Main{\n\n static Scanner sc = new Scanner(System.in);\n static StringBuilder sb = new StringBuilder();\n\n public static void main(String[] args) {\n\n int A = nextInt();\n int B = nextInt();\n int C = nextInt();\n int D = nextInt();\n\n int cnt = 0;\n\n while(A>0 && C>0){\n\n if(cnt%2==0){\n C -= B;\n }\n else{\n A -= D;\n }\n\n cnt++;\n }\n\n if(C<=0){\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n\n\n }\n /*\n static String toSmall(String s){\n char c = s.charAt(0);\n //if(Character.isUpperCase(c)){\n if(c<=90){\n c += 32;\n }\n return String.valueOf(c);\n }\n static String toBig(String s){\n char c = s.charAt(0);\n //if(Character.isLowerCase(c)){\n if(c>=97){\n c -= 32;\n }\n return String.valueOf(c);\n }\n */\n\n static String toSmall(String s){\n return s.toLowerCase();\n }\n\n static String toBig(String s){\n return s.toUpperCase();\n }\n\n static String next(){\n return sc.next();\n }\n\n static int nextInt(){\n return Integer.parseInt(sc.next());\n }\n\n static long nextLong(){\n return Long.parseLong(sc.next());\n }\n\n static double nextDouble(){\n return Double.parseDouble(sc.next());\n }\n\n static String[] splitString(String s){\n return s.split(\"\");\n }\n\n static char[] splitChar(String s){\n return s.toCharArray();\n }\n\n static int charToInt(char a){\n return a - 48;\n }\n\n////////////////////////////////////////////\n public static int max(int[] a){\n int lng = a.length;\n int max = a[0];\n for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }\n return max;\n }\n public static long max(long[] a){\n int lng = a.length;\n long max = a[0];\n for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }\n return max;\n }\n////////////////////////////////////////////\n\n////////////////////////////////////////////\n public static int min(int[] a){\n int lng = a.length;\n int min = a[0];\n for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }\n return min;\n }\n public static long min(long[] a){\n int lng = a.length;\n long min = a[0];\n for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }\n return min;\n }\n////////////////////////////////////////////\n\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main{\n\n static Scanner sc = new Scanner(System.in);\n static StringBuilder sb = new StringBuilder();\n\n public static void main(String[] args) {\n\n int A = nextInt();\n int B = nextInt();\n int C = nextInt();\n int D = nextInt();\n\n int cnt = 0;\n\n while(A>0 && C>0){\n\n if(cnt%2==0){\n C -= B;\n }\n else{\n A -= D;\n }\n\n cnt++;\n }\n\n if(C<=0){\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n\n\n }\n /*\n static String toSmall(String s){\n char c = s.charAt(0);\n //if(Character.isUpperCase(c)){\n if(c<=90){\n c += 32;\n }\n return String.valueOf(c);\n }\n static String toBig(String s){\n char c = s.charAt(0);\n //if(Character.isLowerCase(c)){\n if(c>=97){\n c -= 32;\n }\n return String.valueOf(c);\n }\n */\n\n static String toSmall(String s){\n return s.toLowerCase();\n }\n\n static String toBig(String s){\n return s.toUpperCase();\n }\n\n static String next(){\n return sc.next();\n }\n\n static int nextInt(){\n return Integer.parseInt(sc.next());\n }\n\n static long nextLong(){\n return Long.parseLong(sc.next());\n }\n\n static double nextDouble(){\n return Double.parseDouble(sc.next());\n }\n\n static String[] splitString(String s){\n return s.split(\"\");\n }\n\n static char[] splitChar(String s){\n return s.toCharArray();\n }\n\n static int charToInt(char a){\n return a - 48;\n }\n\n////////////////////////////////////////////\n public static int max(int[] a){\n int lng = a.length;\n int max = a[0];\n for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }\n return max;\n }\n public static long max(long[] a){\n int lng = a.length;\n long max = a[0];\n for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }\n return max;\n }\n////////////////////////////////////////////\n\n////////////////////////////////////////////\n public static int min(int[] a){\n int lng = a.length;\n int min = a[0];\n for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }\n return min;\n }\n public static long min(long[] a){\n int lng = a.length;\n long min = a[0];\n for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }\n return min;\n }\n////////////////////////////////////////////\n\n}",
"Main",
"static Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"static StringBuilder sb = new StringBuilder();",
"sb",
"new StringBuilder()",
"public static void main(String[] args) {\n\n int A = nextInt();\n int B = nextInt();\n int C = nextInt();\n int D = nextInt();\n\n int cnt = 0;\n\n while(A>0 && C>0){\n\n if(cnt%2==0){\n C -= B;\n }\n else{\n A -= D;\n }\n\n cnt++;\n }\n\n if(C<=0){\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n\n\n }",
"main",
"{\n\n int A = nextInt();\n int B = nextInt();\n int C = nextInt();\n int D = nextInt();\n\n int cnt = 0;\n\n while(A>0 && C>0){\n\n if(cnt%2==0){\n C -= B;\n }\n else{\n A -= D;\n }\n\n cnt++;\n }\n\n if(C<=0){\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n\n\n }",
"int A = nextInt();",
"A",
"nextInt()",
"nextInt",
"int B = nextInt();",
"B",
"nextInt()",
"nextInt",
"int C = nextInt();",
"C",
"nextInt()",
"nextInt",
"int D = nextInt();",
"D",
"nextInt()",
"nextInt",
"int cnt = 0;",
"cnt",
"0",
"while(A>0 && C>0){\n\n if(cnt%2==0){\n C -= B;\n }\n else{\n A -= D;\n }\n\n cnt++;\n }",
"A>0 && C>0",
"A>0",
"A",
"0",
"C>0",
"C",
"0",
"{\n\n if(cnt%2==0){\n C -= B;\n }\n else{\n A -= D;\n }\n\n cnt++;\n }",
"if(cnt%2==0){\n C -= B;\n }\n else{\n A -= D;\n }",
"cnt%2==0",
"cnt%2",
"cnt",
"2",
"0",
"{\n C -= B;\n }",
"C -= B",
"C",
"B",
"{\n A -= D;\n }",
"A -= D",
"A",
"D",
"cnt++",
"cnt",
"if(C<=0){\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }",
"C<=0",
"C",
"0",
"{\n System.out.println(\"Yes\");\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n System.out.println(\"No\");\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"static String toSmall(String s){\n return s.toLowerCase();\n }",
"toSmall",
"{\n return s.toLowerCase();\n }",
"return s.toLowerCase();",
"s.toLowerCase()",
"s.toLowerCase",
"s",
"String s",
"s",
"static String toBig(String s){\n return s.toUpperCase();\n }",
"toBig",
"{\n return s.toUpperCase();\n }",
"return s.toUpperCase();",
"s.toUpperCase()",
"s.toUpperCase",
"s",
"String s",
"s",
"static String next(){\n return sc.next();\n }",
"next",
"{\n return sc.next();\n }",
"return sc.next();",
"sc.next()",
"sc.next",
"sc",
"static int nextInt(){\n return Integer.parseInt(sc.next());\n }",
"nextInt",
"{\n return Integer.parseInt(sc.next());\n }",
"return Integer.parseInt(sc.next());",
"Integer.parseInt(sc.next())",
"Integer.parseInt",
"Integer",
"sc.next()",
"sc.next",
"sc",
"static long nextLong(){\n return Long.parseLong(sc.next());\n }",
"nextLong",
"{\n return Long.parseLong(sc.next());\n }",
"return Long.parseLong(sc.next());",
"Long.parseLong(sc.next())",
"Long.parseLong",
"Long",
"sc.next()",
"sc.next",
"sc",
"static double nextDouble(){\n return Double.parseDouble(sc.next());\n }",
"nextDouble",
"{\n return Double.parseDouble(sc.next());\n }",
"return Double.parseDouble(sc.next());",
"Double.parseDouble(sc.next())",
"Double.parseDouble",
"Double",
"sc.next()",
"sc.next",
"sc",
"static String[] splitString(String s){\n return s.split(\"\");\n }",
"splitString",
"{\n return s.split(\"\");\n }",
"return s.split(\"\");",
"s.split(\"\")",
"s.split",
"s",
"\"\"",
"String s",
"s",
"static char[] splitChar(String s){\n return s.toCharArray();\n }",
"splitChar",
"{\n return s.toCharArray();\n }",
"return s.toCharArray();",
"s.toCharArray()",
"s.toCharArray",
"s",
"String s",
"s",
"static int charToInt(char a){\n return a - 48;\n }",
"charToInt",
"{\n return a - 48;\n }",
"return a - 48;",
"a - 48",
"a",
"48",
"char a",
"a",
"////////////////////////////////////////////\n public static int max(int[] a){\n int lng = a.length;\n int max = a[0];\n for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }\n return max;\n }",
"max",
"{\n int lng = a.length;\n int max = a[0];\n for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }\n return max;\n }",
"int lng = a.length;",
"lng",
"a.length",
"a",
"a.length",
"int max = a[0];",
"max",
"a[0]",
"a",
"0",
"for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }",
"int i=1;",
"int i=1;",
"i",
"1",
"i<lng",
"i",
"lng",
"i++",
"i++",
"i",
"{\n max = Math.max(max,a[i]);\n }",
"{\n max = Math.max(max,a[i]);\n }",
"max = Math.max(max,a[i])",
"max",
"Math.max(max,a[i])",
"Math.max",
"Math",
"max",
"a[i]",
"a",
"i",
"return max;",
"max",
"int[] a",
"a",
"public static long max(long[] a){\n int lng = a.length;\n long max = a[0];\n for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }\n return max;\n }",
"max",
"{\n int lng = a.length;\n long max = a[0];\n for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }\n return max;\n }",
"int lng = a.length;",
"lng",
"a.length",
"a",
"a.length",
"long max = a[0];",
"max",
"a[0]",
"a",
"0",
"for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }",
"int i=1;",
"int i=1;",
"i",
"1",
"i<lng",
"i",
"lng",
"i++",
"i++",
"i",
"{\n max = Math.max(max,a[i]);\n }",
"{\n max = Math.max(max,a[i]);\n }",
"max = Math.max(max,a[i])",
"max",
"Math.max(max,a[i])",
"Math.max",
"Math",
"max",
"a[i]",
"a",
"i",
"return max;",
"max",
"long[] a",
"a",
"////////////////////////////////////////////\n public static int min(int[] a){\n int lng = a.length;\n int min = a[0];\n for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }\n return min;\n }",
"min",
"{\n int lng = a.length;\n int min = a[0];\n for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }\n return min;\n }",
"int lng = a.length;",
"lng",
"a.length",
"a",
"a.length",
"int min = a[0];",
"min",
"a[0]",
"a",
"0",
"for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }",
"int i=1;",
"int i=1;",
"i",
"1",
"i<lng",
"i",
"lng",
"i++",
"i++",
"i",
"{\n min = Math.min(min,a[i]);\n }",
"{\n min = Math.min(min,a[i]);\n }",
"min = Math.min(min,a[i])",
"min",
"Math.min(min,a[i])",
"Math.min",
"Math",
"min",
"a[i]",
"a",
"i",
"return min;",
"min",
"int[] a",
"a",
"public static long min(long[] a){\n int lng = a.length;\n long min = a[0];\n for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }\n return min;\n }",
"min",
"{\n int lng = a.length;\n long min = a[0];\n for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }\n return min;\n }",
"int lng = a.length;",
"lng",
"a.length",
"a",
"a.length",
"long min = a[0];",
"min",
"a[0]",
"a",
"0",
"for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }",
"int i=1;",
"int i=1;",
"i",
"1",
"i<lng",
"i",
"lng",
"i++",
"i++",
"i",
"{\n min = Math.min(min,a[i]);\n }",
"{\n min = Math.min(min,a[i]);\n }",
"min = Math.min(min,a[i])",
"min",
"Math.min(min,a[i])",
"Math.min",
"Math",
"min",
"a[i]",
"a",
"i",
"return min;",
"min",
"long[] a",
"a",
"public class Main{\n\n static Scanner sc = new Scanner(System.in);\n static StringBuilder sb = new StringBuilder();\n\n public static void main(String[] args) {\n\n int A = nextInt();\n int B = nextInt();\n int C = nextInt();\n int D = nextInt();\n\n int cnt = 0;\n\n while(A>0 && C>0){\n\n if(cnt%2==0){\n C -= B;\n }\n else{\n A -= D;\n }\n\n cnt++;\n }\n\n if(C<=0){\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n\n\n }\n /*\n static String toSmall(String s){\n char c = s.charAt(0);\n //if(Character.isUpperCase(c)){\n if(c<=90){\n c += 32;\n }\n return String.valueOf(c);\n }\n static String toBig(String s){\n char c = s.charAt(0);\n //if(Character.isLowerCase(c)){\n if(c>=97){\n c -= 32;\n }\n return String.valueOf(c);\n }\n */\n\n static String toSmall(String s){\n return s.toLowerCase();\n }\n\n static String toBig(String s){\n return s.toUpperCase();\n }\n\n static String next(){\n return sc.next();\n }\n\n static int nextInt(){\n return Integer.parseInt(sc.next());\n }\n\n static long nextLong(){\n return Long.parseLong(sc.next());\n }\n\n static double nextDouble(){\n return Double.parseDouble(sc.next());\n }\n\n static String[] splitString(String s){\n return s.split(\"\");\n }\n\n static char[] splitChar(String s){\n return s.toCharArray();\n }\n\n static int charToInt(char a){\n return a - 48;\n }\n\n////////////////////////////////////////////\n public static int max(int[] a){\n int lng = a.length;\n int max = a[0];\n for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }\n return max;\n }\n public static long max(long[] a){\n int lng = a.length;\n long max = a[0];\n for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }\n return max;\n }\n////////////////////////////////////////////\n\n////////////////////////////////////////////\n public static int min(int[] a){\n int lng = a.length;\n int min = a[0];\n for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }\n return min;\n }\n public static long min(long[] a){\n int lng = a.length;\n long min = a[0];\n for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }\n return min;\n }\n////////////////////////////////////////////\n\n}",
"public class Main{\n\n static Scanner sc = new Scanner(System.in);\n static StringBuilder sb = new StringBuilder();\n\n public static void main(String[] args) {\n\n int A = nextInt();\n int B = nextInt();\n int C = nextInt();\n int D = nextInt();\n\n int cnt = 0;\n\n while(A>0 && C>0){\n\n if(cnt%2==0){\n C -= B;\n }\n else{\n A -= D;\n }\n\n cnt++;\n }\n\n if(C<=0){\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n\n\n }\n /*\n static String toSmall(String s){\n char c = s.charAt(0);\n //if(Character.isUpperCase(c)){\n if(c<=90){\n c += 32;\n }\n return String.valueOf(c);\n }\n static String toBig(String s){\n char c = s.charAt(0);\n //if(Character.isLowerCase(c)){\n if(c>=97){\n c -= 32;\n }\n return String.valueOf(c);\n }\n */\n\n static String toSmall(String s){\n return s.toLowerCase();\n }\n\n static String toBig(String s){\n return s.toUpperCase();\n }\n\n static String next(){\n return sc.next();\n }\n\n static int nextInt(){\n return Integer.parseInt(sc.next());\n }\n\n static long nextLong(){\n return Long.parseLong(sc.next());\n }\n\n static double nextDouble(){\n return Double.parseDouble(sc.next());\n }\n\n static String[] splitString(String s){\n return s.split(\"\");\n }\n\n static char[] splitChar(String s){\n return s.toCharArray();\n }\n\n static int charToInt(char a){\n return a - 48;\n }\n\n////////////////////////////////////////////\n public static int max(int[] a){\n int lng = a.length;\n int max = a[0];\n for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }\n return max;\n }\n public static long max(long[] a){\n int lng = a.length;\n long max = a[0];\n for(int i=1;i<lng;i++){\n max = Math.max(max,a[i]);\n }\n return max;\n }\n////////////////////////////////////////////\n\n////////////////////////////////////////////\n public static int min(int[] a){\n int lng = a.length;\n int min = a[0];\n for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }\n return min;\n }\n public static long min(long[] a){\n int lng = a.length;\n long min = a[0];\n for(int i=1;i<lng;i++){\n min = Math.min(min,a[i]);\n }\n return min;\n }\n////////////////////////////////////////////\n\n}",
"Main"
] |
import java.util.*;
//update 2020/1/1 23:01
public class Main{
static Scanner sc = new Scanner(System.in);
static StringBuilder sb = new StringBuilder();
public static void main(String[] args) {
int A = nextInt();
int B = nextInt();
int C = nextInt();
int D = nextInt();
int cnt = 0;
while(A>0 && C>0){
if(cnt%2==0){
C -= B;
}
else{
A -= D;
}
cnt++;
}
if(C<=0){
System.out.println("Yes");
}
else{
System.out.println("No");
}
}
/*
static String toSmall(String s){
char c = s.charAt(0);
//if(Character.isUpperCase(c)){
if(c<=90){
c += 32;
}
return String.valueOf(c);
}
static String toBig(String s){
char c = s.charAt(0);
//if(Character.isLowerCase(c)){
if(c>=97){
c -= 32;
}
return String.valueOf(c);
}
*/
static String toSmall(String s){
return s.toLowerCase();
}
static String toBig(String s){
return s.toUpperCase();
}
static String next(){
return sc.next();
}
static int nextInt(){
return Integer.parseInt(sc.next());
}
static long nextLong(){
return Long.parseLong(sc.next());
}
static double nextDouble(){
return Double.parseDouble(sc.next());
}
static String[] splitString(String s){
return s.split("");
}
static char[] splitChar(String s){
return s.toCharArray();
}
static int charToInt(char a){
return a - 48;
}
////////////////////////////////////////////
public static int max(int[] a){
int lng = a.length;
int max = a[0];
for(int i=1;i<lng;i++){
max = Math.max(max,a[i]);
}
return max;
}
public static long max(long[] a){
int lng = a.length;
long max = a[0];
for(int i=1;i<lng;i++){
max = Math.max(max,a[i]);
}
return max;
}
////////////////////////////////////////////
////////////////////////////////////////////
public static int min(int[] a){
int lng = a.length;
int min = a[0];
for(int i=1;i<lng;i++){
min = Math.min(min,a[i]);
}
return min;
}
public static long min(long[] a){
int lng = a.length;
long min = a[0];
for(int i=1;i<lng;i++){
min = Math.min(min,a[i]);
}
return min;
}
////////////////////////////////////////////
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
17,
41,
13,
17,
42,
17,
30,
14,
13,
30,
0,
13,
13,
0,
13,
17,
30,
0,
13,
13,
0,
13,
17,
14,
2,
13,
17,
30,
3,
14,
2,
13,
17,
30,
0,
13,
17,
3,
14,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
94,
5
],
[
94,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
8,
35
],
[
35,
36
],
[
35,
37
],
[
8,
38
],
[
38,
39
],
[
38,
40
],
[
8,
41
],
[
41,
42
],
[
41,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
46,
50
],
[
50,
51
],
[
50,
52
],
[
44,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
57,
58
],
[
57,
59
],
[
43,
60
],
[
60,
61
],
[
61,
62
],
[
61,
63
],
[
60,
64
],
[
64,
65
],
[
60,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
66,
70
],
[
70,
71
],
[
71,
72
],
[
71,
73
],
[
70,
74
],
[
8,
75
],
[
75,
76
],
[
75,
77
],
[
77,
78
],
[
78,
79
],
[
79,
80
],
[
80,
81
],
[
80,
82
],
[
78,
83
],
[
75,
84
],
[
84,
85
],
[
85,
86
],
[
86,
87
],
[
87,
88
],
[
87,
89
],
[
85,
90
],
[
6,
91
],
[
91,
92
],
[
0,
93
],
[
93,
94
],
[
93,
95
]
] |
[
"import java.util.*;\n\npublic class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n sc.close();\n\n boolean isWin = false;\n boolean isTakahashiTurn = true;\n while (true) {\n if (isTakahashiTurn) {\n C -= B;\n isTakahashiTurn = false;\n } else {\n A -= D;\n isTakahashiTurn = true;\n }\n if (A <= 0) {\n break;\n } else if (C <= 0) {\n isWin = true;\n break;\n }\n }\n if (isWin) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }\n\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n sc.close();\n\n boolean isWin = false;\n boolean isTakahashiTurn = true;\n while (true) {\n if (isTakahashiTurn) {\n C -= B;\n isTakahashiTurn = false;\n } else {\n A -= D;\n isTakahashiTurn = true;\n }\n if (A <= 0) {\n break;\n } else if (C <= 0) {\n isWin = true;\n break;\n }\n }\n if (isWin) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }\n\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n sc.close();\n\n boolean isWin = false;\n boolean isTakahashiTurn = true;\n while (true) {\n if (isTakahashiTurn) {\n C -= B;\n isTakahashiTurn = false;\n } else {\n A -= D;\n isTakahashiTurn = true;\n }\n if (A <= 0) {\n break;\n } else if (C <= 0) {\n isWin = true;\n break;\n }\n }\n if (isWin) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n sc.close();\n\n boolean isWin = false;\n boolean isTakahashiTurn = true;\n while (true) {\n if (isTakahashiTurn) {\n C -= B;\n isTakahashiTurn = false;\n } else {\n A -= D;\n isTakahashiTurn = true;\n }\n if (A <= 0) {\n break;\n } else if (C <= 0) {\n isWin = true;\n break;\n }\n }\n if (isWin) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"sc.close()",
"sc.close",
"sc",
"boolean isWin = false;",
"isWin",
"false",
"boolean isTakahashiTurn = true;",
"isTakahashiTurn",
"true",
"while (true) {\n if (isTakahashiTurn) {\n C -= B;\n isTakahashiTurn = false;\n } else {\n A -= D;\n isTakahashiTurn = true;\n }\n if (A <= 0) {\n break;\n } else if (C <= 0) {\n isWin = true;\n break;\n }\n }",
"true",
"{\n if (isTakahashiTurn) {\n C -= B;\n isTakahashiTurn = false;\n } else {\n A -= D;\n isTakahashiTurn = true;\n }\n if (A <= 0) {\n break;\n } else if (C <= 0) {\n isWin = true;\n break;\n }\n }",
"if (isTakahashiTurn) {\n C -= B;\n isTakahashiTurn = false;\n } else {\n A -= D;\n isTakahashiTurn = true;\n }",
"isTakahashiTurn",
"{\n C -= B;\n isTakahashiTurn = false;\n }",
"C -= B",
"C",
"B",
"isTakahashiTurn = false",
"isTakahashiTurn",
"false",
"{\n A -= D;\n isTakahashiTurn = true;\n }",
"A -= D",
"A",
"D",
"isTakahashiTurn = true",
"isTakahashiTurn",
"true",
"if (A <= 0) {\n break;\n } else if (C <= 0) {\n isWin = true;\n break;\n }",
"A <= 0",
"A",
"0",
"{\n break;\n }",
"break;",
"if (C <= 0) {\n isWin = true;\n break;\n }",
"C <= 0",
"C",
"0",
"{\n isWin = true;\n break;\n }",
"isWin = true",
"isWin",
"true",
"break;",
"if (isWin) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }",
"isWin",
"{\n System.out.println(\"Yes\");\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n System.out.println(\"No\");\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n sc.close();\n\n boolean isWin = false;\n boolean isTakahashiTurn = true;\n while (true) {\n if (isTakahashiTurn) {\n C -= B;\n isTakahashiTurn = false;\n } else {\n A -= D;\n isTakahashiTurn = true;\n }\n if (A <= 0) {\n break;\n } else if (C <= 0) {\n isWin = true;\n break;\n }\n }\n if (isWin) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }\n\n}",
"public class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n sc.close();\n\n boolean isWin = false;\n boolean isTakahashiTurn = true;\n while (true) {\n if (isTakahashiTurn) {\n C -= B;\n isTakahashiTurn = false;\n } else {\n A -= D;\n isTakahashiTurn = true;\n }\n if (A <= 0) {\n break;\n } else if (C <= 0) {\n isWin = true;\n break;\n }\n }\n if (isWin) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }\n\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
sc.close();
boolean isWin = false;
boolean isTakahashiTurn = true;
while (true) {
if (isTakahashiTurn) {
C -= B;
isTakahashiTurn = false;
} else {
A -= D;
isTakahashiTurn = true;
}
if (A <= 0) {
break;
} else if (C <= 0) {
isWin = true;
break;
}
}
if (isWin) {
System.out.println("Yes");
} else {
System.out.println("No");
}
}
}
|
[
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,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
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
],
[
23,
24
],
[
11,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
28,
29
],
[
11,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
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
],
[
43,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
47,
51
],
[
51,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
52,
57
],
[
51,
58
],
[
43,
59
],
[
59,
60
],
[
59,
61
],
[
43,
62
],
[
62,
63
],
[
63,
64
],
[
63,
65
],
[
62,
66
],
[
66,
67
],
[
67,
68
],
[
68,
69
],
[
69,
70
],
[
69,
71
],
[
67,
72
],
[
66,
73
],
[
9,
74
],
[
74,
75
]
] |
[
"import java.io.*;\nimport java.util.*;\nclass Main\n{\n public static void main(String args[])\n {\n Scanner sc=new Scanner(System.in);\n int a=sc.nextInt();\n int b=sc.nextInt();\n int c=sc.nextInt();\n int d=sc.nextInt();\n while(a>=0 || c>=0)\n {\n c-=b;\n if(c<=0)\n {\n System.out.println(\"Yes\");\n break;\n } \n a-=d;\n if(a<=0)\n {\n System.out.println(\"No\");\n break;\n }\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 Scanner sc=new Scanner(System.in);\n int a=sc.nextInt();\n int b=sc.nextInt();\n int c=sc.nextInt();\n int d=sc.nextInt();\n while(a>=0 || c>=0)\n {\n c-=b;\n if(c<=0)\n {\n System.out.println(\"Yes\");\n break;\n } \n a-=d;\n if(a<=0)\n {\n System.out.println(\"No\");\n break;\n }\n } \n }\n}",
"Main",
"public static void main(String args[])\n {\n Scanner sc=new Scanner(System.in);\n int a=sc.nextInt();\n int b=sc.nextInt();\n int c=sc.nextInt();\n int d=sc.nextInt();\n while(a>=0 || c>=0)\n {\n c-=b;\n if(c<=0)\n {\n System.out.println(\"Yes\");\n break;\n } \n a-=d;\n if(a<=0)\n {\n System.out.println(\"No\");\n break;\n }\n } \n }",
"main",
"{\n Scanner sc=new Scanner(System.in);\n int a=sc.nextInt();\n int b=sc.nextInt();\n int c=sc.nextInt();\n int d=sc.nextInt();\n while(a>=0 || c>=0)\n {\n c-=b;\n if(c<=0)\n {\n System.out.println(\"Yes\");\n break;\n } \n a-=d;\n if(a<=0)\n {\n System.out.println(\"No\");\n break;\n }\n } \n }",
"Scanner sc=new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a=sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b=sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c=sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int d=sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"while(a>=0 || c>=0)\n {\n c-=b;\n if(c<=0)\n {\n System.out.println(\"Yes\");\n break;\n } \n a-=d;\n if(a<=0)\n {\n System.out.println(\"No\");\n break;\n }\n }",
"a>=0 || c>=0",
"a>=0",
"a",
"0",
"c>=0",
"c",
"0",
"{\n c-=b;\n if(c<=0)\n {\n System.out.println(\"Yes\");\n break;\n } \n a-=d;\n if(a<=0)\n {\n System.out.println(\"No\");\n break;\n }\n }",
"c-=b",
"c",
"b",
"if(c<=0)\n {\n System.out.println(\"Yes\");\n break;\n }",
"c<=0",
"c",
"0",
"{\n System.out.println(\"Yes\");\n break;\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"a-=d",
"a",
"d",
"if(a<=0)\n {\n System.out.println(\"No\");\n break;\n }",
"a<=0",
"a",
"0",
"{\n System.out.println(\"No\");\n break;\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"break;",
"String args[]",
"args"
] |
import java.io.*;
import java.util.*;
class Main
{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
int a=sc.nextInt();
int b=sc.nextInt();
int c=sc.nextInt();
int d=sc.nextInt();
while(a>=0 || c>=0)
{
c-=b;
if(c<=0)
{
System.out.println("Yes");
break;
}
a-=d;
if(a<=0)
{
System.out.println("No");
break;
}
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
2,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
0,
13,
2,
13,
13,
14,
2,
2,
13,
17,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
80,
5
],
[
80,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
37,
38
],
[
37,
39
],
[
32,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
43,
44
],
[
43,
45
],
[
40,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
46,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
53,
54
],
[
53,
55
],
[
51,
56
],
[
40,
57
],
[
57,
58
],
[
57,
59
],
[
59,
60
],
[
59,
61
],
[
40,
62
],
[
62,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
63,
67
],
[
67,
68
],
[
67,
69
],
[
62,
70
],
[
70,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
71,
76
],
[
6,
77
],
[
77,
78
],
[
0,
79
],
[
79,
80
],
[
79,
81
]
] |
[
"import java.util.Scanner;\npublic class Main {\n public static void main(String[]args){\nScanner scan = new Scanner(System.in);\n int A = scan.nextInt();\n int B = scan.nextInt();\n int C = scan.nextInt(); \n int D = scan.nextInt();\n while ((A>0) && (C>0)){\n C=C-B;\n if (C<=0){\n System.out.println(\"Yes\");}\n A=A-D;\n if ((A<=0) && (C>0)){\n System.out.println(\"No\");}\n }\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n public static void main(String[]args){\nScanner scan = new Scanner(System.in);\n int A = scan.nextInt();\n int B = scan.nextInt();\n int C = scan.nextInt(); \n int D = scan.nextInt();\n while ((A>0) && (C>0)){\n C=C-B;\n if (C<=0){\n System.out.println(\"Yes\");}\n A=A-D;\n if ((A<=0) && (C>0)){\n System.out.println(\"No\");}\n }\n }\n}",
"Main",
"public static void main(String[]args){\nScanner scan = new Scanner(System.in);\n int A = scan.nextInt();\n int B = scan.nextInt();\n int C = scan.nextInt(); \n int D = scan.nextInt();\n while ((A>0) && (C>0)){\n C=C-B;\n if (C<=0){\n System.out.println(\"Yes\");}\n A=A-D;\n if ((A<=0) && (C>0)){\n System.out.println(\"No\");}\n }\n }",
"main",
"{\nScanner scan = new Scanner(System.in);\n int A = scan.nextInt();\n int B = scan.nextInt();\n int C = scan.nextInt(); \n int D = scan.nextInt();\n while ((A>0) && (C>0)){\n C=C-B;\n if (C<=0){\n System.out.println(\"Yes\");}\n A=A-D;\n if ((A<=0) && (C>0)){\n System.out.println(\"No\");}\n }\n }",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int A = scan.nextInt();",
"A",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int B = scan.nextInt();",
"B",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int C = scan.nextInt();",
"C",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int D = scan.nextInt();",
"D",
"scan.nextInt()",
"scan.nextInt",
"scan",
"while ((A>0) && (C>0)){\n C=C-B;\n if (C<=0){\n System.out.println(\"Yes\");}\n A=A-D;\n if ((A<=0) && (C>0)){\n System.out.println(\"No\");}\n }",
"(A>0) && (C>0)",
"(A>0)",
"A",
"0",
"(C>0)",
"C",
"0",
"{\n C=C-B;\n if (C<=0){\n System.out.println(\"Yes\");}\n A=A-D;\n if ((A<=0) && (C>0)){\n System.out.println(\"No\");}\n }",
"C=C-B",
"C",
"C-B",
"C",
"B",
"if (C<=0){\n System.out.println(\"Yes\");}",
"C<=0",
"C",
"0",
"{\n System.out.println(\"Yes\");}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"A=A-D",
"A",
"A-D",
"A",
"D",
"if ((A<=0) && (C>0)){\n System.out.println(\"No\");}",
"(A<=0) && (C>0)",
"(A<=0)",
"A",
"0",
"(C>0)",
"C",
"0",
"{\n System.out.println(\"No\");}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[]args",
"args",
"public class Main {\n public static void main(String[]args){\nScanner scan = new Scanner(System.in);\n int A = scan.nextInt();\n int B = scan.nextInt();\n int C = scan.nextInt(); \n int D = scan.nextInt();\n while ((A>0) && (C>0)){\n C=C-B;\n if (C<=0){\n System.out.println(\"Yes\");}\n A=A-D;\n if ((A<=0) && (C>0)){\n System.out.println(\"No\");}\n }\n }\n}",
"public class Main {\n public static void main(String[]args){\nScanner scan = new Scanner(System.in);\n int A = scan.nextInt();\n int B = scan.nextInt();\n int C = scan.nextInt(); \n int D = scan.nextInt();\n while ((A>0) && (C>0)){\n C=C-B;\n if (C<=0){\n System.out.println(\"Yes\");}\n A=A-D;\n if ((A<=0) && (C>0)){\n System.out.println(\"No\");}\n }\n }\n}",
"Main"
] |
import java.util.Scanner;
public class Main {
public static void main(String[]args){
Scanner scan = new Scanner(System.in);
int A = scan.nextInt();
int B = scan.nextInt();
int C = scan.nextInt();
int D = scan.nextInt();
while ((A>0) && (C>0)){
C=C-B;
if (C<=0){
System.out.println("Yes");}
A=A-D;
if ((A<=0) && (C>0)){
System.out.println("No");}
}
}
}
|
[
7,
15,
13,
17,
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,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
2,
13,
13,
0,
13,
2,
13,
13,
14,
2,
2,
13,
17,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
14,
2,
2,
13,
17,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
14,
2,
2,
13,
17,
2,
13,
17,
30,
4,
18,
18,
13,
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
],
[
10,
11
],
[
10,
12
],
[
0,
13
],
[
13,
14
],
[
13,
15
],
[
0,
16
],
[
111,
17
],
[
111,
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
],
[
32,
33
],
[
20,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
20,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
42,
43
],
[
20,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
45,
49
],
[
49,
50
],
[
49,
51
],
[
44,
52
],
[
52,
53
],
[
53,
54
],
[
53,
55
],
[
55,
56
],
[
55,
57
],
[
52,
58
],
[
58,
59
],
[
58,
60
],
[
60,
61
],
[
60,
62
],
[
20,
63
],
[
63,
64
],
[
64,
65
],
[
65,
66
],
[
65,
67
],
[
64,
68
],
[
68,
69
],
[
68,
70
],
[
63,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
74,
75
],
[
74,
76
],
[
72,
77
],
[
63,
78
],
[
78,
79
],
[
79,
80
],
[
80,
81
],
[
80,
82
],
[
79,
83
],
[
83,
84
],
[
83,
85
],
[
78,
86
],
[
86,
87
],
[
87,
88
],
[
88,
89
],
[
89,
90
],
[
89,
91
],
[
87,
92
],
[
78,
93
],
[
93,
94
],
[
94,
95
],
[
95,
96
],
[
95,
97
],
[
94,
98
],
[
98,
99
],
[
98,
100
],
[
93,
101
],
[
101,
102
],
[
102,
103
],
[
103,
104
],
[
104,
105
],
[
104,
106
],
[
102,
107
],
[
18,
108
],
[
108,
109
],
[
0,
110
],
[
110,
111
],
[
110,
112
]
] |
[
"\nimport java.util.*;\nimport java.util.ArrayDeque;\nimport java.util.Queue;\nimport java.math.RoundingMode;\nimport java.math.BigDecimal;\n\n\n\npublic class Main{\n\t public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t \tint a = sc.nextInt();\n\t \tint b = sc.nextInt();\n\t \tint c = sc.nextInt();\n\t \tint d = sc.nextInt();\n\t \twhile(a>0&&c>0) {\n\t \t\ta=a-d;\n\t \t\tc=c-b;\n\t \t}\n\t \tif(a<=0&&c<=0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}\n\t \telse if(a<=0&&c>0) {\n\t \t\tSystem.out.println(\"No\");\n\t \t}\n\t \telse if(c<=0&&a>0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}\n\t }\n}",
"import java.util.*;",
"util.*",
"java",
"import java.util.ArrayDeque;",
"ArrayDeque",
"java.util",
"import java.util.Queue;",
"Queue",
"java.util",
"import java.math.RoundingMode;",
"RoundingMode",
"java.math",
"import java.math.BigDecimal;",
"BigDecimal",
"java.math",
"public class Main{\n\t public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t \tint a = sc.nextInt();\n\t \tint b = sc.nextInt();\n\t \tint c = sc.nextInt();\n\t \tint d = sc.nextInt();\n\t \twhile(a>0&&c>0) {\n\t \t\ta=a-d;\n\t \t\tc=c-b;\n\t \t}\n\t \tif(a<=0&&c<=0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}\n\t \telse if(a<=0&&c>0) {\n\t \t\tSystem.out.println(\"No\");\n\t \t}\n\t \telse if(c<=0&&a>0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}\n\t }\n}",
"Main",
"public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t \tint a = sc.nextInt();\n\t \tint b = sc.nextInt();\n\t \tint c = sc.nextInt();\n\t \tint d = sc.nextInt();\n\t \twhile(a>0&&c>0) {\n\t \t\ta=a-d;\n\t \t\tc=c-b;\n\t \t}\n\t \tif(a<=0&&c<=0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}\n\t \telse if(a<=0&&c>0) {\n\t \t\tSystem.out.println(\"No\");\n\t \t}\n\t \telse if(c<=0&&a>0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}\n\t }",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t \tint a = sc.nextInt();\n\t \tint b = sc.nextInt();\n\t \tint c = sc.nextInt();\n\t \tint d = sc.nextInt();\n\t \twhile(a>0&&c>0) {\n\t \t\ta=a-d;\n\t \t\tc=c-b;\n\t \t}\n\t \tif(a<=0&&c<=0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}\n\t \telse if(a<=0&&c>0) {\n\t \t\tSystem.out.println(\"No\");\n\t \t}\n\t \telse if(c<=0&&a>0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}\n\t }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b = sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c = sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int d = sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"while(a>0&&c>0) {\n\t \t\ta=a-d;\n\t \t\tc=c-b;\n\t \t}",
"a>0&&c>0",
"a>0",
"a",
"0",
"c>0",
"c",
"0",
"{\n\t \t\ta=a-d;\n\t \t\tc=c-b;\n\t \t}",
"a=a-d",
"a",
"a-d",
"a",
"d",
"c=c-b",
"c",
"c-b",
"c",
"b",
"if(a<=0&&c<=0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}\n\t \telse if(a<=0&&c>0) {\n\t \t\tSystem.out.println(\"No\");\n\t \t}\n\t \telse if(c<=0&&a>0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}",
"a<=0&&c<=0",
"a<=0",
"a",
"0",
"c<=0",
"c",
"0",
"{\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"if(a<=0&&c>0) {\n\t \t\tSystem.out.println(\"No\");\n\t \t}\n\t \telse if(c<=0&&a>0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}",
"a<=0&&c>0",
"a<=0",
"a",
"0",
"c>0",
"c",
"0",
"{\n\t \t\tSystem.out.println(\"No\");\n\t \t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"if(c<=0&&a>0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}",
"c<=0&&a>0",
"c<=0",
"c",
"0",
"a>0",
"a",
"0",
"{\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"String[] args",
"args",
"public class Main{\n\t public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t \tint a = sc.nextInt();\n\t \tint b = sc.nextInt();\n\t \tint c = sc.nextInt();\n\t \tint d = sc.nextInt();\n\t \twhile(a>0&&c>0) {\n\t \t\ta=a-d;\n\t \t\tc=c-b;\n\t \t}\n\t \tif(a<=0&&c<=0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}\n\t \telse if(a<=0&&c>0) {\n\t \t\tSystem.out.println(\"No\");\n\t \t}\n\t \telse if(c<=0&&a>0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}\n\t }\n}",
"public class Main{\n\t public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t \tint a = sc.nextInt();\n\t \tint b = sc.nextInt();\n\t \tint c = sc.nextInt();\n\t \tint d = sc.nextInt();\n\t \twhile(a>0&&c>0) {\n\t \t\ta=a-d;\n\t \t\tc=c-b;\n\t \t}\n\t \tif(a<=0&&c<=0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}\n\t \telse if(a<=0&&c>0) {\n\t \t\tSystem.out.println(\"No\");\n\t \t}\n\t \telse if(c<=0&&a>0) {\n\t \t\tSystem.out.println(\"Yes\");\n\t \t}\n\t }\n}",
"Main"
] |
import java.util.*;
import java.util.ArrayDeque;
import java.util.Queue;
import java.math.RoundingMode;
import java.math.BigDecimal;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int d = sc.nextInt();
while(a>0&&c>0) {
a=a-d;
c=c-b;
}
if(a<=0&&c<=0) {
System.out.println("Yes");
}
else if(a<=0&&c>0) {
System.out.println("No");
}
else if(c<=0&&a>0) {
System.out.println("Yes");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
4,
18,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
37,
38
],
[
37,
39
],
[
32,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
40,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
49,
54
],
[
48,
55
],
[
40,
56
],
[
56,
57
],
[
56,
58
],
[
40,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
59,
63
],
[
63,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
64,
69
],
[
63,
70
],
[
8,
71
],
[
71,
72
],
[
72,
73
],
[
6,
74
],
[
74,
75
]
] |
[
"import java.util.*;\n\nclass Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int tkMonsterHp = sc.nextInt();\n int tkMonsterAttack = sc.nextInt();\n int aoMonsterHp = sc.nextInt();\n int aoMonsterAttack = sc.nextInt();\n\n while (tkMonsterHp > 0 && aoMonsterHp > 0) {\n aoMonsterHp -= tkMonsterAttack;\n if(aoMonsterHp <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n\n tkMonsterHp -= aoMonsterAttack;\n\n if(tkMonsterHp <= 0) {\n System.out.println(\"No\");\n break;\n }\n \n }\n sc.close();\n }\n}",
"import java.util.*;",
"util.*",
"java",
"class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int tkMonsterHp = sc.nextInt();\n int tkMonsterAttack = sc.nextInt();\n int aoMonsterHp = sc.nextInt();\n int aoMonsterAttack = sc.nextInt();\n\n while (tkMonsterHp > 0 && aoMonsterHp > 0) {\n aoMonsterHp -= tkMonsterAttack;\n if(aoMonsterHp <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n\n tkMonsterHp -= aoMonsterAttack;\n\n if(tkMonsterHp <= 0) {\n System.out.println(\"No\");\n break;\n }\n \n }\n sc.close();\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int tkMonsterHp = sc.nextInt();\n int tkMonsterAttack = sc.nextInt();\n int aoMonsterHp = sc.nextInt();\n int aoMonsterAttack = sc.nextInt();\n\n while (tkMonsterHp > 0 && aoMonsterHp > 0) {\n aoMonsterHp -= tkMonsterAttack;\n if(aoMonsterHp <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n\n tkMonsterHp -= aoMonsterAttack;\n\n if(tkMonsterHp <= 0) {\n System.out.println(\"No\");\n break;\n }\n \n }\n sc.close();\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int tkMonsterHp = sc.nextInt();\n int tkMonsterAttack = sc.nextInt();\n int aoMonsterHp = sc.nextInt();\n int aoMonsterAttack = sc.nextInt();\n\n while (tkMonsterHp > 0 && aoMonsterHp > 0) {\n aoMonsterHp -= tkMonsterAttack;\n if(aoMonsterHp <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n\n tkMonsterHp -= aoMonsterAttack;\n\n if(tkMonsterHp <= 0) {\n System.out.println(\"No\");\n break;\n }\n \n }\n sc.close();\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int tkMonsterHp = sc.nextInt();",
"tkMonsterHp",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int tkMonsterAttack = sc.nextInt();",
"tkMonsterAttack",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int aoMonsterHp = sc.nextInt();",
"aoMonsterHp",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int aoMonsterAttack = sc.nextInt();",
"aoMonsterAttack",
"sc.nextInt()",
"sc.nextInt",
"sc",
"while (tkMonsterHp > 0 && aoMonsterHp > 0) {\n aoMonsterHp -= tkMonsterAttack;\n if(aoMonsterHp <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n\n tkMonsterHp -= aoMonsterAttack;\n\n if(tkMonsterHp <= 0) {\n System.out.println(\"No\");\n break;\n }\n \n }",
"tkMonsterHp > 0 && aoMonsterHp > 0",
"tkMonsterHp > 0",
"tkMonsterHp",
"0",
"aoMonsterHp > 0",
"aoMonsterHp",
"0",
"{\n aoMonsterHp -= tkMonsterAttack;\n if(aoMonsterHp <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n\n tkMonsterHp -= aoMonsterAttack;\n\n if(tkMonsterHp <= 0) {\n System.out.println(\"No\");\n break;\n }\n \n }",
"aoMonsterHp -= tkMonsterAttack",
"aoMonsterHp",
"tkMonsterAttack",
"if(aoMonsterHp <= 0) {\n System.out.println(\"Yes\");\n break;\n }",
"aoMonsterHp <= 0",
"aoMonsterHp",
"0",
"{\n System.out.println(\"Yes\");\n break;\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"tkMonsterHp -= aoMonsterAttack",
"tkMonsterHp",
"aoMonsterAttack",
"if(tkMonsterHp <= 0) {\n System.out.println(\"No\");\n break;\n }",
"tkMonsterHp <= 0",
"tkMonsterHp",
"0",
"{\n System.out.println(\"No\");\n break;\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"break;",
"sc.close()",
"sc.close",
"sc",
"String[] args",
"args"
] |
import java.util.*;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int tkMonsterHp = sc.nextInt();
int tkMonsterAttack = sc.nextInt();
int aoMonsterHp = sc.nextInt();
int aoMonsterAttack = sc.nextInt();
while (tkMonsterHp > 0 && aoMonsterHp > 0) {
aoMonsterHp -= tkMonsterAttack;
if(aoMonsterHp <= 0) {
System.out.println("Yes");
break;
}
tkMonsterHp -= aoMonsterAttack;
if(tkMonsterHp <= 0) {
System.out.println("No");
break;
}
}
sc.close();
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
11,
1,
30,
30,
0,
13,
4,
13,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
0,
13,
4,
13,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
23,
13,
12,
13,
30,
0,
13,
13,
29,
13,
23,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
87,
5
],
[
87,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
35,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
38,
40
],
[
38,
41
],
[
35,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
42,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
47,
52
],
[
46,
53
],
[
35,
54
],
[
54,
55
],
[
54,
56
],
[
56,
57
],
[
56,
58
],
[
56,
59
],
[
35,
60
],
[
60,
61
],
[
61,
62
],
[
61,
63
],
[
60,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
65,
70
],
[
64,
71
],
[
6,
72
],
[
72,
73
],
[
87,
74
],
[
74,
75
],
[
74,
76
],
[
76,
77
],
[
77,
78
],
[
77,
79
],
[
76,
80
],
[
80,
81
],
[
74,
82
],
[
82,
83
],
[
74,
84
],
[
84,
85
],
[
0,
86
],
[
86,
87
],
[
86,
88
]
] |
[
"import java.util.*;\n\npublic class Main {\n public static void main(String[] args) throws Exception {\n // Your code here!\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n for(;;){\n C = Attack(C,B);\n if(C<=0){\n System.out.println(\"Yes\");\n break;\n }\n A = Attack(A,D);\n if(A<=0){\n System.out.println(\"No\");\n break;\n }\n }\n }\n public static int Attack(int H, int A){\n H -= A;\n return H;\n }\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n public static void main(String[] args) throws Exception {\n // Your code here!\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n for(;;){\n C = Attack(C,B);\n if(C<=0){\n System.out.println(\"Yes\");\n break;\n }\n A = Attack(A,D);\n if(A<=0){\n System.out.println(\"No\");\n break;\n }\n }\n }\n public static int Attack(int H, int A){\n H -= A;\n return H;\n }\n}",
"Main",
"public static void main(String[] args) throws Exception {\n // Your code here!\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n for(;;){\n C = Attack(C,B);\n if(C<=0){\n System.out.println(\"Yes\");\n break;\n }\n A = Attack(A,D);\n if(A<=0){\n System.out.println(\"No\");\n break;\n }\n }\n }",
"main",
"{\n // Your code here!\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n for(;;){\n C = Attack(C,B);\n if(C<=0){\n System.out.println(\"Yes\");\n break;\n }\n A = Attack(A,D);\n if(A<=0){\n System.out.println(\"No\");\n break;\n }\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"for(;;){\n C = Attack(C,B);\n if(C<=0){\n System.out.println(\"Yes\");\n break;\n }\n A = Attack(A,D);\n if(A<=0){\n System.out.println(\"No\");\n break;\n }\n }",
";",
"{\n C = Attack(C,B);\n if(C<=0){\n System.out.println(\"Yes\");\n break;\n }\n A = Attack(A,D);\n if(A<=0){\n System.out.println(\"No\");\n break;\n }\n }",
"{\n C = Attack(C,B);\n if(C<=0){\n System.out.println(\"Yes\");\n break;\n }\n A = Attack(A,D);\n if(A<=0){\n System.out.println(\"No\");\n break;\n }\n }",
"C = Attack(C,B)",
"C",
"Attack(C,B)",
"Attack",
"C",
"B",
"if(C<=0){\n System.out.println(\"Yes\");\n break;\n }",
"C<=0",
"C",
"0",
"{\n System.out.println(\"Yes\");\n break;\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"A = Attack(A,D)",
"A",
"Attack(A,D)",
"Attack",
"A",
"D",
"if(A<=0){\n System.out.println(\"No\");\n break;\n }",
"A<=0",
"A",
"0",
"{\n System.out.println(\"No\");\n break;\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"break;",
"String[] args",
"args",
"public static int Attack(int H, int A){\n H -= A;\n return H;\n }",
"Attack",
"{\n H -= A;\n return H;\n }",
"H -= A",
"H",
"A",
"return H;",
"H",
"int H",
"H",
"int A",
"A",
"public class Main {\n public static void main(String[] args) throws Exception {\n // Your code here!\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n for(;;){\n C = Attack(C,B);\n if(C<=0){\n System.out.println(\"Yes\");\n break;\n }\n A = Attack(A,D);\n if(A<=0){\n System.out.println(\"No\");\n break;\n }\n }\n }\n public static int Attack(int H, int A){\n H -= A;\n return H;\n }\n}",
"public class Main {\n public static void main(String[] args) throws Exception {\n // Your code here!\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n for(;;){\n C = Attack(C,B);\n if(C<=0){\n System.out.println(\"Yes\");\n break;\n }\n A = Attack(A,D);\n if(A<=0){\n System.out.println(\"No\");\n break;\n }\n }\n }\n public static int Attack(int H, int A){\n H -= A;\n return H;\n }\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
// Your code here!
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
for(;;){
C = Attack(C,B);
if(C<=0){
System.out.println("Yes");
break;
}
A = Attack(A,D);
if(A<=0){
System.out.println("No");
break;
}
}
}
public static int Attack(int H, int A){
H -= A;
return H;
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
4,
18,
13,
17,
41,
13,
20,
17,
11,
1,
41,
13,
17,
2,
13,
17,
1,
40,
13,
30,
30,
0,
18,
13,
13,
4,
18,
13,
18,
13,
13,
41,
13,
2,
18,
13,
17,
18,
13,
17,
41,
13,
2,
18,
13,
17,
18,
13,
17,
14,
2,
2,
18,
13,
17,
18,
13,
17,
17,
30,
40,
13,
14,
2,
2,
18,
13,
17,
18,
13,
17,
17,
30,
40,
13,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
112,
5
],
[
112,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
16,
17
],
[
17,
18
],
[
14,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
8,
24
],
[
24,
25
],
[
25,
26
],
[
26,
27
],
[
26,
28
],
[
24,
29
],
[
29,
30
],
[
29,
31
],
[
24,
32
],
[
32,
33
],
[
33,
34
],
[
24,
35
],
[
36,
36
],
[
36,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
37,
41
],
[
41,
42
],
[
42,
43
],
[
41,
44
],
[
44,
45
],
[
44,
46
],
[
8,
47
],
[
47,
48
],
[
47,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
49,
53
],
[
53,
54
],
[
53,
55
],
[
8,
56
],
[
56,
57
],
[
56,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
58,
62
],
[
62,
63
],
[
62,
64
],
[
8,
65
],
[
65,
66
],
[
66,
67
],
[
67,
68
],
[
68,
69
],
[
68,
70
],
[
67,
71
],
[
71,
72
],
[
71,
73
],
[
66,
74
],
[
65,
75
],
[
75,
76
],
[
76,
77
],
[
8,
78
],
[
78,
79
],
[
79,
80
],
[
80,
81
],
[
81,
82
],
[
81,
83
],
[
80,
84
],
[
84,
85
],
[
84,
86
],
[
79,
87
],
[
78,
88
],
[
88,
89
],
[
89,
90
],
[
8,
91
],
[
91,
92
],
[
92,
93
],
[
92,
94
],
[
91,
95
],
[
95,
96
],
[
96,
97
],
[
97,
98
],
[
98,
99
],
[
98,
100
],
[
96,
101
],
[
91,
102
],
[
102,
103
],
[
103,
104
],
[
104,
105
],
[
105,
106
],
[
105,
107
],
[
103,
108
],
[
6,
109
],
[
109,
110
],
[
0,
111
],
[
111,
112
],
[
111,
113
]
] |
[
"import java.util.Scanner;\npublic class Main\n{\n \tpublic static void main(String[] args)\n {\n \t Scanner sc = new Scanner(System.in);\n \tString[] word = sc.nextLine().split(\" \");\n \tint[] num = new int[4];\n \tfor(int i = 0; i < 4; i++)\n {\n \tnum[i] = Integer.parseInt(word[i]); \n }\n \n \tint a = num[0] / num[3];\n \tint b = num[2] / num[1];\n \n \tif(num[0] % num[3] != 0)\n {\n \ta++; \n }\n \n \tif(num[2] % num[1] != 0)\n {\n \tb++; \n }\n \n \tif(a >= b)\n {\n \tSystem.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main\n{\n \tpublic static void main(String[] args)\n {\n \t Scanner sc = new Scanner(System.in);\n \tString[] word = sc.nextLine().split(\" \");\n \tint[] num = new int[4];\n \tfor(int i = 0; i < 4; i++)\n {\n \tnum[i] = Integer.parseInt(word[i]); \n }\n \n \tint a = num[0] / num[3];\n \tint b = num[2] / num[1];\n \n \tif(num[0] % num[3] != 0)\n {\n \ta++; \n }\n \n \tif(num[2] % num[1] != 0)\n {\n \tb++; \n }\n \n \tif(a >= b)\n {\n \tSystem.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\n }\n}",
"Main",
"public static void main(String[] args)\n {\n \t Scanner sc = new Scanner(System.in);\n \tString[] word = sc.nextLine().split(\" \");\n \tint[] num = new int[4];\n \tfor(int i = 0; i < 4; i++)\n {\n \tnum[i] = Integer.parseInt(word[i]); \n }\n \n \tint a = num[0] / num[3];\n \tint b = num[2] / num[1];\n \n \tif(num[0] % num[3] != 0)\n {\n \ta++; \n }\n \n \tif(num[2] % num[1] != 0)\n {\n \tb++; \n }\n \n \tif(a >= b)\n {\n \tSystem.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\n }",
"main",
"{\n \t Scanner sc = new Scanner(System.in);\n \tString[] word = sc.nextLine().split(\" \");\n \tint[] num = new int[4];\n \tfor(int i = 0; i < 4; i++)\n {\n \tnum[i] = Integer.parseInt(word[i]); \n }\n \n \tint a = num[0] / num[3];\n \tint b = num[2] / num[1];\n \n \tif(num[0] % num[3] != 0)\n {\n \ta++; \n }\n \n \tif(num[2] % num[1] != 0)\n {\n \tb++; \n }\n \n \tif(a >= b)\n {\n \tSystem.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"String[] word = sc.nextLine().split(\" \");",
"word",
"sc.nextLine().split(\" \")",
"sc.nextLine().split",
"sc.nextLine()",
"sc.nextLine",
"sc",
"\" \"",
"int[] num = new int[4];",
"num",
"new int[4]",
"4",
"for(int i = 0; i < 4; i++)\n {\n \tnum[i] = Integer.parseInt(word[i]); \n }",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < 4",
"i",
"4",
"i++",
"i++",
"i",
"{\n \tnum[i] = Integer.parseInt(word[i]); \n }",
"{\n \tnum[i] = Integer.parseInt(word[i]); \n }",
"num[i] = Integer.parseInt(word[i])",
"num[i]",
"num",
"i",
"Integer.parseInt(word[i])",
"Integer.parseInt",
"Integer",
"word[i]",
"word",
"i",
"int a = num[0] / num[3];",
"a",
"num[0] / num[3]",
"num[0]",
"num",
"0",
"num[3]",
"num",
"3",
"int b = num[2] / num[1];",
"b",
"num[2] / num[1]",
"num[2]",
"num",
"2",
"num[1]",
"num",
"1",
"if(num[0] % num[3] != 0)\n {\n \ta++; \n }",
"num[0] % num[3] != 0",
"num[0] % num[3]",
"num[0]",
"num",
"0",
"num[3]",
"num",
"3",
"0",
"{\n \ta++; \n }",
"a++",
"a",
"if(num[2] % num[1] != 0)\n {\n \tb++; \n }",
"num[2] % num[1] != 0",
"num[2] % num[1]",
"num[2]",
"num",
"2",
"num[1]",
"num",
"1",
"0",
"{\n \tb++; \n }",
"b++",
"b",
"if(a >= b)\n {\n \tSystem.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }",
"a >= b",
"a",
"b",
"{\n \tSystem.out.println(\"Yes\");\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n \tSystem.out.println(\"No\");\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main\n{\n \tpublic static void main(String[] args)\n {\n \t Scanner sc = new Scanner(System.in);\n \tString[] word = sc.nextLine().split(\" \");\n \tint[] num = new int[4];\n \tfor(int i = 0; i < 4; i++)\n {\n \tnum[i] = Integer.parseInt(word[i]); \n }\n \n \tint a = num[0] / num[3];\n \tint b = num[2] / num[1];\n \n \tif(num[0] % num[3] != 0)\n {\n \ta++; \n }\n \n \tif(num[2] % num[1] != 0)\n {\n \tb++; \n }\n \n \tif(a >= b)\n {\n \tSystem.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\n }\n}",
"public class Main\n{\n \tpublic static void main(String[] args)\n {\n \t Scanner sc = new Scanner(System.in);\n \tString[] word = sc.nextLine().split(\" \");\n \tint[] num = new int[4];\n \tfor(int i = 0; i < 4; i++)\n {\n \tnum[i] = Integer.parseInt(word[i]); \n }\n \n \tint a = num[0] / num[3];\n \tint b = num[2] / num[1];\n \n \tif(num[0] % num[3] != 0)\n {\n \ta++; \n }\n \n \tif(num[2] % num[1] != 0)\n {\n \tb++; \n }\n \n \tif(a >= b)\n {\n \tSystem.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\n }\n}",
"Main"
] |
import java.util.Scanner;
public class Main
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
String[] word = sc.nextLine().split(" ");
int[] num = new int[4];
for(int i = 0; i < 4; i++)
{
num[i] = Integer.parseInt(word[i]);
}
int a = num[0] / num[3];
int b = num[2] / num[1];
if(num[0] % num[3] != 0)
{
a++;
}
if(num[2] % num[1] != 0)
{
b++;
}
if(a >= b)
{
System.out.println("Yes");
}else{
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
41,
13,
20,
41,
13,
17,
41,
13,
18,
13,
13,
41,
13,
18,
13,
13,
41,
13,
17,
12,
13,
30,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
29,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
29,
12,
13,
30,
4,
18,
20,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
90,
5
],
[
90,
6
],
[
6,
7
],
[
6,
8
],
[
90,
9
],
[
9,
10
],
[
9,
11
],
[
90,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
14,
16
],
[
90,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
19,
21
],
[
90,
22
],
[
22,
23
],
[
22,
24
],
[
90,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
27,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
36,
37
],
[
27,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
41,
42
],
[
27,
43
],
[
43,
44
],
[
43,
45
],
[
45,
46
],
[
46,
47
],
[
27,
48
],
[
48,
49
],
[
48,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
54,
58
],
[
58,
59
],
[
59,
60
],
[
60,
61
],
[
61,
62
],
[
61,
63
],
[
59,
64
],
[
58,
65
],
[
50,
66
],
[
66,
67
],
[
66,
68
],
[
50,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
69,
73
],
[
73,
74
],
[
74,
75
],
[
75,
76
],
[
76,
77
],
[
76,
78
],
[
74,
79
],
[
73,
80
],
[
90,
81
],
[
81,
82
],
[
81,
83
],
[
83,
84
],
[
84,
85
],
[
85,
86
],
[
81,
87
],
[
87,
88
],
[
0,
89
],
[
89,
90
],
[
89,
91
]
] |
[
"import java.util.*;\n\npublic class Main {\n\tScanner sc = new Scanner(System.in);\n\tfinal int MOD = 998244353;\n\tfinal int MAX = Integer.MAX_VALUE;\n\tfinal long LMAX = Long.MAX_VALUE;\n\tint len = 200001;\n\n\n\tvoid doIt() {\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\twhile(true) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\tpublic static void main(String[] args) {\n\t\tnew Main().doIt();\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\tScanner sc = new Scanner(System.in);\n\tfinal int MOD = 998244353;\n\tfinal int MAX = Integer.MAX_VALUE;\n\tfinal long LMAX = Long.MAX_VALUE;\n\tint len = 200001;\n\n\n\tvoid doIt() {\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\twhile(true) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\tpublic static void main(String[] args) {\n\t\tnew Main().doIt();\n\t}\n}",
"Main",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"final int MOD = 998244353;",
"MOD",
"998244353",
"final int MAX = Integer.MAX_VALUE;",
"MAX",
"Integer.MAX_VALUE",
"Integer",
"Integer.MAX_VALUE",
"final long LMAX = Long.MAX_VALUE;",
"LMAX",
"Long.MAX_VALUE",
"Long",
"Long.MAX_VALUE",
"int len = 200001;",
"len",
"200001",
"void doIt() {\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\twhile(true) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}",
"doIt",
"{\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\twhile(true) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"while(true) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}",
"true",
"{\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}",
"C -= B",
"C",
"B",
"if(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}",
"C <= 0",
"C",
"0",
"{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"return;",
"A -= D",
"A",
"D",
"if(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\treturn;\n\t\t\t}",
"A <= 0",
"A",
"0",
"{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\treturn;\n\t\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"return;",
"public static void main(String[] args) {\n\t\tnew Main().doIt();\n\t}",
"main",
"{\n\t\tnew Main().doIt();\n\t}",
"new Main().doIt()",
"new Main().doIt",
"new Main()",
"String[] args",
"args",
"public class Main {\n\tScanner sc = new Scanner(System.in);\n\tfinal int MOD = 998244353;\n\tfinal int MAX = Integer.MAX_VALUE;\n\tfinal long LMAX = Long.MAX_VALUE;\n\tint len = 200001;\n\n\n\tvoid doIt() {\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\twhile(true) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\tpublic static void main(String[] args) {\n\t\tnew Main().doIt();\n\t}\n}",
"public class Main {\n\tScanner sc = new Scanner(System.in);\n\tfinal int MOD = 998244353;\n\tfinal int MAX = Integer.MAX_VALUE;\n\tfinal long LMAX = Long.MAX_VALUE;\n\tint len = 200001;\n\n\n\tvoid doIt() {\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\twhile(true) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t\tif(A <= 0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t}\n\n\tpublic static void main(String[] args) {\n\t\tnew Main().doIt();\n\t}\n}",
"Main"
] |
import java.util.*;
public class Main {
Scanner sc = new Scanner(System.in);
final int MOD = 998244353;
final int MAX = Integer.MAX_VALUE;
final long LMAX = Long.MAX_VALUE;
int len = 200001;
void doIt() {
int A = sc.nextInt();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
while(true) {
C -= B;
if(C <= 0) {
System.out.println("Yes");
return;
}
A -= D;
if(A <= 0) {
System.out.println("No");
return;
}
}
}
public static void main(String[] args) {
new Main().doIt();
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
13,
0,
13,
13,
14,
2,
13,
17,
30,
0,
13,
17,
30,
0,
13,
17,
4,
18,
18,
13,
13,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
71,
5
],
[
71,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
36,
40
],
[
40,
41
],
[
40,
42
],
[
35,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
43,
47
],
[
47,
48
],
[
47,
49
],
[
8,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
50,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
8,
62
],
[
62,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
62,
67
],
[
6,
68
],
[
68,
69
],
[
0,
70
],
[
70,
71
],
[
70,
72
]
] |
[
"import java.util.*;\npublic class Main{\n\tpublic static void main(String args[]){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tString ans = \"Yes\";\n\t\twhile(A > 0 && C > 0){\n\t\t\tA -= D;\n\t\t\tC -= B;\n\t\t}\n\t\tif(C <= 0){\n\t\t\tans = \"Yes\";\n\t\t}else{\n\t\t\tans = \"No\";\n\t\t}\n\t\tSystem.out.println(ans);\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\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tString ans = \"Yes\";\n\t\twhile(A > 0 && C > 0){\n\t\t\tA -= D;\n\t\t\tC -= B;\n\t\t}\n\t\tif(C <= 0){\n\t\t\tans = \"Yes\";\n\t\t}else{\n\t\t\tans = \"No\";\n\t\t}\n\t\tSystem.out.println(ans);\n\t}\n}",
"Main",
"public static void main(String args[]){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tString ans = \"Yes\";\n\t\twhile(A > 0 && C > 0){\n\t\t\tA -= D;\n\t\t\tC -= B;\n\t\t}\n\t\tif(C <= 0){\n\t\t\tans = \"Yes\";\n\t\t}else{\n\t\t\tans = \"No\";\n\t\t}\n\t\tSystem.out.println(ans);\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tString ans = \"Yes\";\n\t\twhile(A > 0 && C > 0){\n\t\t\tA -= D;\n\t\t\tC -= B;\n\t\t}\n\t\tif(C <= 0){\n\t\t\tans = \"Yes\";\n\t\t}else{\n\t\t\tans = \"No\";\n\t\t}\n\t\tSystem.out.println(ans);\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"String ans = \"Yes\";",
"ans",
"\"Yes\"",
"while(A > 0 && C > 0){\n\t\t\tA -= D;\n\t\t\tC -= B;\n\t\t}",
"A > 0 && C > 0",
"A > 0",
"A",
"0",
"C > 0",
"C",
"0",
"{\n\t\t\tA -= D;\n\t\t\tC -= B;\n\t\t}",
"A -= D",
"A",
"D",
"C -= B",
"C",
"B",
"if(C <= 0){\n\t\t\tans = \"Yes\";\n\t\t}else{\n\t\t\tans = \"No\";\n\t\t}",
"C <= 0",
"C",
"0",
"{\n\t\t\tans = \"Yes\";\n\t\t}",
"ans = \"Yes\"",
"ans",
"\"Yes\"",
"{\n\t\t\tans = \"No\";\n\t\t}",
"ans = \"No\"",
"ans",
"\"No\"",
"System.out.println(ans)",
"System.out.println",
"System.out",
"System",
"System.out",
"ans",
"String args[]",
"args",
"public class Main{\n\tpublic static void main(String args[]){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tString ans = \"Yes\";\n\t\twhile(A > 0 && C > 0){\n\t\t\tA -= D;\n\t\t\tC -= B;\n\t\t}\n\t\tif(C <= 0){\n\t\t\tans = \"Yes\";\n\t\t}else{\n\t\t\tans = \"No\";\n\t\t}\n\t\tSystem.out.println(ans);\n\t}\n}",
"public class Main{\n\tpublic static void main(String args[]){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\tString ans = \"Yes\";\n\t\twhile(A > 0 && C > 0){\n\t\t\tA -= D;\n\t\t\tC -= B;\n\t\t}\n\t\tif(C <= 0){\n\t\t\tans = \"Yes\";\n\t\t}else{\n\t\t\tans = \"No\";\n\t\t}\n\t\tSystem.out.println(ans);\n\t}\n}",
"Main"
] |
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
String ans = "Yes";
while(A > 0 && C > 0){
A -= D;
C -= B;
}
if(C <= 0){
ans = "Yes";
}else{
ans = "No";
}
System.out.println(ans);
}
}
|
[
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,
4,
18,
13,
0,
13,
4,
18,
13,
0,
13,
4,
18,
13,
41,
13,
17,
41,
13,
17,
42,
2,
13,
17,
30,
0,
13,
13,
40,
13,
42,
2,
13,
17,
30,
0,
13,
13,
40,
13,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
87,
5
],
[
87,
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
],
[
28,
29
],
[
8,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
8,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
38,
39
],
[
8,
40
],
[
40,
41
],
[
40,
42
],
[
8,
43
],
[
43,
44
],
[
43,
45
],
[
8,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
46,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
54,
55
],
[
8,
56
],
[
56,
57
],
[
57,
58
],
[
57,
59
],
[
56,
60
],
[
60,
61
],
[
61,
62
],
[
61,
63
],
[
60,
64
],
[
64,
65
],
[
8,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
66,
70
],
[
70,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
71,
76
],
[
66,
77
],
[
77,
78
],
[
78,
79
],
[
79,
80
],
[
80,
81
],
[
80,
82
],
[
78,
83
],
[
6,
84
],
[
84,
85
],
[
0,
86
],
[
86,
87
],
[
86,
88
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n int a,b,c,d;\n a = sc.nextInt();\n b = sc.nextInt();\n c = sc.nextInt();\n d = sc.nextInt();\n int tokillaoki = 0,tokilltaka = 0;\n\n while (a>0){\n a -= d;\n tokilltaka++;\n }\n while (c>0){\n c -= b;\n tokillaoki++;\n }\n if(tokillaoki<=tokilltaka){\n System.out.println(\"Yes\");\n\n }else {\n System.out.println(\"No\");\n }\n\n\n }\n\n\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 sc = new Scanner(System.in);\n int a,b,c,d;\n a = sc.nextInt();\n b = sc.nextInt();\n c = sc.nextInt();\n d = sc.nextInt();\n int tokillaoki = 0,tokilltaka = 0;\n\n while (a>0){\n a -= d;\n tokilltaka++;\n }\n while (c>0){\n c -= b;\n tokillaoki++;\n }\n if(tokillaoki<=tokilltaka){\n System.out.println(\"Yes\");\n\n }else {\n System.out.println(\"No\");\n }\n\n\n }\n\n\n }",
"Main",
"public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n int a,b,c,d;\n a = sc.nextInt();\n b = sc.nextInt();\n c = sc.nextInt();\n d = sc.nextInt();\n int tokillaoki = 0,tokilltaka = 0;\n\n while (a>0){\n a -= d;\n tokilltaka++;\n }\n while (c>0){\n c -= b;\n tokillaoki++;\n }\n if(tokillaoki<=tokilltaka){\n System.out.println(\"Yes\");\n\n }else {\n System.out.println(\"No\");\n }\n\n\n }",
"main",
"{\n\n Scanner sc = new Scanner(System.in);\n int a,b,c,d;\n a = sc.nextInt();\n b = sc.nextInt();\n c = sc.nextInt();\n d = sc.nextInt();\n int tokillaoki = 0,tokilltaka = 0;\n\n while (a>0){\n a -= d;\n tokilltaka++;\n }\n while (c>0){\n c -= b;\n tokillaoki++;\n }\n if(tokillaoki<=tokilltaka){\n System.out.println(\"Yes\");\n\n }else {\n System.out.println(\"No\");\n }\n\n\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a",
"a",
"b",
"b",
"c",
"c",
"d;",
"d",
"a = sc.nextInt()",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"b = sc.nextInt()",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"c = sc.nextInt()",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"d = sc.nextInt()",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int tokillaoki = 0",
"tokillaoki",
"0",
"tokilltaka = 0;",
"tokilltaka",
"0",
"while (a>0){\n a -= d;\n tokilltaka++;\n }",
"a>0",
"a",
"0",
"{\n a -= d;\n tokilltaka++;\n }",
"a -= d",
"a",
"d",
"tokilltaka++",
"tokilltaka",
"while (c>0){\n c -= b;\n tokillaoki++;\n }",
"c>0",
"c",
"0",
"{\n c -= b;\n tokillaoki++;\n }",
"c -= b",
"c",
"b",
"tokillaoki++",
"tokillaoki",
"if(tokillaoki<=tokilltaka){\n System.out.println(\"Yes\");\n\n }else {\n System.out.println(\"No\");\n }",
"tokillaoki<=tokilltaka",
"tokillaoki",
"tokilltaka",
"{\n System.out.println(\"Yes\");\n\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n System.out.println(\"No\");\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main {\n\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n int a,b,c,d;\n a = sc.nextInt();\n b = sc.nextInt();\n c = sc.nextInt();\n d = sc.nextInt();\n int tokillaoki = 0,tokilltaka = 0;\n\n while (a>0){\n a -= d;\n tokilltaka++;\n }\n while (c>0){\n c -= b;\n tokillaoki++;\n }\n if(tokillaoki<=tokilltaka){\n System.out.println(\"Yes\");\n\n }else {\n System.out.println(\"No\");\n }\n\n\n }\n\n\n }",
"public class Main {\n\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n int a,b,c,d;\n a = sc.nextInt();\n b = sc.nextInt();\n c = sc.nextInt();\n d = sc.nextInt();\n int tokillaoki = 0,tokilltaka = 0;\n\n while (a>0){\n a -= d;\n tokilltaka++;\n }\n while (c>0){\n c -= b;\n tokillaoki++;\n }\n if(tokillaoki<=tokilltaka){\n System.out.println(\"Yes\");\n\n }else {\n System.out.println(\"No\");\n }\n\n\n }\n\n\n }",
"Main"
] |
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a,b,c,d;
a = sc.nextInt();
b = sc.nextInt();
c = sc.nextInt();
d = sc.nextInt();
int tokillaoki = 0,tokilltaka = 0;
while (a>0){
a -= d;
tokilltaka++;
}
while (c>0){
c -= b;
tokillaoki++;
}
if(tokillaoki<=tokilltaka){
System.out.println("Yes");
}else {
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
11,
1,
30,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
29,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
29,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
69,
5
],
[
69,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
35,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
35,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
39,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
46,
48
],
[
44,
49
],
[
43,
50
],
[
35,
51
],
[
51,
52
],
[
51,
53
],
[
35,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
54,
58
],
[
58,
59
],
[
59,
60
],
[
60,
61
],
[
61,
62
],
[
61,
63
],
[
59,
64
],
[
58,
65
],
[
6,
66
],
[
66,
67
],
[
0,
68
],
[
68,
69
],
[
68,
70
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n // 整数の入力\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n\n for(;;) {\n c -= b;\n if(c <= 0){\n System.out.println(\"Yes\");\n return;\n }\n a -= d;\n if(a <= 0){\n System.out.println(\"No\");\n return;\n }\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 // 整数の入力\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n\n for(;;) {\n c -= b;\n if(c <= 0){\n System.out.println(\"Yes\");\n return;\n }\n a -= d;\n if(a <= 0){\n System.out.println(\"No\");\n return;\n }\n }\n }\n}",
"Main",
"public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n // 整数の入力\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n\n for(;;) {\n c -= b;\n if(c <= 0){\n System.out.println(\"Yes\");\n return;\n }\n a -= d;\n if(a <= 0){\n System.out.println(\"No\");\n return;\n }\n }\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n // 整数の入力\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n\n for(;;) {\n c -= b;\n if(c <= 0){\n System.out.println(\"Yes\");\n return;\n }\n a -= d;\n if(a <= 0){\n System.out.println(\"No\");\n return;\n }\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b = sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c = sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int d = sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"for(;;) {\n c -= b;\n if(c <= 0){\n System.out.println(\"Yes\");\n return;\n }\n a -= d;\n if(a <= 0){\n System.out.println(\"No\");\n return;\n }\n }",
";",
"{\n c -= b;\n if(c <= 0){\n System.out.println(\"Yes\");\n return;\n }\n a -= d;\n if(a <= 0){\n System.out.println(\"No\");\n return;\n }\n }",
"{\n c -= b;\n if(c <= 0){\n System.out.println(\"Yes\");\n return;\n }\n a -= d;\n if(a <= 0){\n System.out.println(\"No\");\n return;\n }\n }",
"c -= b",
"c",
"b",
"if(c <= 0){\n System.out.println(\"Yes\");\n return;\n }",
"c <= 0",
"c",
"0",
"{\n System.out.println(\"Yes\");\n return;\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"return;",
"a -= d",
"a",
"d",
"if(a <= 0){\n System.out.println(\"No\");\n return;\n }",
"a <= 0",
"a",
"0",
"{\n System.out.println(\"No\");\n return;\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"return;",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n // 整数の入力\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n\n for(;;) {\n c -= b;\n if(c <= 0){\n System.out.println(\"Yes\");\n return;\n }\n a -= d;\n if(a <= 0){\n System.out.println(\"No\");\n return;\n }\n }\n }\n}",
"public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n // 整数の入力\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n\n for(;;) {\n c -= b;\n if(c <= 0){\n System.out.println(\"Yes\");\n return;\n }\n a -= d;\n if(a <= 0){\n System.out.println(\"No\");\n return;\n }\n }\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();
int b = sc.nextInt();
int c = sc.nextInt();
int d = sc.nextInt();
for(;;) {
c -= b;
if(c <= 0){
System.out.println("Yes");
return;
}
a -= d;
if(a <= 0){
System.out.println("No");
return;
}
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
41,
13,
17,
42,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
40,
13,
3,
0,
13,
13,
14,
2,
13,
17,
30,
3,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
82,
5
],
[
82,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
35,
37
],
[
8,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
40,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
48,
49
],
[
49,
50
],
[
48,
51
],
[
40,
52
],
[
52,
53
],
[
52,
54
],
[
40,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
55,
59
],
[
59,
60
],
[
8,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
65,
66
],
[
66,
67
],
[
67,
68
],
[
68,
69
],
[
68,
70
],
[
66,
71
],
[
61,
72
],
[
72,
73
],
[
73,
74
],
[
74,
75
],
[
75,
76
],
[
75,
77
],
[
73,
78
],
[
6,
79
],
[
79,
80
],
[
0,
81
],
[
81,
82
],
[
81,
83
]
] |
[
"import java.util.*;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n int win =0, lose =0;\n while (true) {\n C -= B;\n if (C <= 0) {\n win++;\n break;\n }\n A -= D;\n if (A <= 0) {\n break;\n }\n }\n if (win != 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\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 A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n int win =0, lose =0;\n while (true) {\n C -= B;\n if (C <= 0) {\n win++;\n break;\n }\n A -= D;\n if (A <= 0) {\n break;\n }\n }\n if (win != 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n int win =0, lose =0;\n while (true) {\n C -= B;\n if (C <= 0) {\n win++;\n break;\n }\n A -= D;\n if (A <= 0) {\n break;\n }\n }\n if (win != 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n int win =0, lose =0;\n while (true) {\n C -= B;\n if (C <= 0) {\n win++;\n break;\n }\n A -= D;\n if (A <= 0) {\n break;\n }\n }\n if (win != 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int win =0",
"win",
"0",
"lose =0;",
"lose",
"0",
"while (true) {\n C -= B;\n if (C <= 0) {\n win++;\n break;\n }\n A -= D;\n if (A <= 0) {\n break;\n }\n }",
"true",
"{\n C -= B;\n if (C <= 0) {\n win++;\n break;\n }\n A -= D;\n if (A <= 0) {\n break;\n }\n }",
"C -= B",
"C",
"B",
"if (C <= 0) {\n win++;\n break;\n }",
"C <= 0",
"C",
"0",
"{\n win++;\n break;\n }",
"win++",
"win",
"break;",
"A -= D",
"A",
"D",
"if (A <= 0) {\n break;\n }",
"A <= 0",
"A",
"0",
"{\n break;\n }",
"break;",
"if (win != 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }",
"win != 0",
"win",
"0",
"{\n System.out.println(\"Yes\");\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n System.out.println(\"No\");\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n int win =0, lose =0;\n while (true) {\n C -= B;\n if (C <= 0) {\n win++;\n break;\n }\n A -= D;\n if (A <= 0) {\n break;\n }\n }\n if (win != 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n int win =0, lose =0;\n while (true) {\n C -= B;\n if (C <= 0) {\n win++;\n break;\n }\n A -= D;\n if (A <= 0) {\n break;\n }\n }\n if (win != 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
int win =0, lose =0;
while (true) {
C -= B;
if (C <= 0) {
win++;
break;
}
A -= D;
if (A <= 0) {
break;
}
}
if (win != 0) {
System.out.println("Yes");
} else {
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
17,
11,
1,
0,
13,
17,
1,
40,
13,
30,
30,
14,
2,
2,
2,
13,
2,
13,
13,
17,
2,
2,
13,
2,
13,
13,
17,
3,
14,
2,
2,
13,
2,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
90,
5
],
[
90,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
8,
35
],
[
35,
36
],
[
35,
37
],
[
8,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
38,
43
],
[
43,
44
],
[
44,
45
],
[
38,
46
],
[
47,
47
],
[
47,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
53,
54
],
[
53,
55
],
[
50,
56
],
[
49,
57
],
[
57,
58
],
[
58,
59
],
[
58,
60
],
[
60,
61
],
[
60,
62
],
[
57,
63
],
[
48,
64
],
[
8,
65
],
[
65,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
69,
70
],
[
69,
71
],
[
66,
72
],
[
65,
73
],
[
73,
74
],
[
74,
75
],
[
75,
76
],
[
76,
77
],
[
76,
78
],
[
74,
79
],
[
65,
80
],
[
80,
81
],
[
81,
82
],
[
82,
83
],
[
83,
84
],
[
83,
85
],
[
81,
86
],
[
6,
87
],
[
87,
88
],
[
0,
89
],
[
89,
90
],
[
89,
91
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n long A = sc.nextLong();\n long B = sc.nextLong();\n long C = sc.nextLong();\n long D = sc.nextLong();\n sc.close();\n\n long i = 0;\n for (i = 1;; i++) {\n if (C - B * i <= 0 || A - D * i <= 0)\n break;\n }\n\n if (C - B * i <= 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n long A = sc.nextLong();\n long B = sc.nextLong();\n long C = sc.nextLong();\n long D = sc.nextLong();\n sc.close();\n\n long i = 0;\n for (i = 1;; i++) {\n if (C - B * i <= 0 || A - D * i <= 0)\n break;\n }\n\n if (C - B * i <= 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n long A = sc.nextLong();\n long B = sc.nextLong();\n long C = sc.nextLong();\n long D = sc.nextLong();\n sc.close();\n\n long i = 0;\n for (i = 1;; i++) {\n if (C - B * i <= 0 || A - D * i <= 0)\n break;\n }\n\n if (C - B * i <= 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n long A = sc.nextLong();\n long B = sc.nextLong();\n long C = sc.nextLong();\n long D = sc.nextLong();\n sc.close();\n\n long i = 0;\n for (i = 1;; i++) {\n if (C - B * i <= 0 || A - D * i <= 0)\n break;\n }\n\n if (C - B * i <= 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"long A = sc.nextLong();",
"A",
"sc.nextLong()",
"sc.nextLong",
"sc",
"long B = sc.nextLong();",
"B",
"sc.nextLong()",
"sc.nextLong",
"sc",
"long C = sc.nextLong();",
"C",
"sc.nextLong()",
"sc.nextLong",
"sc",
"long D = sc.nextLong();",
"D",
"sc.nextLong()",
"sc.nextLong",
"sc",
"sc.close()",
"sc.close",
"sc",
"long i = 0;",
"i",
"0",
"for (i = 1;; i++) {\n if (C - B * i <= 0 || A - D * i <= 0)\n break;\n }",
"i = 1;",
"i = 1",
"i",
"1",
"i++",
"i++",
"i",
"{\n if (C - B * i <= 0 || A - D * i <= 0)\n break;\n }",
"{\n if (C - B * i <= 0 || A - D * i <= 0)\n break;\n }",
"if (C - B * i <= 0 || A - D * i <= 0)\n break;",
"C - B * i <= 0 || A - D * i <= 0",
"C - B * i <= 0",
"C - B * i",
"C",
"B * i",
"B",
"i",
"0",
"A - D * i <= 0",
"A - D * i",
"A",
"D * i",
"D",
"i",
"0",
"break;",
"if (C - B * i <= 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }",
"C - B * i <= 0",
"C - B * i",
"C",
"B * i",
"B",
"i",
"0",
"{\n System.out.println(\"Yes\");\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n System.out.println(\"No\");\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n long A = sc.nextLong();\n long B = sc.nextLong();\n long C = sc.nextLong();\n long D = sc.nextLong();\n sc.close();\n\n long i = 0;\n for (i = 1;; i++) {\n if (C - B * i <= 0 || A - D * i <= 0)\n break;\n }\n\n if (C - B * i <= 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}",
"public class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n long A = sc.nextLong();\n long B = sc.nextLong();\n long C = sc.nextLong();\n long D = sc.nextLong();\n sc.close();\n\n long i = 0;\n for (i = 1;; i++) {\n if (C - B * i <= 0 || A - D * i <= 0)\n break;\n }\n\n if (C - B * i <= 0) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}",
"Main"
] |
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
long A = sc.nextLong();
long B = sc.nextLong();
long C = sc.nextLong();
long D = sc.nextLong();
sc.close();
long i = 0;
for (i = 1;; i++) {
if (C - B * i <= 0 || A - D * i <= 0)
break;
}
if (C - B * i <= 0) {
System.out.println("Yes");
} else {
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
41,
13,
41,
13,
41,
13,
17,
41,
13,
2,
17,
17,
41,
13,
41,
13,
41,
13,
41,
13,
41,
13,
41,
13,
41,
13,
41,
13,
12,
13,
30,
41,
13,
20,
0,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
2,
13,
13,
41,
13,
2,
13,
13,
14,
2,
2,
13,
13,
17,
40,
13,
14,
2,
2,
13,
13,
17,
40,
13,
14,
2,
13,
13,
4,
18,
18,
13,
13,
17,
4,
18,
18,
13,
13,
17,
4,
18,
13,
23,
13,
12,
13,
30,
41,
13,
17,
42,
2,
13,
17,
30,
14,
2,
2,
13,
17,
17,
0,
13,
2,
2,
13,
13,
13,
0,
13,
2,
2,
13,
13,
13,
0,
13,
17,
29,
13,
23,
13,
23,
13,
6,
13,
41,
13,
41,
13,
12,
13,
30,
0,
13,
20,
23,
13,
12,
13,
30,
0,
13,
20,
23,
13,
12,
13,
30,
42,
2,
2,
13,
17,
40,
4,
18,
13,
0,
13,
20,
29,
4,
18,
13,
12,
13,
30,
29,
4,
18,
13,
12,
13,
30,
29,
4,
18,
13,
4,
13,
12,
13,
30,
29,
4,
18,
13,
4,
13,
12,
13,
30,
29,
4,
18,
4,
13,
17,
12,
13,
30,
29,
4,
18,
13,
4,
13,
12,
13,
30,
41,
13,
20,
13,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
0,
18,
13,
13,
4,
13,
29,
13,
23,
13,
12,
13,
30,
41,
13,
20,
13,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
0,
18,
13,
13,
4,
13,
29,
13,
23,
13,
12,
13,
30,
29,
4,
18,
13,
12,
13,
30,
4,
18,
13,
17,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
310,
8
],
[
310,
9
],
[
9,
10
],
[
310,
11
],
[
11,
12
],
[
310,
13
],
[
13,
14
],
[
13,
15
],
[
310,
16
],
[
16,
17
],
[
16,
18
],
[
18,
19
],
[
18,
20
],
[
310,
21
],
[
21,
22
],
[
310,
23
],
[
23,
24
],
[
310,
25
],
[
25,
26
],
[
310,
27
],
[
27,
28
],
[
310,
29
],
[
29,
30
],
[
310,
31
],
[
31,
32
],
[
310,
33
],
[
33,
34
],
[
310,
35
],
[
35,
36
],
[
310,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
39,
43
],
[
43,
44
],
[
43,
45
],
[
39,
46
],
[
46,
47
],
[
46,
48
],
[
48,
49
],
[
49,
50
],
[
39,
51
],
[
51,
52
],
[
51,
53
],
[
53,
54
],
[
54,
55
],
[
39,
56
],
[
56,
57
],
[
56,
58
],
[
58,
59
],
[
59,
60
],
[
39,
61
],
[
61,
62
],
[
61,
63
],
[
63,
64
],
[
64,
65
],
[
39,
66
],
[
66,
67
],
[
66,
68
],
[
68,
69
],
[
68,
70
],
[
39,
71
],
[
71,
72
],
[
71,
73
],
[
73,
74
],
[
73,
75
],
[
39,
76
],
[
76,
77
],
[
77,
78
],
[
78,
79
],
[
78,
80
],
[
77,
81
],
[
76,
82
],
[
82,
83
],
[
39,
84
],
[
84,
85
],
[
85,
86
],
[
86,
87
],
[
86,
88
],
[
85,
89
],
[
84,
90
],
[
90,
91
],
[
39,
92
],
[
92,
93
],
[
93,
94
],
[
93,
95
],
[
92,
96
],
[
96,
97
],
[
97,
98
],
[
98,
99
],
[
98,
100
],
[
96,
101
],
[
92,
102
],
[
102,
103
],
[
103,
104
],
[
104,
105
],
[
104,
106
],
[
102,
107
],
[
39,
108
],
[
108,
109
],
[
109,
110
],
[
37,
111
],
[
111,
112
],
[
310,
113
],
[
113,
114
],
[
113,
115
],
[
115,
116
],
[
116,
117
],
[
116,
118
],
[
115,
119
],
[
119,
120
],
[
120,
121
],
[
120,
122
],
[
119,
123
],
[
123,
124
],
[
124,
125
],
[
125,
126
],
[
126,
127
],
[
126,
128
],
[
125,
129
],
[
124,
130
],
[
130,
131
],
[
130,
132
],
[
132,
133
],
[
133,
134
],
[
133,
135
],
[
132,
136
],
[
123,
137
],
[
137,
138
],
[
137,
139
],
[
139,
140
],
[
140,
141
],
[
140,
142
],
[
139,
143
],
[
123,
144
],
[
144,
145
],
[
144,
146
],
[
115,
147
],
[
147,
148
],
[
113,
149
],
[
149,
150
],
[
113,
151
],
[
151,
152
],
[
310,
153
],
[
153,
154
],
[
153,
155
],
[
155,
156
],
[
153,
157
],
[
157,
158
],
[
153,
159
],
[
159,
160
],
[
159,
161
],
[
161,
162
],
[
162,
163
],
[
162,
164
],
[
159,
165
],
[
165,
166
],
[
153,
167
],
[
167,
168
],
[
167,
169
],
[
169,
170
],
[
170,
171
],
[
170,
172
],
[
167,
173
],
[
173,
174
],
[
153,
175
],
[
175,
176
],
[
175,
177
],
[
177,
178
],
[
178,
179
],
[
179,
180
],
[
180,
181
],
[
180,
182
],
[
179,
183
],
[
183,
184
],
[
184,
185
],
[
185,
186
],
[
178,
187
],
[
187,
188
],
[
187,
189
],
[
177,
190
],
[
190,
191
],
[
191,
192
],
[
192,
193
],
[
153,
194
],
[
194,
195
],
[
194,
196
],
[
196,
197
],
[
197,
198
],
[
198,
199
],
[
199,
200
],
[
153,
201
],
[
201,
202
],
[
201,
203
],
[
203,
204
],
[
204,
205
],
[
205,
206
],
[
206,
207
],
[
205,
208
],
[
208,
209
],
[
153,
210
],
[
210,
211
],
[
210,
212
],
[
212,
213
],
[
213,
214
],
[
214,
215
],
[
215,
216
],
[
214,
217
],
[
217,
218
],
[
153,
219
],
[
219,
220
],
[
219,
221
],
[
221,
222
],
[
222,
223
],
[
223,
224
],
[
224,
225
],
[
225,
226
],
[
223,
227
],
[
153,
228
],
[
228,
229
],
[
228,
230
],
[
230,
231
],
[
231,
232
],
[
232,
233
],
[
233,
234
],
[
232,
235
],
[
235,
236
],
[
153,
237
],
[
237,
238
],
[
237,
239
],
[
239,
240
],
[
240,
241
],
[
240,
242
],
[
239,
244
],
[
244,
245
],
[
245,
246
],
[
246,
247
],
[
246,
248
],
[
244,
249
],
[
249,
250
],
[
249,
251
],
[
244,
252
],
[
252,
253
],
[
253,
254
],
[
244,
255
],
[
255,
256
],
[
256,
257
],
[
257,
258
],
[
257,
259
],
[
256,
260
],
[
260,
261
],
[
239,
262
],
[
262,
263
],
[
237,
264
],
[
264,
265
],
[
153,
266
],
[
266,
267
],
[
266,
268
],
[
268,
269
],
[
269,
270
],
[
269,
271
],
[
268,
273
],
[
273,
274
],
[
274,
275
],
[
275,
276
],
[
275,
277
],
[
273,
278
],
[
278,
279
],
[
278,
280
],
[
273,
281
],
[
281,
282
],
[
282,
283
],
[
273,
284
],
[
284,
285
],
[
285,
286
],
[
286,
287
],
[
286,
288
],
[
285,
289
],
[
289,
290
],
[
268,
291
],
[
291,
292
],
[
266,
293
],
[
293,
294
],
[
153,
295
],
[
295,
296
],
[
295,
297
],
[
297,
298
],
[
298,
299
],
[
299,
300
],
[
300,
301
],
[
153,
302
],
[
302,
303
],
[
302,
304
],
[
304,
305
],
[
305,
306
],
[
306,
307
],
[
305,
308
],
[
0,
309
],
[
309,
310
],
[
309,
311
]
] |
[
"import java.util.*;\nimport java.io.*;\n\npublic class Main {\n\tstatic PrintWriter out;\n\tstatic StringBuilder sb;\n\tstatic int mod = 998244353;\n\tstatic long inf = (long) 1e18 + 1;\n\tstatic int[] col;\n\tstatic int n, m;\n\tstatic ArrayList<Integer>[] ad;\n\tstatic long[][][] memo;\n\tstatic HashSet<Integer> h;\n\tstatic int[] a;\n\tstatic Integer[][] g;\n\n\tpublic static void main(String[] args) throws Exception {\n\t\tScanner sc = new Scanner(System.in);\n\t\tout = new PrintWriter(System.out);\n\t\tint a=sc.nextInt();\n\t\tint b=sc.nextInt();\n\t\tint c=sc.nextInt();\n\t\tint d=sc.nextInt();\n\t\tint t=c/b;\n\t\tint o=a/d;\n\t\tif(c%b!=0)\n\t\t\tt++;\n\t\tif(a%d!=0)\n\t\t\to++;\n\t//\tSystem.out.println(t+\" \"+o);\n\t\tif(t<=o)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t\tout.flush();\n\t}\n\n\tstatic long modPow(long a, long e)\n\n\t{\n\t\tlong res = 1;\n\t\twhile (e > 0) {\n\t\t\tif ((e & 1) == 1)\n\t\t\t\tres = (res * a) % mod;\n\t\t\ta = (a * a) % mod;\n\t\t\te >>= 1;\n\t\t}\n\t\treturn res;\n\t}\n\n\tstatic class Scanner {\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream system) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}\n\n\t\tpublic Scanner(String file) throws Exception {\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() throws IOException {\n\t\t\treturn br.readLine();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic char nextChar() throws IOException {\n\t\t\treturn next().charAt(0);\n\t\t}\n\n\t\tpublic Long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int[] nextArrInt(int n) throws IOException {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic long[] nextArrLong(int n) throws IOException {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic boolean ready() throws IOException {\n\t\t\treturn br.ready();\n\t\t}\n\n\t\tpublic void waitForInput() throws InterruptedException {\n\t\t\tThread.sleep(3000);\n\t\t}\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n\tstatic PrintWriter out;\n\tstatic StringBuilder sb;\n\tstatic int mod = 998244353;\n\tstatic long inf = (long) 1e18 + 1;\n\tstatic int[] col;\n\tstatic int n, m;\n\tstatic ArrayList<Integer>[] ad;\n\tstatic long[][][] memo;\n\tstatic HashSet<Integer> h;\n\tstatic int[] a;\n\tstatic Integer[][] g;\n\n\tpublic static void main(String[] args) throws Exception {\n\t\tScanner sc = new Scanner(System.in);\n\t\tout = new PrintWriter(System.out);\n\t\tint a=sc.nextInt();\n\t\tint b=sc.nextInt();\n\t\tint c=sc.nextInt();\n\t\tint d=sc.nextInt();\n\t\tint t=c/b;\n\t\tint o=a/d;\n\t\tif(c%b!=0)\n\t\t\tt++;\n\t\tif(a%d!=0)\n\t\t\to++;\n\t//\tSystem.out.println(t+\" \"+o);\n\t\tif(t<=o)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t\tout.flush();\n\t}\n\n\tstatic long modPow(long a, long e)\n\n\t{\n\t\tlong res = 1;\n\t\twhile (e > 0) {\n\t\t\tif ((e & 1) == 1)\n\t\t\t\tres = (res * a) % mod;\n\t\t\ta = (a * a) % mod;\n\t\t\te >>= 1;\n\t\t}\n\t\treturn res;\n\t}\n\n\tstatic class Scanner {\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream system) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}\n\n\t\tpublic Scanner(String file) throws Exception {\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() throws IOException {\n\t\t\treturn br.readLine();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic char nextChar() throws IOException {\n\t\t\treturn next().charAt(0);\n\t\t}\n\n\t\tpublic Long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int[] nextArrInt(int n) throws IOException {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic long[] nextArrLong(int n) throws IOException {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic boolean ready() throws IOException {\n\t\t\treturn br.ready();\n\t\t}\n\n\t\tpublic void waitForInput() throws InterruptedException {\n\t\t\tThread.sleep(3000);\n\t\t}\n\t}\n}",
"Main",
"static PrintWriter out;",
"out",
"static StringBuilder sb;",
"sb",
"static int mod = 998244353;",
"mod",
"998244353",
"static long inf = (long) 1e18 + 1;",
"inf",
"(long) 1e18 + 1",
"(long) 1e18",
"1",
"static int[] col;",
"col",
"static int n",
"n",
"m;",
"m",
"static ArrayList<Integer>[] ad;",
"ad",
"static long[][][] memo;",
"memo",
"static HashSet<Integer> h;",
"h",
"static int[] a;",
"a",
"static Integer[][] g;",
"g",
"public static void main(String[] args) throws Exception {\n\t\tScanner sc = new Scanner(System.in);\n\t\tout = new PrintWriter(System.out);\n\t\tint a=sc.nextInt();\n\t\tint b=sc.nextInt();\n\t\tint c=sc.nextInt();\n\t\tint d=sc.nextInt();\n\t\tint t=c/b;\n\t\tint o=a/d;\n\t\tif(c%b!=0)\n\t\t\tt++;\n\t\tif(a%d!=0)\n\t\t\to++;\n\t//\tSystem.out.println(t+\" \"+o);\n\t\tif(t<=o)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t\tout.flush();\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tout = new PrintWriter(System.out);\n\t\tint a=sc.nextInt();\n\t\tint b=sc.nextInt();\n\t\tint c=sc.nextInt();\n\t\tint d=sc.nextInt();\n\t\tint t=c/b;\n\t\tint o=a/d;\n\t\tif(c%b!=0)\n\t\t\tt++;\n\t\tif(a%d!=0)\n\t\t\to++;\n\t//\tSystem.out.println(t+\" \"+o);\n\t\tif(t<=o)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t\tout.flush();\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"out = new PrintWriter(System.out)",
"out",
"new PrintWriter(System.out)",
"int a=sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b=sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c=sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int d=sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int t=c/b;",
"t",
"c/b",
"c",
"b",
"int o=a/d;",
"o",
"a/d",
"a",
"d",
"if(c%b!=0)\n\t\t\tt++;",
"c%b!=0",
"c%b",
"c",
"b",
"0",
"t++",
"t",
"if(a%d!=0)\n\t\t\to++;",
"a%d!=0",
"a%d",
"a",
"d",
"0",
"o++",
"o",
"if(t<=o)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");",
"t<=o",
"t",
"o",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"out.flush()",
"out.flush",
"out",
"String[] args",
"args",
"static long modPow(long a, long e)\n\n\t{\n\t\tlong res = 1;\n\t\twhile (e > 0) {\n\t\t\tif ((e & 1) == 1)\n\t\t\t\tres = (res * a) % mod;\n\t\t\ta = (a * a) % mod;\n\t\t\te >>= 1;\n\t\t}\n\t\treturn res;\n\t}",
"modPow",
"{\n\t\tlong res = 1;\n\t\twhile (e > 0) {\n\t\t\tif ((e & 1) == 1)\n\t\t\t\tres = (res * a) % mod;\n\t\t\ta = (a * a) % mod;\n\t\t\te >>= 1;\n\t\t}\n\t\treturn res;\n\t}",
"long res = 1;",
"res",
"1",
"while (e > 0) {\n\t\t\tif ((e & 1) == 1)\n\t\t\t\tres = (res * a) % mod;\n\t\t\ta = (a * a) % mod;\n\t\t\te >>= 1;\n\t\t}",
"e > 0",
"e",
"0",
"{\n\t\t\tif ((e & 1) == 1)\n\t\t\t\tres = (res * a) % mod;\n\t\t\ta = (a * a) % mod;\n\t\t\te >>= 1;\n\t\t}",
"if ((e & 1) == 1)\n\t\t\t\tres = (res * a) % mod;",
"(e & 1) == 1",
"(e & 1)",
"e",
"1",
"1",
"res = (res * a) % mod",
"res",
"(res * a) % mod",
"(res * a)",
"res",
"a",
"mod",
"a = (a * a) % mod",
"a",
"(a * a) % mod",
"(a * a)",
"a",
"a",
"mod",
"e >>= 1",
"e",
"1",
"return res;",
"res",
"long a",
"a",
"long e",
"e",
"static class Scanner {\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream system) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}\n\n\t\tpublic Scanner(String file) throws Exception {\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() throws IOException {\n\t\t\treturn br.readLine();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic char nextChar() throws IOException {\n\t\t\treturn next().charAt(0);\n\t\t}\n\n\t\tpublic Long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int[] nextArrInt(int n) throws IOException {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic long[] nextArrLong(int n) throws IOException {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic boolean ready() throws IOException {\n\t\t\treturn br.ready();\n\t\t}\n\n\t\tpublic void waitForInput() throws InterruptedException {\n\t\t\tThread.sleep(3000);\n\t\t}\n\t}",
"Scanner",
"StringTokenizer st;",
"st",
"BufferedReader br;",
"br",
"public Scanner(InputStream system) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}",
"Scanner",
"{\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}",
"br = new BufferedReader(new InputStreamReader(system))",
"br",
"new BufferedReader(new InputStreamReader(system))",
"InputStream system",
"system",
"public Scanner(String file) throws Exception {\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}",
"Scanner",
"{\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}",
"br = new BufferedReader(new FileReader(file))",
"br",
"new BufferedReader(new FileReader(file))",
"String file",
"file",
"public String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}",
"next",
"{\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}",
"while (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());",
"st == null || !st.hasMoreTokens()",
"st == null",
"st",
"null",
"!st.hasMoreTokens()",
"st.hasMoreTokens()",
"st.hasMoreTokens",
"st",
"st = new StringTokenizer(br.readLine())",
"st",
"new StringTokenizer(br.readLine())",
"return st.nextToken();",
"st.nextToken()",
"st.nextToken",
"st",
"public String nextLine() throws IOException {\n\t\t\treturn br.readLine();\n\t\t}",
"nextLine",
"{\n\t\t\treturn br.readLine();\n\t\t}",
"return br.readLine();",
"br.readLine()",
"br.readLine",
"br",
"public int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}",
"nextInt",
"{\n\t\t\treturn Integer.parseInt(next());\n\t\t}",
"return Integer.parseInt(next());",
"Integer.parseInt(next())",
"Integer.parseInt",
"Integer",
"next()",
"next",
"public double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}",
"nextDouble",
"{\n\t\t\treturn Double.parseDouble(next());\n\t\t}",
"return Double.parseDouble(next());",
"Double.parseDouble(next())",
"Double.parseDouble",
"Double",
"next()",
"next",
"public char nextChar() throws IOException {\n\t\t\treturn next().charAt(0);\n\t\t}",
"nextChar",
"{\n\t\t\treturn next().charAt(0);\n\t\t}",
"return next().charAt(0);",
"next().charAt(0)",
"next().charAt",
"next()",
"next",
"0",
"public Long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}",
"nextLong",
"{\n\t\t\treturn Long.parseLong(next());\n\t\t}",
"return Long.parseLong(next());",
"Long.parseLong(next())",
"Long.parseLong",
"Long",
"next()",
"next",
"public int[] nextArrInt(int n) throws IOException {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}",
"nextArrInt",
"{\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}",
"int[] a = new int[n];",
"a",
"new int[n]",
"n",
"for (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < n",
"i",
"n",
"i++",
"i++",
"i",
"a[i] = nextInt();",
"a[i] = nextInt()",
"a[i]",
"a",
"i",
"nextInt()",
"nextInt",
"return a;",
"a",
"int n",
"n",
"public long[] nextArrLong(int n) throws IOException {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}",
"nextArrLong",
"{\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}",
"long[] a = new long[n];",
"a",
"new long[n]",
"n",
"for (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < n",
"i",
"n",
"i++",
"i++",
"i",
"a[i] = nextLong();",
"a[i] = nextLong()",
"a[i]",
"a",
"i",
"nextLong()",
"nextLong",
"return a;",
"a",
"int n",
"n",
"public boolean ready() throws IOException {\n\t\t\treturn br.ready();\n\t\t}",
"ready",
"{\n\t\t\treturn br.ready();\n\t\t}",
"return br.ready();",
"br.ready()",
"br.ready",
"br",
"public void waitForInput() throws InterruptedException {\n\t\t\tThread.sleep(3000);\n\t\t}",
"waitForInput",
"{\n\t\t\tThread.sleep(3000);\n\t\t}",
"Thread.sleep(3000)",
"Thread.sleep",
"Thread",
"3000",
"public class Main {\n\tstatic PrintWriter out;\n\tstatic StringBuilder sb;\n\tstatic int mod = 998244353;\n\tstatic long inf = (long) 1e18 + 1;\n\tstatic int[] col;\n\tstatic int n, m;\n\tstatic ArrayList<Integer>[] ad;\n\tstatic long[][][] memo;\n\tstatic HashSet<Integer> h;\n\tstatic int[] a;\n\tstatic Integer[][] g;\n\n\tpublic static void main(String[] args) throws Exception {\n\t\tScanner sc = new Scanner(System.in);\n\t\tout = new PrintWriter(System.out);\n\t\tint a=sc.nextInt();\n\t\tint b=sc.nextInt();\n\t\tint c=sc.nextInt();\n\t\tint d=sc.nextInt();\n\t\tint t=c/b;\n\t\tint o=a/d;\n\t\tif(c%b!=0)\n\t\t\tt++;\n\t\tif(a%d!=0)\n\t\t\to++;\n\t//\tSystem.out.println(t+\" \"+o);\n\t\tif(t<=o)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t\tout.flush();\n\t}\n\n\tstatic long modPow(long a, long e)\n\n\t{\n\t\tlong res = 1;\n\t\twhile (e > 0) {\n\t\t\tif ((e & 1) == 1)\n\t\t\t\tres = (res * a) % mod;\n\t\t\ta = (a * a) % mod;\n\t\t\te >>= 1;\n\t\t}\n\t\treturn res;\n\t}\n\n\tstatic class Scanner {\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream system) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}\n\n\t\tpublic Scanner(String file) throws Exception {\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() throws IOException {\n\t\t\treturn br.readLine();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic char nextChar() throws IOException {\n\t\t\treturn next().charAt(0);\n\t\t}\n\n\t\tpublic Long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int[] nextArrInt(int n) throws IOException {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic long[] nextArrLong(int n) throws IOException {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic boolean ready() throws IOException {\n\t\t\treturn br.ready();\n\t\t}\n\n\t\tpublic void waitForInput() throws InterruptedException {\n\t\t\tThread.sleep(3000);\n\t\t}\n\t}\n}",
"public class Main {\n\tstatic PrintWriter out;\n\tstatic StringBuilder sb;\n\tstatic int mod = 998244353;\n\tstatic long inf = (long) 1e18 + 1;\n\tstatic int[] col;\n\tstatic int n, m;\n\tstatic ArrayList<Integer>[] ad;\n\tstatic long[][][] memo;\n\tstatic HashSet<Integer> h;\n\tstatic int[] a;\n\tstatic Integer[][] g;\n\n\tpublic static void main(String[] args) throws Exception {\n\t\tScanner sc = new Scanner(System.in);\n\t\tout = new PrintWriter(System.out);\n\t\tint a=sc.nextInt();\n\t\tint b=sc.nextInt();\n\t\tint c=sc.nextInt();\n\t\tint d=sc.nextInt();\n\t\tint t=c/b;\n\t\tint o=a/d;\n\t\tif(c%b!=0)\n\t\t\tt++;\n\t\tif(a%d!=0)\n\t\t\to++;\n\t//\tSystem.out.println(t+\" \"+o);\n\t\tif(t<=o)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t\tout.flush();\n\t}\n\n\tstatic long modPow(long a, long e)\n\n\t{\n\t\tlong res = 1;\n\t\twhile (e > 0) {\n\t\t\tif ((e & 1) == 1)\n\t\t\t\tres = (res * a) % mod;\n\t\t\ta = (a * a) % mod;\n\t\t\te >>= 1;\n\t\t}\n\t\treturn res;\n\t}\n\n\tstatic class Scanner {\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream system) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(system));\n\t\t}\n\n\t\tpublic Scanner(String file) throws Exception {\n\t\t\tbr = new BufferedReader(new FileReader(file));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() throws IOException {\n\t\t\treturn br.readLine();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() throws IOException {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic char nextChar() throws IOException {\n\t\t\treturn next().charAt(0);\n\t\t}\n\n\t\tpublic Long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int[] nextArrInt(int n) throws IOException {\n\t\t\tint[] a = new int[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextInt();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic long[] nextArrLong(int n) throws IOException {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\n\t\tpublic boolean ready() throws IOException {\n\t\t\treturn br.ready();\n\t\t}\n\n\t\tpublic void waitForInput() throws InterruptedException {\n\t\t\tThread.sleep(3000);\n\t\t}\n\t}\n}",
"Main"
] |
import java.util.*;
import java.io.*;
public class Main {
static PrintWriter out;
static StringBuilder sb;
static int mod = 998244353;
static long inf = (long) 1e18 + 1;
static int[] col;
static int n, m;
static ArrayList<Integer>[] ad;
static long[][][] memo;
static HashSet<Integer> h;
static int[] a;
static Integer[][] g;
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
out = new PrintWriter(System.out);
int a=sc.nextInt();
int b=sc.nextInt();
int c=sc.nextInt();
int d=sc.nextInt();
int t=c/b;
int o=a/d;
if(c%b!=0)
t++;
if(a%d!=0)
o++;
// System.out.println(t+" "+o);
if(t<=o)
System.out.println("Yes");
else
System.out.println("No");
out.flush();
}
static long modPow(long a, long e)
{
long res = 1;
while (e > 0) {
if ((e & 1) == 1)
res = (res * a) % mod;
a = (a * a) % mod;
e >>= 1;
}
return res;
}
static class Scanner {
StringTokenizer st;
BufferedReader br;
public Scanner(InputStream system) {
br = new BufferedReader(new InputStreamReader(system));
}
public Scanner(String file) throws Exception {
br = new BufferedReader(new FileReader(file));
}
public String next() throws IOException {
while (st == null || !st.hasMoreTokens())
st = new StringTokenizer(br.readLine());
return st.nextToken();
}
public String nextLine() throws IOException {
return br.readLine();
}
public int nextInt() throws IOException {
return Integer.parseInt(next());
}
public double nextDouble() throws IOException {
return Double.parseDouble(next());
}
public char nextChar() throws IOException {
return next().charAt(0);
}
public Long nextLong() throws IOException {
return Long.parseLong(next());
}
public int[] nextArrInt(int n) throws IOException {
int[] a = new int[n];
for (int i = 0; i < n; i++)
a[i] = nextInt();
return a;
}
public long[] nextArrLong(int n) throws IOException {
long[] a = new long[n];
for (int i = 0; i < n; i++)
a[i] = nextLong();
return a;
}
public boolean ready() throws IOException {
return br.ready();
}
public void waitForInput() throws InterruptedException {
Thread.sleep(3000);
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
4,
13,
41,
13,
4,
18,
18,
13,
17,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
2,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
0,
13,
2,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
23,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
42,
4,
18,
13,
30,
4,
18,
13,
4,
18,
13,
29,
4,
18,
13,
20,
4,
18,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
127,
5
],
[
127,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
8,
13
],
[
13,
14
],
[
13,
15
],
[
15,
16
],
[
16,
17
],
[
17,
18
],
[
17,
19
],
[
15,
20
],
[
8,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
24,
25
],
[
23,
26
],
[
26,
27
],
[
26,
28
],
[
8,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
32,
33
],
[
31,
34
],
[
34,
35
],
[
34,
36
],
[
8,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
40,
41
],
[
39,
42
],
[
42,
43
],
[
42,
44
],
[
8,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
48,
49
],
[
47,
50
],
[
50,
51
],
[
50,
52
],
[
8,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
54,
58
],
[
58,
59
],
[
58,
60
],
[
53,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
64,
65
],
[
64,
66
],
[
61,
67
],
[
67,
68
],
[
68,
69
],
[
68,
70
],
[
67,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
74,
75
],
[
74,
76
],
[
72,
77
],
[
71,
78
],
[
61,
79
],
[
79,
80
],
[
79,
81
],
[
81,
82
],
[
81,
83
],
[
61,
84
],
[
84,
85
],
[
85,
86
],
[
85,
87
],
[
84,
88
],
[
88,
89
],
[
89,
90
],
[
90,
91
],
[
91,
92
],
[
91,
93
],
[
89,
94
],
[
88,
95
],
[
6,
96
],
[
96,
97
],
[
127,
98
],
[
98,
99
],
[
98,
100
],
[
100,
101
],
[
101,
102
],
[
101,
103
],
[
100,
104
],
[
104,
105
],
[
104,
106
],
[
100,
107
],
[
107,
108
],
[
108,
109
],
[
109,
110
],
[
107,
111
],
[
111,
112
],
[
112,
113
],
[
113,
114
],
[
112,
115
],
[
115,
116
],
[
116,
117
],
[
100,
118
],
[
118,
119
],
[
119,
120
],
[
120,
121
],
[
119,
122
],
[
123,
124
],
[
124,
125
],
[
0,
126
],
[
126,
127
],
[
126,
128
]
] |
[
"import java.util.*;\npublic class Main {\n public static void main(String[] args) throws Exception {\n String[] lines = getStdin();\n String[] str = lines[0].split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n int c = Integer.parseInt(str[2]);\n int d = Integer.parseInt(str[3]);\n \n while(a > 0 && c > 0){\n c = c - b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a = a - d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n } \n \n }\n private static String[] getStdin() {\n Scanner scanner = new Scanner(System.in);\n ArrayList<String> lines = new ArrayList<>();\n while (scanner.hasNext()) {\n lines.add(scanner.nextLine());\n }\n return lines.toArray(new String[lines.size()]);\n }\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n public static void main(String[] args) throws Exception {\n String[] lines = getStdin();\n String[] str = lines[0].split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n int c = Integer.parseInt(str[2]);\n int d = Integer.parseInt(str[3]);\n \n while(a > 0 && c > 0){\n c = c - b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a = a - d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n } \n \n }\n private static String[] getStdin() {\n Scanner scanner = new Scanner(System.in);\n ArrayList<String> lines = new ArrayList<>();\n while (scanner.hasNext()) {\n lines.add(scanner.nextLine());\n }\n return lines.toArray(new String[lines.size()]);\n }\n}",
"Main",
"public static void main(String[] args) throws Exception {\n String[] lines = getStdin();\n String[] str = lines[0].split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n int c = Integer.parseInt(str[2]);\n int d = Integer.parseInt(str[3]);\n \n while(a > 0 && c > 0){\n c = c - b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a = a - d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n } \n \n }",
"main",
"{\n String[] lines = getStdin();\n String[] str = lines[0].split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n int c = Integer.parseInt(str[2]);\n int d = Integer.parseInt(str[3]);\n \n while(a > 0 && c > 0){\n c = c - b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a = a - d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n } \n \n }",
"String[] lines = getStdin();",
"lines",
"getStdin()",
"getStdin",
"String[] str = lines[0].split(\" \");",
"str",
"lines[0].split(\" \")",
"lines[0].split",
"lines[0]",
"lines",
"0",
"\" \"",
"int a = Integer.parseInt(str[0]);",
"a",
"Integer.parseInt(str[0])",
"Integer.parseInt",
"Integer",
"str[0]",
"str",
"0",
"int b = Integer.parseInt(str[1]);",
"b",
"Integer.parseInt(str[1])",
"Integer.parseInt",
"Integer",
"str[1]",
"str",
"1",
"int c = Integer.parseInt(str[2]);",
"c",
"Integer.parseInt(str[2])",
"Integer.parseInt",
"Integer",
"str[2]",
"str",
"2",
"int d = Integer.parseInt(str[3]);",
"d",
"Integer.parseInt(str[3])",
"Integer.parseInt",
"Integer",
"str[3]",
"str",
"3",
"while(a > 0 && c > 0){\n c = c - b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a = a - d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }",
"a > 0 && c > 0",
"a > 0",
"a",
"0",
"c > 0",
"c",
"0",
"{\n c = c - b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a = a - d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }",
"c = c - b",
"c",
"c - b",
"c",
"b",
"if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }",
"c <= 0",
"c",
"0",
"{\n System.out.println(\"Yes\");\n break;\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"a = a - d",
"a",
"a - d",
"a",
"d",
"if (a <= 0){\n System.out.println(\"No\");\n break;\n }",
"a <= 0",
"a",
"0",
"{\n System.out.println(\"No\");\n break;\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"break;",
"String[] args",
"args",
"private static String[] getStdin() {\n Scanner scanner = new Scanner(System.in);\n ArrayList<String> lines = new ArrayList<>();\n while (scanner.hasNext()) {\n lines.add(scanner.nextLine());\n }\n return lines.toArray(new String[lines.size()]);\n }",
"getStdin",
"{\n Scanner scanner = new Scanner(System.in);\n ArrayList<String> lines = new ArrayList<>();\n while (scanner.hasNext()) {\n lines.add(scanner.nextLine());\n }\n return lines.toArray(new String[lines.size()]);\n }",
"Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"ArrayList<String> lines = new ArrayList<>();",
"lines",
"new ArrayList<>()",
"while (scanner.hasNext()) {\n lines.add(scanner.nextLine());\n }",
"scanner.hasNext()",
"scanner.hasNext",
"scanner",
"{\n lines.add(scanner.nextLine());\n }",
"lines.add(scanner.nextLine())",
"lines.add",
"lines",
"scanner.nextLine()",
"scanner.nextLine",
"scanner",
"return lines.toArray(new String[lines.size()]);",
"lines.toArray(new String[lines.size()])",
"lines.toArray",
"lines",
"new String[lines.size()]",
"lines.size()",
"lines.size",
"lines",
"public class Main {\n public static void main(String[] args) throws Exception {\n String[] lines = getStdin();\n String[] str = lines[0].split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n int c = Integer.parseInt(str[2]);\n int d = Integer.parseInt(str[3]);\n \n while(a > 0 && c > 0){\n c = c - b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a = a - d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n } \n \n }\n private static String[] getStdin() {\n Scanner scanner = new Scanner(System.in);\n ArrayList<String> lines = new ArrayList<>();\n while (scanner.hasNext()) {\n lines.add(scanner.nextLine());\n }\n return lines.toArray(new String[lines.size()]);\n }\n}",
"public class Main {\n public static void main(String[] args) throws Exception {\n String[] lines = getStdin();\n String[] str = lines[0].split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n int c = Integer.parseInt(str[2]);\n int d = Integer.parseInt(str[3]);\n \n while(a > 0 && c > 0){\n c = c - b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a = a - d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n } \n \n }\n private static String[] getStdin() {\n Scanner scanner = new Scanner(System.in);\n ArrayList<String> lines = new ArrayList<>();\n while (scanner.hasNext()) {\n lines.add(scanner.nextLine());\n }\n return lines.toArray(new String[lines.size()]);\n }\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
String[] lines = getStdin();
String[] str = lines[0].split(" ");
int a = Integer.parseInt(str[0]);
int b = Integer.parseInt(str[1]);
int c = Integer.parseInt(str[2]);
int d = Integer.parseInt(str[3]);
while(a > 0 && c > 0){
c = c - b;
if (c <= 0){
System.out.println("Yes");
break;
}
a = a - d;
if (a <= 0){
System.out.println("No");
break;
}
}
}
private static String[] getStdin() {
Scanner scanner = new Scanner(System.in);
ArrayList<String> lines = new ArrayList<>();
while (scanner.hasNext()) {
lines.add(scanner.nextLine());
}
return lines.toArray(new String[lines.size()]);
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
41,
13,
41,
13,
41,
13,
12,
13,
30,
0,
13,
20,
41,
13,
4,
13,
41,
13,
4,
13,
41,
13,
4,
13,
41,
13,
4,
13,
41,
13,
13,
41,
13,
13,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
29,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
29,
23,
13,
12,
13,
30,
29,
4,
18,
13,
4,
13,
12,
13,
30,
29,
4,
18,
13,
4,
13,
12,
13,
30,
29,
4,
18,
13,
4,
13,
12,
13,
30,
42,
2,
2,
13,
17,
40,
4,
18,
13,
0,
13,
20,
29,
4,
18,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
131,
8
],
[
131,
9
],
[
9,
10
],
[
131,
11
],
[
11,
12
],
[
131,
13
],
[
13,
14
],
[
131,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
18,
20
],
[
17,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
17,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
17,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
17,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
17,
37
],
[
37,
38
],
[
37,
39
],
[
17,
40
],
[
40,
41
],
[
40,
42
],
[
17,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
48,
49
],
[
48,
50
],
[
43,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
51,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
55,
59
],
[
59,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
60,
65
],
[
59,
66
],
[
51,
67
],
[
67,
68
],
[
67,
69
],
[
51,
70
],
[
70,
71
],
[
71,
72
],
[
71,
73
],
[
70,
74
],
[
74,
75
],
[
75,
76
],
[
76,
77
],
[
77,
78
],
[
77,
79
],
[
75,
80
],
[
74,
81
],
[
15,
82
],
[
82,
83
],
[
131,
84
],
[
84,
85
],
[
84,
86
],
[
86,
87
],
[
87,
88
],
[
88,
89
],
[
89,
90
],
[
88,
91
],
[
91,
92
],
[
131,
93
],
[
93,
94
],
[
93,
95
],
[
95,
96
],
[
96,
97
],
[
97,
98
],
[
98,
99
],
[
97,
100
],
[
100,
101
],
[
131,
102
],
[
102,
103
],
[
102,
104
],
[
104,
105
],
[
105,
106
],
[
106,
107
],
[
107,
108
],
[
106,
109
],
[
109,
110
],
[
131,
111
],
[
111,
112
],
[
111,
113
],
[
113,
114
],
[
114,
115
],
[
115,
116
],
[
116,
117
],
[
116,
118
],
[
115,
119
],
[
119,
120
],
[
120,
121
],
[
121,
122
],
[
114,
123
],
[
123,
124
],
[
123,
125
],
[
113,
126
],
[
126,
127
],
[
127,
128
],
[
128,
129
],
[
0,
130
],
[
130,
131
],
[
130,
132
]
] |
[
"import java.util.*; \nimport java.io.*;\n\npublic class Main {\n static StringTokenizer st;\n static BufferedReader br; \n static PrintWriter out;\n \n public static void main(String[] args) throws IOException {\n br = new BufferedReader(new InputStreamReader(System.in));\n\n \n int A = nextInt();//health \n int B = nextInt();//strength \n int C = nextInt();\n int D = nextInt();\n \n int fistround = C;\n int nextround = A;\n\n while(fistround>0 || nextround>0){\n fistround -=B;\n if(fistround<=0){\n System.out.println(\"Yes\");\n return;\n }\n \n nextround -=D;\n if(nextround<=0){\n System.out.println(\"No\");\n return;\n }\n }\n \n }\n \n \n public static int nextInt() throws IOException {\n return Integer.parseInt(next());\n }\n public static long nextLong() throws IOException {\n return Long.parseLong(next());\n }\n\n public static double nextDouble() throws IOException {\n return Double.parseDouble(next());\n }\n\n static String next() throws IOException {\n while (st == null || !st.hasMoreTokens())\n st = new StringTokenizer(br.readLine().trim());\n return st.nextToken();\n }\n}",
"import java.util.*;",
"util.*",
"java",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n static StringTokenizer st;\n static BufferedReader br; \n static PrintWriter out;\n \n public static void main(String[] args) throws IOException {\n br = new BufferedReader(new InputStreamReader(System.in));\n\n \n int A = nextInt();//health \n int B = nextInt();//strength \n int C = nextInt();\n int D = nextInt();\n \n int fistround = C;\n int nextround = A;\n\n while(fistround>0 || nextround>0){\n fistround -=B;\n if(fistround<=0){\n System.out.println(\"Yes\");\n return;\n }\n \n nextround -=D;\n if(nextround<=0){\n System.out.println(\"No\");\n return;\n }\n }\n \n }\n \n \n public static int nextInt() throws IOException {\n return Integer.parseInt(next());\n }\n public static long nextLong() throws IOException {\n return Long.parseLong(next());\n }\n\n public static double nextDouble() throws IOException {\n return Double.parseDouble(next());\n }\n\n static String next() throws IOException {\n while (st == null || !st.hasMoreTokens())\n st = new StringTokenizer(br.readLine().trim());\n return st.nextToken();\n }\n}",
"Main",
"static StringTokenizer st;",
"st",
"static BufferedReader br;",
"br",
"static PrintWriter out;",
"out",
"public static void main(String[] args) throws IOException {\n br = new BufferedReader(new InputStreamReader(System.in));\n\n \n int A = nextInt();//health \n int B = nextInt();//strength \n int C = nextInt();\n int D = nextInt();\n \n int fistround = C;\n int nextround = A;\n\n while(fistround>0 || nextround>0){\n fistround -=B;\n if(fistround<=0){\n System.out.println(\"Yes\");\n return;\n }\n \n nextround -=D;\n if(nextround<=0){\n System.out.println(\"No\");\n return;\n }\n }\n \n }",
"main",
"{\n br = new BufferedReader(new InputStreamReader(System.in));\n\n \n int A = nextInt();//health \n int B = nextInt();//strength \n int C = nextInt();\n int D = nextInt();\n \n int fistround = C;\n int nextround = A;\n\n while(fistround>0 || nextround>0){\n fistround -=B;\n if(fistround<=0){\n System.out.println(\"Yes\");\n return;\n }\n \n nextround -=D;\n if(nextround<=0){\n System.out.println(\"No\");\n return;\n }\n }\n \n }",
"br = new BufferedReader(new InputStreamReader(System.in))",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"int A = nextInt();",
"A",
"nextInt()",
"nextInt",
"int B = nextInt();",
"B",
"nextInt()",
"nextInt",
"int C = nextInt();",
"C",
"nextInt()",
"nextInt",
"int D = nextInt();",
"D",
"nextInt()",
"nextInt",
"int fistround = C;",
"fistround",
"C",
"int nextround = A;",
"nextround",
"A",
"while(fistround>0 || nextround>0){\n fistround -=B;\n if(fistround<=0){\n System.out.println(\"Yes\");\n return;\n }\n \n nextround -=D;\n if(nextround<=0){\n System.out.println(\"No\");\n return;\n }\n }",
"fistround>0 || nextround>0",
"fistround>0",
"fistround",
"0",
"nextround>0",
"nextround",
"0",
"{\n fistround -=B;\n if(fistround<=0){\n System.out.println(\"Yes\");\n return;\n }\n \n nextround -=D;\n if(nextround<=0){\n System.out.println(\"No\");\n return;\n }\n }",
"fistround -=B",
"fistround",
"B",
"if(fistround<=0){\n System.out.println(\"Yes\");\n return;\n }",
"fistround<=0",
"fistround",
"0",
"{\n System.out.println(\"Yes\");\n return;\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"return;",
"nextround -=D",
"nextround",
"D",
"if(nextround<=0){\n System.out.println(\"No\");\n return;\n }",
"nextround<=0",
"nextround",
"0",
"{\n System.out.println(\"No\");\n return;\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"return;",
"String[] args",
"args",
"public static int nextInt() throws IOException {\n return Integer.parseInt(next());\n }",
"nextInt",
"{\n return Integer.parseInt(next());\n }",
"return Integer.parseInt(next());",
"Integer.parseInt(next())",
"Integer.parseInt",
"Integer",
"next()",
"next",
"public static long nextLong() throws IOException {\n return Long.parseLong(next());\n }",
"nextLong",
"{\n return Long.parseLong(next());\n }",
"return Long.parseLong(next());",
"Long.parseLong(next())",
"Long.parseLong",
"Long",
"next()",
"next",
"public static double nextDouble() throws IOException {\n return Double.parseDouble(next());\n }",
"nextDouble",
"{\n return Double.parseDouble(next());\n }",
"return Double.parseDouble(next());",
"Double.parseDouble(next())",
"Double.parseDouble",
"Double",
"next()",
"next",
"static String next() throws IOException {\n while (st == null || !st.hasMoreTokens())\n st = new StringTokenizer(br.readLine().trim());\n return st.nextToken();\n }",
"next",
"{\n while (st == null || !st.hasMoreTokens())\n st = new StringTokenizer(br.readLine().trim());\n return st.nextToken();\n }",
"while (st == null || !st.hasMoreTokens())\n st = new StringTokenizer(br.readLine().trim());",
"st == null || !st.hasMoreTokens()",
"st == null",
"st",
"null",
"!st.hasMoreTokens()",
"st.hasMoreTokens()",
"st.hasMoreTokens",
"st",
"st = new StringTokenizer(br.readLine().trim())",
"st",
"new StringTokenizer(br.readLine().trim())",
"return st.nextToken();",
"st.nextToken()",
"st.nextToken",
"st",
"public class Main {\n static StringTokenizer st;\n static BufferedReader br; \n static PrintWriter out;\n \n public static void main(String[] args) throws IOException {\n br = new BufferedReader(new InputStreamReader(System.in));\n\n \n int A = nextInt();//health \n int B = nextInt();//strength \n int C = nextInt();\n int D = nextInt();\n \n int fistround = C;\n int nextround = A;\n\n while(fistround>0 || nextround>0){\n fistround -=B;\n if(fistround<=0){\n System.out.println(\"Yes\");\n return;\n }\n \n nextround -=D;\n if(nextround<=0){\n System.out.println(\"No\");\n return;\n }\n }\n \n }\n \n \n public static int nextInt() throws IOException {\n return Integer.parseInt(next());\n }\n public static long nextLong() throws IOException {\n return Long.parseLong(next());\n }\n\n public static double nextDouble() throws IOException {\n return Double.parseDouble(next());\n }\n\n static String next() throws IOException {\n while (st == null || !st.hasMoreTokens())\n st = new StringTokenizer(br.readLine().trim());\n return st.nextToken();\n }\n}",
"public class Main {\n static StringTokenizer st;\n static BufferedReader br; \n static PrintWriter out;\n \n public static void main(String[] args) throws IOException {\n br = new BufferedReader(new InputStreamReader(System.in));\n\n \n int A = nextInt();//health \n int B = nextInt();//strength \n int C = nextInt();\n int D = nextInt();\n \n int fistround = C;\n int nextround = A;\n\n while(fistround>0 || nextround>0){\n fistround -=B;\n if(fistround<=0){\n System.out.println(\"Yes\");\n return;\n }\n \n nextround -=D;\n if(nextround<=0){\n System.out.println(\"No\");\n return;\n }\n }\n \n }\n \n \n public static int nextInt() throws IOException {\n return Integer.parseInt(next());\n }\n public static long nextLong() throws IOException {\n return Long.parseLong(next());\n }\n\n public static double nextDouble() throws IOException {\n return Double.parseDouble(next());\n }\n\n static String next() throws IOException {\n while (st == null || !st.hasMoreTokens())\n st = new StringTokenizer(br.readLine().trim());\n return st.nextToken();\n }\n}",
"Main"
] |
import java.util.*;
import java.io.*;
public class Main {
static StringTokenizer st;
static BufferedReader br;
static PrintWriter out;
public static void main(String[] args) throws IOException {
br = new BufferedReader(new InputStreamReader(System.in));
int A = nextInt();//health
int B = nextInt();//strength
int C = nextInt();
int D = nextInt();
int fistround = C;
int nextround = A;
while(fistround>0 || nextround>0){
fistround -=B;
if(fistround<=0){
System.out.println("Yes");
return;
}
nextround -=D;
if(nextround<=0){
System.out.println("No");
return;
}
}
}
public static int nextInt() throws IOException {
return Integer.parseInt(next());
}
public static long nextLong() throws IOException {
return Long.parseLong(next());
}
public static double nextDouble() throws IOException {
return Double.parseDouble(next());
}
static String next() throws IOException {
while (st == null || !st.hasMoreTokens())
st = new StringTokenizer(br.readLine().trim());
return st.nextToken();
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
41,
13,
2,
17,
17,
12,
13,
30,
41,
13,
20,
41,
13,
39,
4,
18,
13,
4,
18,
13,
41,
13,
39,
4,
18,
13,
4,
18,
13,
41,
13,
2,
2,
18,
13,
17,
18,
13,
17,
8,
2,
2,
18,
13,
17,
18,
13,
17,
17,
17,
17,
41,
13,
2,
2,
18,
13,
17,
18,
13,
17,
8,
2,
2,
18,
13,
17,
18,
13,
17,
17,
17,
17,
14,
2,
13,
13,
4,
18,
18,
13,
13,
17,
4,
18,
18,
13,
13,
17,
23,
13,
6,
13,
41,
13,
41,
13,
12,
13,
30,
0,
13,
20,
23,
13,
12,
13,
30,
42,
2,
2,
13,
17,
40,
4,
18,
13,
0,
13,
20,
29,
4,
18,
13,
12,
13,
30,
29,
4,
18,
13,
4,
13,
12,
13,
30,
29,
4,
18,
13,
4,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
152,
8
],
[
152,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
11,
13
],
[
152,
14
],
[
14,
15
],
[
14,
16
],
[
16,
17
],
[
17,
18
],
[
17,
19
],
[
16,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
24,
25
],
[
22,
26
],
[
26,
27
],
[
27,
28
],
[
16,
29
],
[
29,
30
],
[
29,
31
],
[
31,
32
],
[
32,
33
],
[
33,
34
],
[
31,
35
],
[
35,
36
],
[
36,
37
],
[
16,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
41,
45
],
[
45,
46
],
[
45,
47
],
[
40,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
54,
55
],
[
54,
56
],
[
49,
57
],
[
48,
58
],
[
48,
59
],
[
16,
60
],
[
60,
61
],
[
60,
62
],
[
62,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
63,
67
],
[
67,
68
],
[
67,
69
],
[
62,
70
],
[
70,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
72,
76
],
[
76,
77
],
[
76,
78
],
[
71,
79
],
[
70,
80
],
[
70,
81
],
[
16,
82
],
[
82,
83
],
[
83,
84
],
[
83,
85
],
[
82,
86
],
[
86,
87
],
[
87,
88
],
[
88,
89
],
[
88,
90
],
[
86,
91
],
[
82,
92
],
[
92,
93
],
[
93,
94
],
[
94,
95
],
[
94,
96
],
[
92,
97
],
[
14,
98
],
[
98,
99
],
[
152,
100
],
[
100,
101
],
[
100,
102
],
[
102,
103
],
[
100,
104
],
[
104,
105
],
[
100,
106
],
[
106,
107
],
[
106,
108
],
[
108,
109
],
[
109,
110
],
[
109,
111
],
[
106,
112
],
[
112,
113
],
[
100,
114
],
[
114,
115
],
[
114,
116
],
[
116,
117
],
[
117,
118
],
[
118,
119
],
[
119,
120
],
[
119,
121
],
[
118,
122
],
[
122,
123
],
[
123,
124
],
[
124,
125
],
[
117,
126
],
[
126,
127
],
[
126,
128
],
[
116,
129
],
[
129,
130
],
[
130,
131
],
[
131,
132
],
[
100,
133
],
[
133,
134
],
[
133,
135
],
[
135,
136
],
[
136,
137
],
[
137,
138
],
[
138,
139
],
[
137,
140
],
[
140,
141
],
[
100,
142
],
[
142,
143
],
[
142,
144
],
[
144,
145
],
[
145,
146
],
[
146,
147
],
[
147,
148
],
[
146,
149
],
[
149,
150
],
[
0,
151
],
[
151,
152
],
[
151,
153
]
] |
[
"import java.io.*;\nimport java.util.*;\n\npublic class Main {\n\n\tstatic long m = (long) (1e9 + 7);\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tScanner scn = new Scanner(System.in);\n\t\tint a[] = { scn.nextInt(), scn.nextInt() };\n\t\tint a2[] = { scn.nextInt(), scn.nextInt() };\n\n\t\tint c1 = a2[0] / a[1] + (a2[0] % a[1] != 0 ? 1 : 0);\n\t\tint c2 = a[0] / a2[1] + (a[0] % a2[1] != 0 ? 1 : 0);\n\n\t\tif (c1 <= c2)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n\n\tstatic class Scanner {\n\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream s) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(s));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}\n}",
"import java.io.*;",
"io.*",
"java",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\n\tstatic long m = (long) (1e9 + 7);\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tScanner scn = new Scanner(System.in);\n\t\tint a[] = { scn.nextInt(), scn.nextInt() };\n\t\tint a2[] = { scn.nextInt(), scn.nextInt() };\n\n\t\tint c1 = a2[0] / a[1] + (a2[0] % a[1] != 0 ? 1 : 0);\n\t\tint c2 = a[0] / a2[1] + (a[0] % a2[1] != 0 ? 1 : 0);\n\n\t\tif (c1 <= c2)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n\n\tstatic class Scanner {\n\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream s) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(s));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}\n}",
"Main",
"static long m = (long) (1e9 + 7);",
"m",
"(long) (1e9 + 7)",
"1e9",
"7",
"public static void main(String[] args) throws IOException {\n\t\tScanner scn = new Scanner(System.in);\n\t\tint a[] = { scn.nextInt(), scn.nextInt() };\n\t\tint a2[] = { scn.nextInt(), scn.nextInt() };\n\n\t\tint c1 = a2[0] / a[1] + (a2[0] % a[1] != 0 ? 1 : 0);\n\t\tint c2 = a[0] / a2[1] + (a[0] % a2[1] != 0 ? 1 : 0);\n\n\t\tif (c1 <= c2)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}",
"main",
"{\n\t\tScanner scn = new Scanner(System.in);\n\t\tint a[] = { scn.nextInt(), scn.nextInt() };\n\t\tint a2[] = { scn.nextInt(), scn.nextInt() };\n\n\t\tint c1 = a2[0] / a[1] + (a2[0] % a[1] != 0 ? 1 : 0);\n\t\tint c2 = a[0] / a2[1] + (a[0] % a2[1] != 0 ? 1 : 0);\n\n\t\tif (c1 <= c2)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}",
"Scanner scn = new Scanner(System.in);",
"scn",
"new Scanner(System.in)",
"int a[] = { scn.nextInt(), scn.nextInt() };",
"a",
"{ scn.nextInt(), scn.nextInt() }",
"scn.nextInt()",
"scn.nextInt",
"scn",
"scn.nextInt()",
"scn.nextInt",
"scn",
"int a2[] = { scn.nextInt(), scn.nextInt() };",
"a2",
"{ scn.nextInt(), scn.nextInt() }",
"scn.nextInt()",
"scn.nextInt",
"scn",
"scn.nextInt()",
"scn.nextInt",
"scn",
"int c1 = a2[0] / a[1] + (a2[0] % a[1] != 0 ? 1 : 0);",
"c1",
"a2[0] / a[1] + (a2[0] % a[1] != 0 ? 1 : 0)",
"a2[0] / a[1]",
"a2[0]",
"a2",
"0",
"a[1]",
"a",
"1",
"(a2[0] % a[1] != 0 ? 1 : 0)",
"a2[0] % a[1] != 0",
"a2[0] % a[1]",
"a2[0]",
"a2",
"0",
"a[1]",
"a",
"1",
"0",
"1",
"0",
"int c2 = a[0] / a2[1] + (a[0] % a2[1] != 0 ? 1 : 0);",
"c2",
"a[0] / a2[1] + (a[0] % a2[1] != 0 ? 1 : 0)",
"a[0] / a2[1]",
"a[0]",
"a",
"0",
"a2[1]",
"a2",
"1",
"(a[0] % a2[1] != 0 ? 1 : 0)",
"a[0] % a2[1] != 0",
"a[0] % a2[1]",
"a[0]",
"a",
"0",
"a2[1]",
"a2",
"1",
"0",
"1",
"0",
"if (c1 <= c2)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");",
"c1 <= c2",
"c1",
"c2",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"static class Scanner {\n\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream s) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(s));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}",
"Scanner",
"StringTokenizer st;",
"st",
"BufferedReader br;",
"br",
"public Scanner(InputStream s) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(s));\n\t\t}",
"Scanner",
"{\n\t\t\tbr = new BufferedReader(new InputStreamReader(s));\n\t\t}",
"br = new BufferedReader(new InputStreamReader(s))",
"br",
"new BufferedReader(new InputStreamReader(s))",
"InputStream s",
"s",
"public String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}",
"next",
"{\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}",
"while (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());",
"st == null || !st.hasMoreTokens()",
"st == null",
"st",
"null",
"!st.hasMoreTokens()",
"st.hasMoreTokens()",
"st.hasMoreTokens",
"st",
"st = new StringTokenizer(br.readLine())",
"st",
"new StringTokenizer(br.readLine())",
"return st.nextToken();",
"st.nextToken()",
"st.nextToken",
"st",
"public int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}",
"nextInt",
"{\n\t\t\treturn Integer.parseInt(next());\n\t\t}",
"return Integer.parseInt(next());",
"Integer.parseInt(next())",
"Integer.parseInt",
"Integer",
"next()",
"next",
"public long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}",
"nextLong",
"{\n\t\t\treturn Long.parseLong(next());\n\t\t}",
"return Long.parseLong(next());",
"Long.parseLong(next())",
"Long.parseLong",
"Long",
"next()",
"next",
"public class Main {\n\n\tstatic long m = (long) (1e9 + 7);\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tScanner scn = new Scanner(System.in);\n\t\tint a[] = { scn.nextInt(), scn.nextInt() };\n\t\tint a2[] = { scn.nextInt(), scn.nextInt() };\n\n\t\tint c1 = a2[0] / a[1] + (a2[0] % a[1] != 0 ? 1 : 0);\n\t\tint c2 = a[0] / a2[1] + (a[0] % a2[1] != 0 ? 1 : 0);\n\n\t\tif (c1 <= c2)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n\n\tstatic class Scanner {\n\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream s) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(s));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}\n}",
"public class Main {\n\n\tstatic long m = (long) (1e9 + 7);\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tScanner scn = new Scanner(System.in);\n\t\tint a[] = { scn.nextInt(), scn.nextInt() };\n\t\tint a2[] = { scn.nextInt(), scn.nextInt() };\n\n\t\tint c1 = a2[0] / a[1] + (a2[0] % a[1] != 0 ? 1 : 0);\n\t\tint c2 = a[0] / a2[1] + (a[0] % a2[1] != 0 ? 1 : 0);\n\n\t\tif (c1 <= c2)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n\n\tstatic class Scanner {\n\n\t\tStringTokenizer st;\n\t\tBufferedReader br;\n\n\t\tpublic Scanner(InputStream s) {\n\t\t\tbr = new BufferedReader(new InputStreamReader(s));\n\t\t}\n\n\t\tpublic String next() throws IOException {\n\t\t\twhile (st == null || !st.hasMoreTokens())\n\t\t\t\tst = new StringTokenizer(br.readLine());\n\t\t\treturn st.nextToken();\n\t\t}\n\n\t\tpublic int nextInt() throws IOException {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic long nextLong() throws IOException {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\t}\n}",
"Main"
] |
import java.io.*;
import java.util.*;
public class Main {
static long m = (long) (1e9 + 7);
public static void main(String[] args) throws IOException {
Scanner scn = new Scanner(System.in);
int a[] = { scn.nextInt(), scn.nextInt() };
int a2[] = { scn.nextInt(), scn.nextInt() };
int c1 = a2[0] / a[1] + (a2[0] % a[1] != 0 ? 1 : 0);
int c2 = a[0] / a2[1] + (a[0] % a2[1] != 0 ? 1 : 0);
if (c1 <= c2)
System.out.println("Yes");
else
System.out.println("No");
}
static class Scanner {
StringTokenizer st;
BufferedReader br;
public Scanner(InputStream s) {
br = new BufferedReader(new InputStreamReader(s));
}
public String next() throws IOException {
while (st == null || !st.hasMoreTokens())
st = new StringTokenizer(br.readLine());
return st.nextToken();
}
public int nextInt() throws IOException {
return Integer.parseInt(next());
}
public long nextLong() throws IOException {
return Long.parseLong(next());
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
13,
13,
13,
13,
13,
23,
13,
12,
13,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
30,
4,
13,
13,
13,
13,
13,
23,
13,
23,
13,
23,
13,
23,
13,
12,
13,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
30,
4,
13,
13,
13,
13,
13,
23,
13,
23,
13,
23,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
105,
5
],
[
105,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
32,
35
],
[
32,
36
],
[
32,
37
],
[
6,
38
],
[
38,
39
],
[
105,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
42,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
46,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
53,
54
],
[
53,
55
],
[
51,
56
],
[
46,
57
],
[
57,
58
],
[
58,
59
],
[
58,
60
],
[
58,
61
],
[
58,
62
],
[
58,
63
],
[
40,
64
],
[
64,
65
],
[
40,
66
],
[
66,
67
],
[
40,
68
],
[
68,
69
],
[
40,
70
],
[
70,
71
],
[
105,
72
],
[
72,
73
],
[
72,
74
],
[
74,
75
],
[
75,
76
],
[
75,
77
],
[
74,
78
],
[
78,
79
],
[
79,
80
],
[
79,
81
],
[
78,
82
],
[
82,
83
],
[
83,
84
],
[
84,
85
],
[
85,
86
],
[
85,
87
],
[
83,
88
],
[
78,
89
],
[
89,
90
],
[
90,
91
],
[
90,
92
],
[
90,
93
],
[
90,
94
],
[
90,
95
],
[
72,
96
],
[
96,
97
],
[
72,
98
],
[
98,
99
],
[
72,
100
],
[
100,
101
],
[
72,
102
],
[
102,
103
],
[
0,
104
],
[
104,
105
],
[
104,
106
]
] |
[
"import java.util.*;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner input = new Scanner(System.in);\n\t\tint A = input.nextInt();\n\t\tint B = input.nextInt();\n\t\tint C = input.nextInt();\n\t\tint D = input.nextInt();\n\t\t\n\t\ttakahasi(A,B,C,D);\n\t\t\n\t}\n\tpublic static void takahasi(int A,int B,int C,int D) {\n\t\tC-=B;\n\t\tif(C<=0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\taoki(A,B,C,D);\n\t\t}\n\t}\n\tpublic static void aoki(int A,int B,int C,int D) {\n\t\tA-=D;\n\t\tif(A<=0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse {\n\t\t\ttakahasi(A,B,C,D);\n\t\t}\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner input = new Scanner(System.in);\n\t\tint A = input.nextInt();\n\t\tint B = input.nextInt();\n\t\tint C = input.nextInt();\n\t\tint D = input.nextInt();\n\t\t\n\t\ttakahasi(A,B,C,D);\n\t\t\n\t}\n\tpublic static void takahasi(int A,int B,int C,int D) {\n\t\tC-=B;\n\t\tif(C<=0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\taoki(A,B,C,D);\n\t\t}\n\t}\n\tpublic static void aoki(int A,int B,int C,int D) {\n\t\tA-=D;\n\t\tif(A<=0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse {\n\t\t\ttakahasi(A,B,C,D);\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner input = new Scanner(System.in);\n\t\tint A = input.nextInt();\n\t\tint B = input.nextInt();\n\t\tint C = input.nextInt();\n\t\tint D = input.nextInt();\n\t\t\n\t\ttakahasi(A,B,C,D);\n\t\t\n\t}",
"main",
"{\n\t\tScanner input = new Scanner(System.in);\n\t\tint A = input.nextInt();\n\t\tint B = input.nextInt();\n\t\tint C = input.nextInt();\n\t\tint D = input.nextInt();\n\t\t\n\t\ttakahasi(A,B,C,D);\n\t\t\n\t}",
"Scanner input = new Scanner(System.in);",
"input",
"new Scanner(System.in)",
"int A = input.nextInt();",
"A",
"input.nextInt()",
"input.nextInt",
"input",
"int B = input.nextInt();",
"B",
"input.nextInt()",
"input.nextInt",
"input",
"int C = input.nextInt();",
"C",
"input.nextInt()",
"input.nextInt",
"input",
"int D = input.nextInt();",
"D",
"input.nextInt()",
"input.nextInt",
"input",
"takahasi(A,B,C,D)",
"takahasi",
"A",
"B",
"C",
"D",
"String[] args",
"args",
"public static void takahasi(int A,int B,int C,int D) {\n\t\tC-=B;\n\t\tif(C<=0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\taoki(A,B,C,D);\n\t\t}\n\t}",
"takahasi",
"{\n\t\tC-=B;\n\t\tif(C<=0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\taoki(A,B,C,D);\n\t\t}\n\t}",
"C-=B",
"C",
"B",
"if(C<=0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\taoki(A,B,C,D);\n\t\t}",
"C<=0",
"C",
"0",
"{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n\t\t\taoki(A,B,C,D);\n\t\t}",
"aoki(A,B,C,D)",
"aoki",
"A",
"B",
"C",
"D",
"int A",
"A",
"int B",
"B",
"int C",
"C",
"int D",
"D",
"public static void aoki(int A,int B,int C,int D) {\n\t\tA-=D;\n\t\tif(A<=0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse {\n\t\t\ttakahasi(A,B,C,D);\n\t\t}\n\t}",
"aoki",
"{\n\t\tA-=D;\n\t\tif(A<=0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse {\n\t\t\ttakahasi(A,B,C,D);\n\t\t}\n\t}",
"A-=D",
"A",
"D",
"if(A<=0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse {\n\t\t\ttakahasi(A,B,C,D);\n\t\t}",
"A<=0",
"A",
"0",
"{\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"{\n\t\t\ttakahasi(A,B,C,D);\n\t\t}",
"takahasi(A,B,C,D)",
"takahasi",
"A",
"B",
"C",
"D",
"int A",
"A",
"int B",
"B",
"int C",
"C",
"int D",
"D",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner input = new Scanner(System.in);\n\t\tint A = input.nextInt();\n\t\tint B = input.nextInt();\n\t\tint C = input.nextInt();\n\t\tint D = input.nextInt();\n\t\t\n\t\ttakahasi(A,B,C,D);\n\t\t\n\t}\n\tpublic static void takahasi(int A,int B,int C,int D) {\n\t\tC-=B;\n\t\tif(C<=0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\taoki(A,B,C,D);\n\t\t}\n\t}\n\tpublic static void aoki(int A,int B,int C,int D) {\n\t\tA-=D;\n\t\tif(A<=0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse {\n\t\t\ttakahasi(A,B,C,D);\n\t\t}\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner input = new Scanner(System.in);\n\t\tint A = input.nextInt();\n\t\tint B = input.nextInt();\n\t\tint C = input.nextInt();\n\t\tint D = input.nextInt();\n\t\t\n\t\ttakahasi(A,B,C,D);\n\t\t\n\t}\n\tpublic static void takahasi(int A,int B,int C,int D) {\n\t\tC-=B;\n\t\tif(C<=0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\taoki(A,B,C,D);\n\t\t}\n\t}\n\tpublic static void aoki(int A,int B,int C,int D) {\n\t\tA-=D;\n\t\tif(A<=0) {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse {\n\t\t\ttakahasi(A,B,C,D);\n\t\t}\n\t}\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int A = input.nextInt();
int B = input.nextInt();
int C = input.nextInt();
int D = input.nextInt();
takahasi(A,B,C,D);
}
public static void takahasi(int A,int B,int C,int D) {
C-=B;
if(C<=0) {
System.out.println("Yes");
}
else {
aoki(A,B,C,D);
}
}
public static void aoki(int A,int B,int C,int D) {
A-=D;
if(A<=0) {
System.out.println("No");
}
else {
takahasi(A,B,C,D);
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
4,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
2,
13,
13,
14,
2,
2,
13,
13,
17,
30,
0,
13,
2,
13,
17,
41,
13,
2,
13,
13,
14,
2,
2,
13,
13,
17,
30,
0,
13,
2,
13,
17,
41,
13,
2,
13,
13,
14,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
110,
5
],
[
110,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
16,
17
],
[
17,
18
],
[
14,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
23,
24
],
[
22,
25
],
[
25,
26
],
[
25,
27
],
[
8,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
30,
33
],
[
33,
34
],
[
33,
35
],
[
8,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
39,
40
],
[
38,
41
],
[
41,
42
],
[
41,
43
],
[
8,
44
],
[
44,
45
],
[
44,
46
],
[
46,
47
],
[
47,
48
],
[
46,
49
],
[
49,
50
],
[
49,
51
],
[
8,
52
],
[
52,
53
],
[
52,
54
],
[
54,
55
],
[
54,
56
],
[
8,
57
],
[
57,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
58,
62
],
[
57,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
66,
67
],
[
66,
68
],
[
8,
69
],
[
69,
70
],
[
69,
71
],
[
71,
72
],
[
71,
73
],
[
8,
74
],
[
74,
75
],
[
75,
76
],
[
76,
77
],
[
76,
78
],
[
75,
79
],
[
74,
80
],
[
80,
81
],
[
81,
82
],
[
81,
83
],
[
83,
84
],
[
83,
85
],
[
8,
86
],
[
86,
87
],
[
86,
88
],
[
88,
89
],
[
88,
90
],
[
8,
91
],
[
91,
92
],
[
91,
93
],
[
93,
94
],
[
94,
95
],
[
95,
96
],
[
96,
97
],
[
96,
98
],
[
94,
99
],
[
91,
100
],
[
100,
101
],
[
101,
102
],
[
102,
103
],
[
103,
104
],
[
103,
105
],
[
101,
106
],
[
6,
107
],
[
107,
108
],
[
0,
109
],
[
109,
110
],
[
109,
111
]
] |
[
"//package beg_164;\nimport java.util.*;\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tScanner s = new Scanner(System.in);\n\t\tString[] x = s.nextLine().split(\" \");\n\t\t\n\t\tint a = Integer.parseInt(x[0]);\n\t\tint b = Integer.parseInt(x[1]);\n\t\tint c = Integer.parseInt(x[2]);\n\t\tint d = Integer.parseInt(x[3]);\n\t\t\n\t\tint diff1 = (int) a/d;\n\t\tif (a%d!=0) {\n\t\t\tdiff1=diff1+1;\n\t\t}\n\t\tint diff2 = (int) c/b;\n\t\tif (c%b!=0) {\n\t\t\tdiff2=diff2+1;\n\t\t}\n\t\t\n\t\tboolean g = diff1>=diff2;\n\t\tif (g) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tScanner s = new Scanner(System.in);\n\t\tString[] x = s.nextLine().split(\" \");\n\t\t\n\t\tint a = Integer.parseInt(x[0]);\n\t\tint b = Integer.parseInt(x[1]);\n\t\tint c = Integer.parseInt(x[2]);\n\t\tint d = Integer.parseInt(x[3]);\n\t\t\n\t\tint diff1 = (int) a/d;\n\t\tif (a%d!=0) {\n\t\t\tdiff1=diff1+1;\n\t\t}\n\t\tint diff2 = (int) c/b;\n\t\tif (c%b!=0) {\n\t\t\tdiff2=diff2+1;\n\t\t}\n\t\t\n\t\tboolean g = diff1>=diff2;\n\t\tif (g) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tScanner s = new Scanner(System.in);\n\t\tString[] x = s.nextLine().split(\" \");\n\t\t\n\t\tint a = Integer.parseInt(x[0]);\n\t\tint b = Integer.parseInt(x[1]);\n\t\tint c = Integer.parseInt(x[2]);\n\t\tint d = Integer.parseInt(x[3]);\n\t\t\n\t\tint diff1 = (int) a/d;\n\t\tif (a%d!=0) {\n\t\t\tdiff1=diff1+1;\n\t\t}\n\t\tint diff2 = (int) c/b;\n\t\tif (c%b!=0) {\n\t\t\tdiff2=diff2+1;\n\t\t}\n\t\t\n\t\tboolean g = diff1>=diff2;\n\t\tif (g) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}",
"main",
"{\n\t\t// TODO Auto-generated method stub\n\t\tScanner s = new Scanner(System.in);\n\t\tString[] x = s.nextLine().split(\" \");\n\t\t\n\t\tint a = Integer.parseInt(x[0]);\n\t\tint b = Integer.parseInt(x[1]);\n\t\tint c = Integer.parseInt(x[2]);\n\t\tint d = Integer.parseInt(x[3]);\n\t\t\n\t\tint diff1 = (int) a/d;\n\t\tif (a%d!=0) {\n\t\t\tdiff1=diff1+1;\n\t\t}\n\t\tint diff2 = (int) c/b;\n\t\tif (c%b!=0) {\n\t\t\tdiff2=diff2+1;\n\t\t}\n\t\t\n\t\tboolean g = diff1>=diff2;\n\t\tif (g) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}",
"Scanner s = new Scanner(System.in);",
"s",
"new Scanner(System.in)",
"String[] x = s.nextLine().split(\" \");",
"x",
"s.nextLine().split(\" \")",
"s.nextLine().split",
"s.nextLine()",
"s.nextLine",
"s",
"\" \"",
"int a = Integer.parseInt(x[0]);",
"a",
"Integer.parseInt(x[0])",
"Integer.parseInt",
"Integer",
"x[0]",
"x",
"0",
"int b = Integer.parseInt(x[1]);",
"b",
"Integer.parseInt(x[1])",
"Integer.parseInt",
"Integer",
"x[1]",
"x",
"1",
"int c = Integer.parseInt(x[2]);",
"c",
"Integer.parseInt(x[2])",
"Integer.parseInt",
"Integer",
"x[2]",
"x",
"2",
"int d = Integer.parseInt(x[3]);",
"d",
"Integer.parseInt(x[3])",
"Integer.parseInt",
"Integer",
"x[3]",
"x",
"3",
"int diff1 = (int) a/d;",
"diff1",
"(int) a/d",
"(int) a",
"d",
"if (a%d!=0) {\n\t\t\tdiff1=diff1+1;\n\t\t}",
"a%d!=0",
"a%d",
"a",
"d",
"0",
"{\n\t\t\tdiff1=diff1+1;\n\t\t}",
"diff1=diff1+1",
"diff1",
"diff1+1",
"diff1",
"1",
"int diff2 = (int) c/b;",
"diff2",
"(int) c/b",
"(int) c",
"b",
"if (c%b!=0) {\n\t\t\tdiff2=diff2+1;\n\t\t}",
"c%b!=0",
"c%b",
"c",
"b",
"0",
"{\n\t\t\tdiff2=diff2+1;\n\t\t}",
"diff2=diff2+1",
"diff2",
"diff2+1",
"diff2",
"1",
"boolean g = diff1>=diff2;",
"g",
"diff1>=diff2",
"diff1",
"diff2",
"if (g) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"g",
"{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tScanner s = new Scanner(System.in);\n\t\tString[] x = s.nextLine().split(\" \");\n\t\t\n\t\tint a = Integer.parseInt(x[0]);\n\t\tint b = Integer.parseInt(x[1]);\n\t\tint c = Integer.parseInt(x[2]);\n\t\tint d = Integer.parseInt(x[3]);\n\t\t\n\t\tint diff1 = (int) a/d;\n\t\tif (a%d!=0) {\n\t\t\tdiff1=diff1+1;\n\t\t}\n\t\tint diff2 = (int) c/b;\n\t\tif (c%b!=0) {\n\t\t\tdiff2=diff2+1;\n\t\t}\n\t\t\n\t\tboolean g = diff1>=diff2;\n\t\tif (g) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n\n}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tScanner s = new Scanner(System.in);\n\t\tString[] x = s.nextLine().split(\" \");\n\t\t\n\t\tint a = Integer.parseInt(x[0]);\n\t\tint b = Integer.parseInt(x[1]);\n\t\tint c = Integer.parseInt(x[2]);\n\t\tint d = Integer.parseInt(x[3]);\n\t\t\n\t\tint diff1 = (int) a/d;\n\t\tif (a%d!=0) {\n\t\t\tdiff1=diff1+1;\n\t\t}\n\t\tint diff2 = (int) c/b;\n\t\tif (c%b!=0) {\n\t\t\tdiff2=diff2+1;\n\t\t}\n\t\t\n\t\tboolean g = diff1>=diff2;\n\t\tif (g) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t\telse {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n\n}",
"Main"
] |
//package beg_164;
import java.util.*;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner s = new Scanner(System.in);
String[] x = s.nextLine().split(" ");
int a = Integer.parseInt(x[0]);
int b = Integer.parseInt(x[1]);
int c = Integer.parseInt(x[2]);
int d = Integer.parseInt(x[3]);
int diff1 = (int) a/d;
if (a%d!=0) {
diff1=diff1+1;
}
int diff2 = (int) c/b;
if (c%b!=0) {
diff2=diff2+1;
}
boolean g = diff1>=diff2;
if (g) {
System.out.println("Yes");
}
else {
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
8,
2,
4,
18,
13,
2,
13,
13,
4,
18,
13,
2,
13,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
32,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
39,
42
],
[
42,
43
],
[
42,
44
],
[
38,
45
],
[
45,
46
],
[
46,
47
],
[
45,
48
],
[
48,
49
],
[
48,
50
],
[
37,
51
],
[
37,
52
],
[
6,
53
],
[
53,
54
]
] |
[
"import java.util.*;\n\nclass Main{\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n double a = sc.nextDouble();\n double b = sc.nextDouble();\n double c = sc.nextDouble();\n double d = sc.nextDouble();\n\n System.out.println(Math.ceil(a/d) >= Math.ceil(c/b)? \"Yes\" : \"No\");\n }\n}",
"import java.util.*;",
"util.*",
"java",
"class Main{\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n double a = sc.nextDouble();\n double b = sc.nextDouble();\n double c = sc.nextDouble();\n double d = sc.nextDouble();\n\n System.out.println(Math.ceil(a/d) >= Math.ceil(c/b)? \"Yes\" : \"No\");\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n double a = sc.nextDouble();\n double b = sc.nextDouble();\n double c = sc.nextDouble();\n double d = sc.nextDouble();\n\n System.out.println(Math.ceil(a/d) >= Math.ceil(c/b)? \"Yes\" : \"No\");\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n double a = sc.nextDouble();\n double b = sc.nextDouble();\n double c = sc.nextDouble();\n double d = sc.nextDouble();\n\n System.out.println(Math.ceil(a/d) >= Math.ceil(c/b)? \"Yes\" : \"No\");\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"double a = sc.nextDouble();",
"a",
"sc.nextDouble()",
"sc.nextDouble",
"sc",
"double b = sc.nextDouble();",
"b",
"sc.nextDouble()",
"sc.nextDouble",
"sc",
"double c = sc.nextDouble();",
"c",
"sc.nextDouble()",
"sc.nextDouble",
"sc",
"double d = sc.nextDouble();",
"d",
"sc.nextDouble()",
"sc.nextDouble",
"sc",
"System.out.println(Math.ceil(a/d) >= Math.ceil(c/b)? \"Yes\" : \"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"Math.ceil(a/d) >= Math.ceil(c/b)? \"Yes\" : \"No\"",
"Math.ceil(a/d) >= Math.ceil(c/b)",
"Math.ceil(a/d)",
"Math.ceil",
"Math",
"a/d",
"a",
"d",
"Math.ceil(c/b)",
"Math.ceil",
"Math",
"c/b",
"c",
"b",
"\"Yes\"",
"\"No\"",
"String[] args",
"args"
] |
import java.util.*;
class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
double a = sc.nextDouble();
double b = sc.nextDouble();
double c = sc.nextDouble();
double d = sc.nextDouble();
System.out.println(Math.ceil(a/d) >= Math.ceil(c/b)? "Yes" : "No");
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
2,
13,
13,
41,
13,
4,
18,
13,
2,
13,
13,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
69,
5
],
[
69,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
34,
37
],
[
37,
38
],
[
37,
39
],
[
8,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
43,
44
],
[
42,
45
],
[
45,
46
],
[
45,
47
],
[
8,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
48,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
53,
58
],
[
48,
59
],
[
59,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
60,
65
],
[
6,
66
],
[
66,
67
],
[
0,
68
],
[
68,
69
],
[
68,
70
]
] |
[
"import java.util.Scanner;\npublic class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tdouble a = sc.nextInt();\n\t\tdouble b = sc.nextInt();\n\t\tdouble c = sc.nextInt();\n\t\tdouble d = sc.nextInt();\n\n\t\tdouble tturn = Math.ceil(c/b);\n\t\tdouble aturn = Math.ceil(a/d);\n\n\t\tif(tturn <= aturn) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\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 sc = new Scanner(System.in);\n\t\tdouble a = sc.nextInt();\n\t\tdouble b = sc.nextInt();\n\t\tdouble c = sc.nextInt();\n\t\tdouble d = sc.nextInt();\n\n\t\tdouble tturn = Math.ceil(c/b);\n\t\tdouble aturn = Math.ceil(a/d);\n\n\t\tif(tturn <= aturn) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tdouble a = sc.nextInt();\n\t\tdouble b = sc.nextInt();\n\t\tdouble c = sc.nextInt();\n\t\tdouble d = sc.nextInt();\n\n\t\tdouble tturn = Math.ceil(c/b);\n\t\tdouble aturn = Math.ceil(a/d);\n\n\t\tif(tturn <= aturn) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tdouble a = sc.nextInt();\n\t\tdouble b = sc.nextInt();\n\t\tdouble c = sc.nextInt();\n\t\tdouble d = sc.nextInt();\n\n\t\tdouble tturn = Math.ceil(c/b);\n\t\tdouble aturn = Math.ceil(a/d);\n\n\t\tif(tturn <= aturn) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"double a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"double b = sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"double c = sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"double d = sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"double tturn = Math.ceil(c/b);",
"tturn",
"Math.ceil(c/b)",
"Math.ceil",
"Math",
"c/b",
"c",
"b",
"double aturn = Math.ceil(a/d);",
"aturn",
"Math.ceil(a/d)",
"Math.ceil",
"Math",
"a/d",
"a",
"d",
"if(tturn <= aturn) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"tturn <= aturn",
"tturn",
"aturn",
"{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tdouble a = sc.nextInt();\n\t\tdouble b = sc.nextInt();\n\t\tdouble c = sc.nextInt();\n\t\tdouble d = sc.nextInt();\n\n\t\tdouble tturn = Math.ceil(c/b);\n\t\tdouble aturn = Math.ceil(a/d);\n\n\t\tif(tturn <= aturn) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tdouble a = sc.nextInt();\n\t\tdouble b = sc.nextInt();\n\t\tdouble c = sc.nextInt();\n\t\tdouble d = sc.nextInt();\n\n\t\tdouble tturn = Math.ceil(c/b);\n\t\tdouble aturn = Math.ceil(a/d);\n\n\t\tif(tturn <= aturn) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\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);
double a = sc.nextInt();
double b = sc.nextInt();
double c = sc.nextInt();
double d = sc.nextInt();
double tturn = Math.ceil(c/b);
double aturn = Math.ceil(a/d);
if(tturn <= aturn) {
System.out.println("Yes");
}else {
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
42,
17,
30,
14,
2,
2,
13,
17,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
40,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
39,
43
],
[
38,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
48,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
53,
58
],
[
52,
59
],
[
38,
60
],
[
60,
61
],
[
61,
62
],
[
61,
63
],
[
60,
64
],
[
64,
65
],
[
65,
66
],
[
65,
67
],
[
64,
68
],
[
68,
69
],
[
69,
70
],
[
70,
71
],
[
71,
72
],
[
71,
73
],
[
69,
74
],
[
68,
75
],
[
37,
76
],
[
76,
77
],
[
6,
78
],
[
78,
79
]
] |
[
"import java.util.Scanner;\n\nclass Main {\n\tpublic static void main(String args[]) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint A = scan.nextInt();\n\t\tint B = scan.nextInt();\n\t\tint C = scan.nextInt();\n\t\tint D = scan.nextInt();\n\n\t\tint count = 0;\n\n\t\twhile (true) {\n\t\t\tif ((count % 2) == 0) {\n\t\t\t\tC -= B;\n\t\t\t\tif (C <= 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tA -= D;\n\t\t\t\tif (A <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tcount++;\n\t\t}\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main {\n\tpublic static void main(String args[]) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint A = scan.nextInt();\n\t\tint B = scan.nextInt();\n\t\tint C = scan.nextInt();\n\t\tint D = scan.nextInt();\n\n\t\tint count = 0;\n\n\t\twhile (true) {\n\t\t\tif ((count % 2) == 0) {\n\t\t\t\tC -= B;\n\t\t\t\tif (C <= 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tA -= D;\n\t\t\t\tif (A <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tcount++;\n\t\t}\n\t}\n}",
"Main",
"public static void main(String args[]) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint A = scan.nextInt();\n\t\tint B = scan.nextInt();\n\t\tint C = scan.nextInt();\n\t\tint D = scan.nextInt();\n\n\t\tint count = 0;\n\n\t\twhile (true) {\n\t\t\tif ((count % 2) == 0) {\n\t\t\t\tC -= B;\n\t\t\t\tif (C <= 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tA -= D;\n\t\t\t\tif (A <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tcount++;\n\t\t}\n\t}",
"main",
"{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint A = scan.nextInt();\n\t\tint B = scan.nextInt();\n\t\tint C = scan.nextInt();\n\t\tint D = scan.nextInt();\n\n\t\tint count = 0;\n\n\t\twhile (true) {\n\t\t\tif ((count % 2) == 0) {\n\t\t\t\tC -= B;\n\t\t\t\tif (C <= 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tA -= D;\n\t\t\t\tif (A <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tcount++;\n\t\t}\n\t}",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int A = scan.nextInt();",
"A",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int B = scan.nextInt();",
"B",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int C = scan.nextInt();",
"C",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int D = scan.nextInt();",
"D",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int count = 0;",
"count",
"0",
"while (true) {\n\t\t\tif ((count % 2) == 0) {\n\t\t\t\tC -= B;\n\t\t\t\tif (C <= 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tA -= D;\n\t\t\t\tif (A <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tcount++;\n\t\t}",
"true",
"{\n\t\t\tif ((count % 2) == 0) {\n\t\t\t\tC -= B;\n\t\t\t\tif (C <= 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tA -= D;\n\t\t\t\tif (A <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tcount++;\n\t\t}",
"if ((count % 2) == 0) {\n\t\t\t\tC -= B;\n\t\t\t\tif (C <= 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tA -= D;\n\t\t\t\tif (A <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}",
"(count % 2) == 0",
"(count % 2)",
"count",
"2",
"0",
"{\n\t\t\t\tC -= B;\n\t\t\t\tif (C <= 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}",
"C -= B",
"C",
"B",
"if (C <= 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}",
"C <= 0",
"C",
"0",
"{\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"{\n\t\t\t\tA -= D;\n\t\t\t\tif (A <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}",
"A -= D",
"A",
"D",
"if (A <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}",
"A <= 0",
"A",
"0",
"{\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"break;",
"count++",
"count",
"String args[]",
"args"
] |
import java.util.Scanner;
class Main {
public static void main(String args[]) {
Scanner scan = new Scanner(System.in);
int A = scan.nextInt();
int B = scan.nextInt();
int C = scan.nextInt();
int D = scan.nextInt();
int count = 0;
while (true) {
if ((count % 2) == 0) {
C -= B;
if (C <= 0) {
System.out.println("Yes");
break;
}
} else {
A -= D;
if (A <= 0) {
System.out.println("No");
break;
}
}
count++;
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
2,
13,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
29,
0,
13,
13,
4,
18,
18,
13,
13,
17,
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
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
32,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
36,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
40,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
45,
50
],
[
44,
51
],
[
36,
52
],
[
52,
53
],
[
52,
54
],
[
8,
55
],
[
55,
56
],
[
56,
57
],
[
57,
58
],
[
57,
59
],
[
55,
60
],
[
6,
61
],
[
61,
62
],
[
0,
63
],
[
63,
64
],
[
63,
65
]
] |
[
"import java.util.*;\npublic class Main {\n\tpublic static void main(String args[]) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\t\n\t\twhile(A > 0) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t}\n\t\tSystem.out.println(\"No\");\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\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\t\n\t\twhile(A > 0) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t}\n\t\tSystem.out.println(\"No\");\n\t}\n}",
"Main",
"public static void main(String args[]) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\t\n\t\twhile(A > 0) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t}\n\t\tSystem.out.println(\"No\");\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\t\n\t\twhile(A > 0) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t}\n\t\tSystem.out.println(\"No\");\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"while(A > 0) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t}",
"A > 0",
"A",
"0",
"{\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t}",
"C -= B",
"C",
"B",
"if(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}",
"C <= 0",
"C",
"0",
"{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"return;",
"A -= D",
"A",
"D",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String args[]",
"args",
"public class Main {\n\tpublic static void main(String args[]) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\t\n\t\twhile(A > 0) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t}\n\t\tSystem.out.println(\"No\");\n\t}\n}",
"public class Main {\n\tpublic static void main(String args[]) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n\t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\t\t\n\t\twhile(A > 0) {\n\t\t\tC -= B;\n\t\t\tif(C <= 0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tA -= D;\n\t\t}\n\t\tSystem.out.println(\"No\");\n\t}\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
while(A > 0) {
C -= B;
if(C <= 0) {
System.out.println("Yes");
return;
}
A -= D;
}
System.out.println("No");
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
41,
13,
41,
13,
41,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
41,
13,
14,
2,
2,
13,
13,
17,
30,
0,
13,
2,
13,
13,
30,
0,
13,
2,
2,
13,
13,
17,
14,
2,
2,
13,
13,
17,
30,
0,
13,
2,
13,
13,
30,
0,
13,
2,
2,
13,
13,
17,
14,
2,
13,
13,
30,
4,
18,
13,
17,
30,
4,
18,
13,
17,
4,
18,
13,
23,
13,
6,
13,
41,
13,
41,
13,
41,
13,
12,
13,
30,
0,
18,
36,
13,
13,
0,
18,
36,
13,
13,
0,
18,
36,
13,
13,
23,
13,
23,
13,
23,
13,
6,
13,
41,
13,
17,
41,
13,
17,
41,
13,
17,
12,
13,
30,
0,
18,
36,
13,
13,
0,
18,
36,
13,
13,
0,
18,
36,
13,
13,
23,
13,
23,
13,
23,
13,
6,
13,
41,
13,
12,
13,
30,
0,
18,
36,
13,
13,
23,
13,
12,
13,
30,
14,
2,
13,
17,
29,
17,
14,
2,
2,
13,
17,
17,
30,
41,
13,
4,
13,
13,
2,
13,
17,
29,
2,
2,
13,
13,
13,
30,
29,
2,
2,
13,
4,
13,
13,
2,
13,
17,
13,
23,
13,
23,
13,
12,
13,
30,
14,
2,
13,
2,
13,
13,
29,
4,
13,
13,
2,
13,
13,
41,
13,
17,
41,
13,
17,
41,
13,
11,
1,
0,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
0,
13,
2,
13,
13,
0,
13,
13,
0,
13,
2,
13,
17,
0,
13,
13,
41,
13,
2,
2,
13,
4,
13,
13,
2,
13,
17,
13,
29,
13,
23,
13,
23,
13,
6,
13,
41,
13,
41,
13,
12,
13,
30,
0,
18,
36,
13,
20,
2,
13,
17,
0,
18,
36,
13,
20,
2,
13,
17,
41,
13,
11,
1,
0,
13,
17,
2,
13,
13,
1,
40,
13,
30,
0,
18,
18,
36,
13,
13,
13,
4,
18,
13,
18,
36,
13,
17,
23,
13,
12,
13,
30,
41,
13,
13,
42,
2,
13,
18,
18,
36,
13,
13,
30,
0,
13,
18,
18,
36,
13,
13,
29,
13,
23,
13,
12,
13,
30,
41,
13,
4,
13,
13,
41,
13,
4,
13,
13,
14,
2,
13,
13,
29,
14,
2,
18,
18,
36,
13,
13,
18,
18,
36,
13,
13,
30,
0,
18,
18,
36,
13,
13,
18,
18,
36,
13,
13,
0,
18,
18,
36,
13,
13,
13,
30,
0,
18,
18,
36,
13,
13,
18,
18,
36,
13,
13,
0,
18,
18,
36,
13,
13,
13,
23,
13,
23,
13,
12,
13,
30,
29,
18,
18,
36,
13,
4,
13,
13,
23,
13,
12,
13,
30,
41,
13,
4,
13,
13,
41,
13,
4,
13,
13,
29,
2,
13,
13,
23,
13,
23,
13,
6,
13,
41,
13,
18,
13,
13,
41,
13,
20,
17,
41,
13,
17,
41,
13,
17,
12,
13,
30,
14,
2,
13,
13,
30,
29,
17,
30,
0,
13,
17,
38,
5,
13,
30,
4,
18,
13,
30,
0,
13,
4,
18,
13,
13,
14,
2,
13,
17,
30,
29,
17,
29,
17,
12,
13,
30,
14,
4,
13,
29,
18,
13,
40,
13,
29,
40,
17,
12,
13,
30,
29,
2,
2,
17,
13,
2,
13,
17,
23,
13,
12,
13,
30,
42,
2,
4,
13,
40,
4,
13,
18,
13,
13,
40,
13,
29,
4,
13,
12,
13,
30,
14,
40,
4,
13,
37,
20,
41,
13,
20,
41,
13,
4,
13,
42,
4,
13,
13,
30,
4,
18,
13,
13,
0,
13,
4,
13,
29,
4,
18,
13,
12,
13,
30,
14,
40,
4,
13,
37,
20,
41,
13,
17,
41,
13,
17,
41,
13,
4,
13,
14,
2,
13,
17,
30,
0,
13,
17,
0,
13,
4,
13,
14,
2,
2,
13,
17,
2,
17,
13,
30,
37,
20,
42,
17,
30,
14,
2,
2,
17,
13,
2,
13,
17,
30,
0,
13,
17,
0,
13,
2,
13,
17,
14,
2,
2,
13,
40,
17,
40,
4,
13,
13,
30,
29,
8,
13,
40,
13,
13,
30,
37,
20,
0,
13,
4,
13,
12,
13,
30,
41,
13,
4,
13,
14,
2,
2,
13,
18,
13,
13,
2,
13,
18,
13,
13,
37,
20,
29,
13,
12,
13,
30,
29,
4,
18,
13,
4,
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
],
[
13,
14
],
[
13,
15
],
[
0,
16
],
[
752,
17
],
[
752,
18
],
[
18,
19
],
[
752,
20
],
[
20,
21
],
[
752,
22
],
[
22,
23
],
[
752,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
27,
28
],
[
27,
29
],
[
26,
30
],
[
30,
31
],
[
30,
32
],
[
26,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
36,
37
],
[
26,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
41,
42
],
[
26,
43
],
[
43,
44
],
[
43,
45
],
[
45,
46
],
[
46,
47
],
[
26,
48
],
[
48,
49
],
[
48,
50
],
[
50,
51
],
[
51,
52
],
[
26,
53
],
[
53,
54
],
[
26,
55
],
[
55,
56
],
[
26,
57
],
[
57,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
58,
62
],
[
57,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
66,
67
],
[
66,
68
],
[
57,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
72,
76
],
[
26,
77
],
[
77,
78
],
[
78,
79
],
[
79,
80
],
[
79,
81
],
[
78,
82
],
[
77,
83
],
[
83,
84
],
[
84,
85
],
[
84,
86
],
[
86,
87
],
[
86,
88
],
[
77,
89
],
[
89,
90
],
[
90,
91
],
[
90,
92
],
[
92,
93
],
[
93,
94
],
[
93,
95
],
[
92,
96
],
[
26,
97
],
[
97,
98
],
[
98,
99
],
[
98,
100
],
[
97,
101
],
[
101,
102
],
[
102,
103
],
[
103,
104
],
[
102,
105
],
[
97,
106
],
[
106,
107
],
[
107,
108
],
[
108,
109
],
[
107,
110
],
[
26,
111
],
[
111,
112
],
[
112,
113
],
[
24,
114
],
[
114,
115
],
[
0,
116
],
[
116,
117
],
[
116,
118
],
[
118,
119
],
[
116,
120
],
[
120,
121
],
[
116,
122
],
[
122,
123
],
[
116,
124
],
[
124,
125
],
[
124,
126
],
[
126,
127
],
[
127,
128
],
[
128,
129
],
[
128,
130
],
[
127,
131
],
[
126,
132
],
[
132,
133
],
[
133,
134
],
[
133,
135
],
[
132,
136
],
[
126,
137
],
[
137,
138
],
[
138,
139
],
[
138,
140
],
[
137,
141
],
[
124,
142
],
[
142,
143
],
[
124,
144
],
[
144,
145
],
[
124,
146
],
[
146,
147
],
[
0,
148
],
[
148,
149
],
[
148,
150
],
[
150,
151
],
[
150,
152
],
[
148,
153
],
[
153,
154
],
[
153,
155
],
[
148,
156
],
[
156,
157
],
[
156,
158
],
[
148,
159
],
[
159,
160
],
[
159,
161
],
[
161,
162
],
[
162,
163
],
[
163,
164
],
[
163,
165
],
[
162,
166
],
[
161,
167
],
[
167,
168
],
[
168,
169
],
[
168,
170
],
[
167,
171
],
[
161,
172
],
[
172,
173
],
[
173,
174
],
[
173,
175
],
[
172,
176
],
[
159,
177
],
[
177,
178
],
[
159,
179
],
[
179,
180
],
[
159,
181
],
[
181,
182
],
[
0,
183
],
[
183,
184
],
[
183,
185
],
[
185,
186
],
[
183,
187
],
[
187,
188
],
[
187,
189
],
[
189,
190
],
[
190,
191
],
[
191,
192
],
[
191,
193
],
[
190,
194
],
[
187,
195
],
[
195,
196
],
[
183,
197
],
[
197,
198
],
[
197,
199
],
[
199,
200
],
[
200,
201
],
[
201,
202
],
[
201,
203
],
[
200,
204
],
[
204,
205
],
[
199,
206
],
[
206,
207
],
[
207,
208
],
[
208,
209
],
[
208,
210
],
[
207,
211
],
[
206,
212
],
[
212,
213
],
[
213,
214
],
[
213,
215
],
[
215,
216
],
[
215,
217
],
[
215,
218
],
[
218,
219
],
[
218,
220
],
[
212,
221
],
[
221,
222
],
[
222,
223
],
[
223,
224
],
[
223,
225
],
[
222,
226
],
[
206,
227
],
[
227,
228
],
[
228,
229
],
[
229,
230
],
[
230,
231
],
[
230,
232
],
[
232,
233
],
[
232,
234
],
[
232,
235
],
[
235,
236
],
[
235,
237
],
[
229,
238
],
[
197,
239
],
[
239,
240
],
[
197,
241
],
[
241,
242
],
[
183,
243
],
[
243,
244
],
[
243,
245
],
[
245,
246
],
[
246,
247
],
[
247,
248
],
[
247,
249
],
[
249,
250
],
[
249,
251
],
[
246,
252
],
[
252,
253
],
[
253,
254
],
[
253,
255
],
[
253,
256
],
[
256,
257
],
[
256,
258
],
[
245,
259
],
[
259,
260
],
[
259,
261
],
[
245,
262
],
[
262,
263
],
[
262,
264
],
[
245,
265
],
[
265,
266
],
[
245,
267
],
[
267,
268
],
[
268,
269
],
[
269,
270
],
[
269,
271
],
[
267,
272
],
[
272,
273
],
[
272,
274
],
[
267,
275
],
[
275,
276
],
[
276,
277
],
[
267,
278
],
[
279,
279
],
[
279,
280
],
[
280,
281
],
[
280,
282
],
[
282,
283
],
[
282,
284
],
[
279,
285
],
[
285,
286
],
[
285,
287
],
[
279,
288
],
[
288,
289
],
[
288,
290
],
[
290,
291
],
[
290,
292
],
[
279,
293
],
[
293,
294
],
[
293,
295
],
[
245,
296
],
[
296,
297
],
[
296,
298
],
[
298,
299
],
[
299,
300
],
[
299,
301
],
[
301,
302
],
[
301,
303
],
[
301,
304
],
[
304,
305
],
[
304,
306
],
[
298,
307
],
[
245,
308
],
[
308,
309
],
[
243,
310
],
[
310,
311
],
[
243,
312
],
[
312,
313
],
[
0,
314
],
[
314,
315
],
[
314,
316
],
[
316,
317
],
[
314,
318
],
[
318,
319
],
[
314,
320
],
[
320,
321
],
[
320,
322
],
[
322,
323
],
[
323,
324
],
[
324,
325
],
[
324,
326
],
[
323,
327
],
[
328,
329
],
[
328,
330
],
[
322,
331
],
[
331,
332
],
[
332,
333
],
[
332,
334
],
[
331,
335
],
[
336,
337
],
[
336,
338
],
[
322,
339
],
[
339,
340
],
[
322,
341
],
[
341,
342
],
[
342,
343
],
[
343,
344
],
[
343,
345
],
[
341,
346
],
[
346,
347
],
[
346,
348
],
[
341,
349
],
[
349,
350
],
[
350,
351
],
[
341,
352
],
[
352,
353
],
[
353,
354
],
[
354,
355
],
[
355,
356
],
[
355,
357
],
[
354,
358
],
[
353,
359
],
[
322,
360
],
[
360,
361
],
[
361,
362
],
[
360,
363
],
[
363,
364
],
[
363,
365
],
[
360,
366
],
[
320,
367
],
[
367,
368
],
[
314,
369
],
[
369,
370
],
[
369,
371
],
[
371,
372
],
[
372,
373
],
[
372,
374
],
[
371,
375
],
[
375,
376
],
[
376,
377
],
[
376,
378
],
[
378,
379
],
[
379,
380
],
[
379,
381
],
[
378,
382
],
[
375,
383
],
[
383,
384
],
[
384,
385
],
[
384,
386
],
[
386,
387
],
[
387,
388
],
[
387,
389
],
[
386,
390
],
[
371,
391
],
[
391,
392
],
[
369,
393
],
[
393,
394
],
[
314,
395
],
[
395,
396
],
[
395,
397
],
[
397,
398
],
[
398,
399
],
[
398,
400
],
[
400,
401
],
[
400,
402
],
[
397,
403
],
[
403,
404
],
[
403,
405
],
[
405,
406
],
[
405,
407
],
[
397,
408
],
[
408,
409
],
[
409,
410
],
[
409,
411
],
[
408,
412
],
[
397,
413
],
[
413,
414
],
[
414,
415
],
[
415,
416
],
[
416,
417
],
[
416,
418
],
[
415,
419
],
[
414,
420
],
[
420,
421
],
[
421,
422
],
[
421,
423
],
[
420,
424
],
[
413,
425
],
[
425,
426
],
[
426,
427
],
[
427,
428
],
[
428,
429
],
[
428,
430
],
[
427,
431
],
[
426,
432
],
[
432,
433
],
[
433,
434
],
[
433,
435
],
[
432,
436
],
[
425,
437
],
[
437,
438
],
[
438,
439
],
[
439,
440
],
[
439,
441
],
[
438,
442
],
[
437,
443
],
[
413,
444
],
[
444,
445
],
[
445,
446
],
[
446,
447
],
[
447,
448
],
[
447,
449
],
[
446,
450
],
[
445,
451
],
[
451,
452
],
[
452,
453
],
[
452,
454
],
[
451,
455
],
[
444,
456
],
[
456,
457
],
[
457,
458
],
[
458,
459
],
[
458,
460
],
[
457,
461
],
[
456,
462
],
[
395,
463
],
[
463,
464
],
[
395,
465
],
[
465,
466
],
[
314,
467
],
[
467,
468
],
[
467,
469
],
[
469,
470
],
[
470,
471
],
[
471,
472
],
[
472,
473
],
[
472,
474
],
[
471,
475
],
[
475,
476
],
[
475,
477
],
[
467,
478
],
[
478,
479
],
[
314,
480
],
[
480,
481
],
[
480,
482
],
[
482,
483
],
[
483,
484
],
[
483,
485
],
[
485,
486
],
[
485,
487
],
[
482,
488
],
[
488,
489
],
[
488,
490
],
[
490,
491
],
[
490,
492
],
[
482,
493
],
[
493,
494
],
[
494,
495
],
[
494,
496
],
[
480,
497
],
[
497,
498
],
[
480,
499
],
[
499,
500
],
[
0,
501
],
[
501,
502
],
[
501,
503
],
[
503,
504
],
[
503,
505
],
[
505,
506
],
[
505,
507
],
[
501,
508
],
[
508,
509
],
[
508,
510
],
[
501,
512
],
[
512,
513
],
[
512,
514
],
[
501,
515
],
[
515,
516
],
[
515,
517
],
[
501,
518
],
[
518,
519
],
[
518,
520
],
[
520,
521
],
[
521,
522
],
[
522,
523
],
[
522,
524
],
[
521,
525
],
[
525,
526
],
[
526,
527
],
[
521,
528
],
[
528,
529
],
[
529,
530
],
[
529,
531
],
[
528,
532
],
[
532,
533
],
[
533,
534
],
[
533,
535
],
[
535,
536
],
[
536,
537
],
[
537,
538
],
[
532,
539
],
[
539,
540
],
[
540,
541
],
[
540,
542
],
[
542,
543
],
[
543,
544
],
[
542,
545
],
[
528,
546
],
[
546,
547
],
[
547,
548
],
[
547,
549
],
[
546,
550
],
[
550,
551
],
[
551,
552
],
[
520,
553
],
[
553,
554
],
[
501,
555
],
[
555,
556
],
[
555,
557
],
[
557,
558
],
[
558,
559
],
[
559,
560
],
[
558,
561
],
[
561,
562
],
[
562,
563
],
[
562,
564
],
[
564,
565
],
[
558,
566
],
[
566,
567
],
[
567,
568
],
[
501,
569
],
[
569,
570
],
[
569,
571
],
[
571,
572
],
[
572,
573
],
[
573,
574
],
[
574,
575
],
[
574,
576
],
[
573,
577
],
[
577,
578
],
[
577,
579
],
[
569,
580
],
[
580,
581
],
[
501,
582
],
[
582,
583
],
[
582,
584
],
[
584,
585
],
[
585,
586
],
[
586,
587
],
[
587,
588
],
[
586,
589
],
[
589,
590
],
[
590,
591
],
[
590,
592
],
[
592,
593
],
[
592,
594
],
[
585,
595
],
[
595,
596
],
[
584,
597
],
[
597,
598
],
[
598,
599
],
[
501,
600
],
[
600,
601
],
[
600,
602
],
[
602,
603
],
[
603,
604
],
[
604,
605
],
[
605,
606
],
[
603,
607
],
[
607,
608
],
[
602,
609
],
[
609,
610
],
[
609,
611
],
[
602,
612
],
[
612,
613
],
[
612,
614
],
[
614,
615
],
[
602,
616
],
[
616,
617
],
[
617,
618
],
[
617,
619
],
[
616,
620
],
[
620,
621
],
[
621,
622
],
[
622,
623
],
[
621,
624
],
[
620,
625
],
[
625,
626
],
[
625,
627
],
[
627,
628
],
[
602,
629
],
[
629,
630
],
[
630,
631
],
[
631,
632
],
[
501,
633
],
[
633,
634
],
[
633,
635
],
[
635,
636
],
[
636,
637
],
[
637,
638
],
[
638,
639
],
[
636,
640
],
[
640,
641
],
[
635,
642
],
[
642,
643
],
[
642,
644
],
[
635,
645
],
[
645,
646
],
[
645,
647
],
[
635,
648
],
[
648,
649
],
[
648,
650
],
[
650,
651
],
[
635,
652
],
[
652,
653
],
[
653,
654
],
[
653,
655
],
[
652,
656
],
[
656,
657
],
[
657,
658
],
[
657,
659
],
[
656,
660
],
[
660,
661
],
[
660,
662
],
[
662,
663
],
[
635,
664
],
[
664,
665
],
[
665,
666
],
[
666,
667
],
[
666,
668
],
[
665,
669
],
[
669,
670
],
[
669,
671
],
[
664,
672
],
[
672,
673
],
[
673,
674
],
[
635,
675
],
[
675,
676
],
[
675,
677
],
[
677,
678
],
[
678,
679
],
[
679,
680
],
[
680,
681
],
[
680,
682
],
[
679,
683
],
[
683,
684
],
[
683,
685
],
[
678,
686
],
[
686,
687
],
[
687,
688
],
[
687,
689
],
[
686,
690
],
[
690,
691
],
[
690,
692
],
[
692,
693
],
[
692,
694
],
[
678,
695
],
[
695,
696
],
[
696,
697
],
[
697,
698
],
[
697,
699
],
[
699,
700
],
[
696,
701
],
[
701,
702
],
[
702,
703
],
[
702,
704
],
[
695,
705
],
[
705,
706
],
[
706,
707
],
[
707,
708
],
[
707,
709
],
[
709,
710
],
[
707,
711
],
[
695,
712
],
[
712,
713
],
[
713,
714
],
[
677,
715
],
[
715,
716
],
[
715,
717
],
[
717,
718
],
[
501,
719
],
[
719,
720
],
[
719,
721
],
[
721,
722
],
[
722,
723
],
[
722,
724
],
[
724,
725
],
[
721,
726
],
[
726,
727
],
[
727,
728
],
[
728,
729
],
[
728,
730
],
[
730,
731
],
[
730,
732
],
[
727,
733
],
[
733,
734
],
[
733,
735
],
[
735,
736
],
[
735,
737
],
[
726,
738
],
[
738,
739
],
[
721,
740
],
[
740,
741
],
[
501,
742
],
[
742,
743
],
[
742,
744
],
[
744,
745
],
[
745,
746
],
[
746,
747
],
[
747,
748
],
[
746,
749
],
[
749,
750
],
[
0,
751
],
[
751,
752
],
[
751,
753
]
] |
[
"import java.io.IOException;\nimport java.io.InputStream;\nimport java.io.PrintWriter;\nimport java.util.Arrays;\nimport java.util.NoSuchElementException;\n\npublic class Main {\n\n\tstatic int n;\n\tstatic int k;\n\tstatic int[] x;\n\n\tpublic static void main(String[] args) {\n\t\tFastScanner scan = new FastScanner();\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tint d = scan.nextInt();\n\n\t\tint T,A;\n\t\tif(a % d == 0) {\n\t\t\tT = a / d;\n\t\t}else {\n\t\t\tT = a/ d + 1;\n\t\t}\n\n\t\tif(c % b == 0) {\n\t\t\tA = c / b;\n\t\t}else {\n\t\t\tA = c/ b + 1;\n\t\t}\n\n\t\tif(T >= A) {\n\t\t\tout.print(\"Yes\");\n\t\t}else {\n\t\t\tout.print(\"No\");\n\t\t}\n\n\t\tout.flush();\n\t}\n}\n\nclass Po {\n\tint x;\n\tint y;\n\tlong h;\n\n\tPo(int x, int y, long h) {\n\t\tthis.x = x;\n\t\tthis.y = y;\n\t\tthis.h = h;\n\t}\n}\n\nclass res {\n\tString name = \"\";\n\tint point = 0;\n\tint n = 0;\n\n\tres(String name, int point, int n) {\n\t\tthis.name = name;\n\t\tthis.point = point;\n\t\tthis.n = n;\n\t}\n}\n\nclass cal {\n\tlong mod;\n\n\tcal(long x) {\n\t\tthis.mod = x;\n\t}\n\n\tlong mpow(long x, long n) {\n\t\tif (n == 0)\n\t\t\treturn 1;\n\t\tif (n % 2 == 0) {\n\t\t\tlong root = mpow(x, n / 2);\n\t\t\treturn root * root % mod;\n\t\t} else {\n\t\t\treturn x * mpow(x, n - 1) % mod;\n\t\t}\n\t}\n\n\tlong mcomb(long a, long b) {\n\t\tif (b > a - b)\n\t\t\treturn mcomb(a, a - b);\n\t\tlong m = 1;\n\t\tlong d = 1;\n\t\tlong i;\n\t\tfor (i = 0; i < b; i++) {\n\t\t\tm *= (a - i);\n\t\t\tm %= mod;\n\t\t\td *= (i + 1);\n\t\t\td %= mod;\n\t\t}\n\t\tlong ans = m * mpow(d, mod - 2) % mod;\n\n\t\treturn ans;\n\t}\n}\n\nclass unionFind {\n\tint[] par;\n\tint[] size;\n\n\tunionFind(int x) {\n\t\tthis.par = new int[x + 1];\n\t\tthis.size = new int[x + 1];\n\n\t\tint i;\n\t\tfor (i = 0; i <= x; i++)\n\t\t\tthis.par[i] = i;\n\t\tArrays.fill(this.size, 1);\n\t}\n\n\tint root(int x) {\n\t\tint r = x;\n\t\twhile (r != this.par[r]) {\n\t\t\tr = this.par[r];\n\t\t}\n\n\t\treturn r;\n\t}\n\n\tvoid union(int x, int y) {\n\t\tint rx = root(x);\n\t\tint ry = root(y);\n\t\tif (rx == ry)\n\t\t\treturn;\n\n\t\tif (this.size[rx] < this.size[ry]) {\n\t\t\tthis.size[ry] += this.size[rx];\n\t\t\tthis.par[rx] = ry;\n\t\t} else {\n\t\t\tthis.size[rx] += this.size[ry];\n\t\t\tthis.par[ry] = rx;\n\t\t}\n\t}\n\n\tint size(int x) {\n\t\treturn this.size[root(x)];\n\t}\n\n\tboolean same(int x, int y) {\n\t\tint rx = root(x);\n\t\tint ry = root(y);\n\n\t\treturn rx == ry;\n\t}\n}\n\nclass FastScanner {\n\tprivate final InputStream in = System.in;\n\tprivate final byte[] buffer = new byte[1024];\n\tprivate int ptr = 0;\n\tprivate int buflen = 0;\n\n\tprivate boolean hasNextByte() {\n\t\tif (ptr < buflen) {\n\t\t\treturn true;\n\t\t} else {\n\t\t\tptr = 0;\n\t\t\ttry {\n\t\t\t\tbuflen = in.read(buffer);\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\tif (buflen <= 0) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}\n\n\tprivate int readByte() {\n\t\tif (hasNextByte())\n\t\t\treturn buffer[ptr++];\n\t\telse\n\t\t\treturn -1;\n\t}\n\n\tprivate static boolean isPrintableChar(int c) {\n\t\treturn 33 <= c && c <= 126;\n\t}\n\n\tpublic boolean hasNext() {\n\t\twhile (hasNextByte() && !isPrintableChar(buffer[ptr]))\n\t\t\tptr++;\n\t\treturn hasNextByte();\n\t}\n\n\tpublic String next() {\n\t\tif (!hasNext())\n\t\t\tthrow new NoSuchElementException();\n\t\tStringBuilder sb = new StringBuilder();\n\t\tint b = readByte();\n\t\twhile (isPrintableChar(b)) {\n\t\t\tsb.appendCodePoint(b);\n\t\t\tb = readByte();\n\t\t}\n\t\treturn sb.toString();\n\t}\n\n\tpublic long nextLong() {\n\t\tif (!hasNext())\n\t\t\tthrow new NoSuchElementException();\n\t\tlong n = 0;\n\t\tboolean minus = false;\n\t\tint b = readByte();\n\t\tif (b == '-') {\n\t\t\tminus = true;\n\t\t\tb = readByte();\n\t\t}\n\t\tif (b < '0' || '9' < b) {\n\t\t\tthrow new NumberFormatException();\n\t\t}\n\t\twhile (true) {\n\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\tn *= 10;\n\t\t\t\tn += b - '0';\n\t\t\t} else if (b == -1 || !isPrintableChar(b)) {\n\t\t\t\treturn minus ? -n : n;\n\t\t\t} else {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}\n\t\t\tb = readByte();\n\t\t}\n\t}\n\n\tpublic int nextInt() {\n\t\tlong nl = nextLong();\n\t\tif (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE)\n\t\t\tthrow new NumberFormatException();\n\t\treturn (int) nl;\n\t}\n\n\tpublic double nextDouble() {\n\t\treturn Double.parseDouble(next());\n\t}\n}",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStream;",
"InputStream",
"java.io",
"import java.io.PrintWriter;",
"PrintWriter",
"java.io",
"import java.util.Arrays;",
"Arrays",
"java.util",
"import java.util.NoSuchElementException;",
"NoSuchElementException",
"java.util",
"public class Main {\n\n\tstatic int n;\n\tstatic int k;\n\tstatic int[] x;\n\n\tpublic static void main(String[] args) {\n\t\tFastScanner scan = new FastScanner();\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tint d = scan.nextInt();\n\n\t\tint T,A;\n\t\tif(a % d == 0) {\n\t\t\tT = a / d;\n\t\t}else {\n\t\t\tT = a/ d + 1;\n\t\t}\n\n\t\tif(c % b == 0) {\n\t\t\tA = c / b;\n\t\t}else {\n\t\t\tA = c/ b + 1;\n\t\t}\n\n\t\tif(T >= A) {\n\t\t\tout.print(\"Yes\");\n\t\t}else {\n\t\t\tout.print(\"No\");\n\t\t}\n\n\t\tout.flush();\n\t}\n}",
"Main",
"static int n;",
"n",
"static int k;",
"k",
"static int[] x;",
"x",
"public static void main(String[] args) {\n\t\tFastScanner scan = new FastScanner();\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tint d = scan.nextInt();\n\n\t\tint T,A;\n\t\tif(a % d == 0) {\n\t\t\tT = a / d;\n\t\t}else {\n\t\t\tT = a/ d + 1;\n\t\t}\n\n\t\tif(c % b == 0) {\n\t\t\tA = c / b;\n\t\t}else {\n\t\t\tA = c/ b + 1;\n\t\t}\n\n\t\tif(T >= A) {\n\t\t\tout.print(\"Yes\");\n\t\t}else {\n\t\t\tout.print(\"No\");\n\t\t}\n\n\t\tout.flush();\n\t}",
"main",
"{\n\t\tFastScanner scan = new FastScanner();\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tint d = scan.nextInt();\n\n\t\tint T,A;\n\t\tif(a % d == 0) {\n\t\t\tT = a / d;\n\t\t}else {\n\t\t\tT = a/ d + 1;\n\t\t}\n\n\t\tif(c % b == 0) {\n\t\t\tA = c / b;\n\t\t}else {\n\t\t\tA = c/ b + 1;\n\t\t}\n\n\t\tif(T >= A) {\n\t\t\tout.print(\"Yes\");\n\t\t}else {\n\t\t\tout.print(\"No\");\n\t\t}\n\n\t\tout.flush();\n\t}",
"FastScanner scan = new FastScanner();",
"scan",
"new FastScanner()",
"PrintWriter out = new PrintWriter(System.out);",
"out",
"new PrintWriter(System.out)",
"int a = scan.nextInt();",
"a",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int b = scan.nextInt();",
"b",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int c = scan.nextInt();",
"c",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int d = scan.nextInt();",
"d",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int T",
"T",
"A;",
"A",
"if(a % d == 0) {\n\t\t\tT = a / d;\n\t\t}else {\n\t\t\tT = a/ d + 1;\n\t\t}",
"a % d == 0",
"a % d",
"a",
"d",
"0",
"{\n\t\t\tT = a / d;\n\t\t}",
"T = a / d",
"T",
"a / d",
"a",
"d",
"{\n\t\t\tT = a/ d + 1;\n\t\t}",
"T = a/ d + 1",
"T",
"a/ d + 1",
"a/ d",
"a",
"d",
"1",
"if(c % b == 0) {\n\t\t\tA = c / b;\n\t\t}else {\n\t\t\tA = c/ b + 1;\n\t\t}",
"c % b == 0",
"c % b",
"c",
"b",
"0",
"{\n\t\t\tA = c / b;\n\t\t}",
"A = c / b",
"A",
"c / b",
"c",
"b",
"{\n\t\t\tA = c/ b + 1;\n\t\t}",
"A = c/ b + 1",
"A",
"c/ b + 1",
"c/ b",
"c",
"b",
"1",
"if(T >= A) {\n\t\t\tout.print(\"Yes\");\n\t\t}else {\n\t\t\tout.print(\"No\");\n\t\t}",
"T >= A",
"T",
"A",
"{\n\t\t\tout.print(\"Yes\");\n\t\t}",
"out.print(\"Yes\")",
"out.print",
"out",
"\"Yes\"",
"{\n\t\t\tout.print(\"No\");\n\t\t}",
"out.print(\"No\")",
"out.print",
"out",
"\"No\"",
"out.flush()",
"out.flush",
"out",
"String[] args",
"args",
"class Po {\n\tint x;\n\tint y;\n\tlong h;\n\n\tPo(int x, int y, long h) {\n\t\tthis.x = x;\n\t\tthis.y = y;\n\t\tthis.h = h;\n\t}\n}",
"Po",
"int x;",
"x",
"int y;",
"y",
"long h;",
"h",
"Po(int x, int y, long h) {\n\t\tthis.x = x;\n\t\tthis.y = y;\n\t\tthis.h = h;\n\t}",
"Po",
"{\n\t\tthis.x = x;\n\t\tthis.y = y;\n\t\tthis.h = h;\n\t}",
"this.x = x",
"this.x",
"this",
"this.x",
"x",
"this.y = y",
"this.y",
"this",
"this.y",
"y",
"this.h = h",
"this.h",
"this",
"this.h",
"h",
"int x",
"x",
"int y",
"y",
"long h",
"h",
"class res {\n\tString name = \"\";\n\tint point = 0;\n\tint n = 0;\n\n\tres(String name, int point, int n) {\n\t\tthis.name = name;\n\t\tthis.point = point;\n\t\tthis.n = n;\n\t}\n}",
"res",
"String name = \"\";",
"name",
"\"\"",
"int point = 0;",
"point",
"0",
"int n = 0;",
"n",
"0",
"res(String name, int point, int n) {\n\t\tthis.name = name;\n\t\tthis.point = point;\n\t\tthis.n = n;\n\t}",
"res",
"{\n\t\tthis.name = name;\n\t\tthis.point = point;\n\t\tthis.n = n;\n\t}",
"this.name = name",
"this.name",
"this",
"this.name",
"name",
"this.point = point",
"this.point",
"this",
"this.point",
"point",
"this.n = n",
"this.n",
"this",
"this.n",
"n",
"String name",
"name",
"int point",
"point",
"int n",
"n",
"class cal {\n\tlong mod;\n\n\tcal(long x) {\n\t\tthis.mod = x;\n\t}\n\n\tlong mpow(long x, long n) {\n\t\tif (n == 0)\n\t\t\treturn 1;\n\t\tif (n % 2 == 0) {\n\t\t\tlong root = mpow(x, n / 2);\n\t\t\treturn root * root % mod;\n\t\t} else {\n\t\t\treturn x * mpow(x, n - 1) % mod;\n\t\t}\n\t}\n\n\tlong mcomb(long a, long b) {\n\t\tif (b > a - b)\n\t\t\treturn mcomb(a, a - b);\n\t\tlong m = 1;\n\t\tlong d = 1;\n\t\tlong i;\n\t\tfor (i = 0; i < b; i++) {\n\t\t\tm *= (a - i);\n\t\t\tm %= mod;\n\t\t\td *= (i + 1);\n\t\t\td %= mod;\n\t\t}\n\t\tlong ans = m * mpow(d, mod - 2) % mod;\n\n\t\treturn ans;\n\t}\n}",
"cal",
"long mod;",
"mod",
"cal(long x) {\n\t\tthis.mod = x;\n\t}",
"cal",
"{\n\t\tthis.mod = x;\n\t}",
"this.mod = x",
"this.mod",
"this",
"this.mod",
"x",
"long x",
"x",
"long mpow(long x, long n) {\n\t\tif (n == 0)\n\t\t\treturn 1;\n\t\tif (n % 2 == 0) {\n\t\t\tlong root = mpow(x, n / 2);\n\t\t\treturn root * root % mod;\n\t\t} else {\n\t\t\treturn x * mpow(x, n - 1) % mod;\n\t\t}\n\t}",
"mpow",
"{\n\t\tif (n == 0)\n\t\t\treturn 1;\n\t\tif (n % 2 == 0) {\n\t\t\tlong root = mpow(x, n / 2);\n\t\t\treturn root * root % mod;\n\t\t} else {\n\t\t\treturn x * mpow(x, n - 1) % mod;\n\t\t}\n\t}",
"if (n == 0)\n\t\t\treturn 1;",
"n == 0",
"n",
"0",
"return 1;",
"1",
"if (n % 2 == 0) {\n\t\t\tlong root = mpow(x, n / 2);\n\t\t\treturn root * root % mod;\n\t\t} else {\n\t\t\treturn x * mpow(x, n - 1) % mod;\n\t\t}",
"n % 2 == 0",
"n % 2",
"n",
"2",
"0",
"{\n\t\t\tlong root = mpow(x, n / 2);\n\t\t\treturn root * root % mod;\n\t\t}",
"long root = mpow(x, n / 2);",
"root",
"mpow(x, n / 2)",
"mpow",
"x",
"n / 2",
"n",
"2",
"return root * root % mod;",
"root * root % mod",
"root * root",
"root",
"root",
"mod",
"{\n\t\t\treturn x * mpow(x, n - 1) % mod;\n\t\t}",
"return x * mpow(x, n - 1) % mod;",
"x * mpow(x, n - 1) % mod",
"x * mpow(x, n - 1)",
"x",
"mpow(x, n - 1)",
"mpow",
"x",
"n - 1",
"n",
"1",
"mod",
"long x",
"x",
"long n",
"n",
"long mcomb(long a, long b) {\n\t\tif (b > a - b)\n\t\t\treturn mcomb(a, a - b);\n\t\tlong m = 1;\n\t\tlong d = 1;\n\t\tlong i;\n\t\tfor (i = 0; i < b; i++) {\n\t\t\tm *= (a - i);\n\t\t\tm %= mod;\n\t\t\td *= (i + 1);\n\t\t\td %= mod;\n\t\t}\n\t\tlong ans = m * mpow(d, mod - 2) % mod;\n\n\t\treturn ans;\n\t}",
"mcomb",
"{\n\t\tif (b > a - b)\n\t\t\treturn mcomb(a, a - b);\n\t\tlong m = 1;\n\t\tlong d = 1;\n\t\tlong i;\n\t\tfor (i = 0; i < b; i++) {\n\t\t\tm *= (a - i);\n\t\t\tm %= mod;\n\t\t\td *= (i + 1);\n\t\t\td %= mod;\n\t\t}\n\t\tlong ans = m * mpow(d, mod - 2) % mod;\n\n\t\treturn ans;\n\t}",
"if (b > a - b)\n\t\t\treturn mcomb(a, a - b);",
"b > a - b",
"b",
"a - b",
"a",
"b",
"return mcomb(a, a - b);",
"mcomb(a, a - b)",
"mcomb",
"a",
"a - b",
"a",
"b",
"long m = 1;",
"m",
"1",
"long d = 1;",
"d",
"1",
"long i;",
"i",
"for (i = 0; i < b; i++) {\n\t\t\tm *= (a - i);\n\t\t\tm %= mod;\n\t\t\td *= (i + 1);\n\t\t\td %= mod;\n\t\t}",
"i = 0;",
"i = 0",
"i",
"0",
"i < b",
"i",
"b",
"i++",
"i++",
"i",
"{\n\t\t\tm *= (a - i);\n\t\t\tm %= mod;\n\t\t\td *= (i + 1);\n\t\t\td %= mod;\n\t\t}",
"{\n\t\t\tm *= (a - i);\n\t\t\tm %= mod;\n\t\t\td *= (i + 1);\n\t\t\td %= mod;\n\t\t}",
"m *= (a - i)",
"m",
"(a - i)",
"a",
"i",
"m %= mod",
"m",
"mod",
"d *= (i + 1)",
"d",
"(i + 1)",
"i",
"1",
"d %= mod",
"d",
"mod",
"long ans = m * mpow(d, mod - 2) % mod;",
"ans",
"m * mpow(d, mod - 2) % mod",
"m * mpow(d, mod - 2)",
"m",
"mpow(d, mod - 2)",
"mpow",
"d",
"mod - 2",
"mod",
"2",
"mod",
"return ans;",
"ans",
"long a",
"a",
"long b",
"b",
"class unionFind {\n\tint[] par;\n\tint[] size;\n\n\tunionFind(int x) {\n\t\tthis.par = new int[x + 1];\n\t\tthis.size = new int[x + 1];\n\n\t\tint i;\n\t\tfor (i = 0; i <= x; i++)\n\t\t\tthis.par[i] = i;\n\t\tArrays.fill(this.size, 1);\n\t}\n\n\tint root(int x) {\n\t\tint r = x;\n\t\twhile (r != this.par[r]) {\n\t\t\tr = this.par[r];\n\t\t}\n\n\t\treturn r;\n\t}\n\n\tvoid union(int x, int y) {\n\t\tint rx = root(x);\n\t\tint ry = root(y);\n\t\tif (rx == ry)\n\t\t\treturn;\n\n\t\tif (this.size[rx] < this.size[ry]) {\n\t\t\tthis.size[ry] += this.size[rx];\n\t\t\tthis.par[rx] = ry;\n\t\t} else {\n\t\t\tthis.size[rx] += this.size[ry];\n\t\t\tthis.par[ry] = rx;\n\t\t}\n\t}\n\n\tint size(int x) {\n\t\treturn this.size[root(x)];\n\t}\n\n\tboolean same(int x, int y) {\n\t\tint rx = root(x);\n\t\tint ry = root(y);\n\n\t\treturn rx == ry;\n\t}\n}",
"unionFind",
"int[] par;",
"par",
"int[] size;",
"size",
"unionFind(int x) {\n\t\tthis.par = new int[x + 1];\n\t\tthis.size = new int[x + 1];\n\n\t\tint i;\n\t\tfor (i = 0; i <= x; i++)\n\t\t\tthis.par[i] = i;\n\t\tArrays.fill(this.size, 1);\n\t}",
"unionFind",
"{\n\t\tthis.par = new int[x + 1];\n\t\tthis.size = new int[x + 1];\n\n\t\tint i;\n\t\tfor (i = 0; i <= x; i++)\n\t\t\tthis.par[i] = i;\n\t\tArrays.fill(this.size, 1);\n\t}",
"this.par = new int[x + 1]",
"this.par",
"this",
"this.par",
"new int[x + 1]",
"x + 1",
"x",
"1",
"this.size = new int[x + 1]",
"this.size",
"this",
"this.size",
"new int[x + 1]",
"x + 1",
"x",
"1",
"int i;",
"i",
"for (i = 0; i <= x; i++)\n\t\t\tthis.par[i] = i;",
"i = 0;",
"i = 0",
"i",
"0",
"i <= x",
"i",
"x",
"i++",
"i++",
"i",
"this.par[i] = i;",
"this.par[i] = i",
"this.par[i]",
"this.par",
"this",
"this.par",
"i",
"i",
"Arrays.fill(this.size, 1)",
"Arrays.fill",
"Arrays",
"this.size",
"this",
"this.size",
"1",
"int x",
"x",
"int root(int x) {\n\t\tint r = x;\n\t\twhile (r != this.par[r]) {\n\t\t\tr = this.par[r];\n\t\t}\n\n\t\treturn r;\n\t}",
"root",
"{\n\t\tint r = x;\n\t\twhile (r != this.par[r]) {\n\t\t\tr = this.par[r];\n\t\t}\n\n\t\treturn r;\n\t}",
"int r = x;",
"r",
"x",
"while (r != this.par[r]) {\n\t\t\tr = this.par[r];\n\t\t}",
"r != this.par[r]",
"r",
"this.par[r]",
"this.par",
"this",
"this.par",
"r",
"{\n\t\t\tr = this.par[r];\n\t\t}",
"r = this.par[r]",
"r",
"this.par[r]",
"this.par",
"this",
"this.par",
"r",
"return r;",
"r",
"int x",
"x",
"void union(int x, int y) {\n\t\tint rx = root(x);\n\t\tint ry = root(y);\n\t\tif (rx == ry)\n\t\t\treturn;\n\n\t\tif (this.size[rx] < this.size[ry]) {\n\t\t\tthis.size[ry] += this.size[rx];\n\t\t\tthis.par[rx] = ry;\n\t\t} else {\n\t\t\tthis.size[rx] += this.size[ry];\n\t\t\tthis.par[ry] = rx;\n\t\t}\n\t}",
"union",
"{\n\t\tint rx = root(x);\n\t\tint ry = root(y);\n\t\tif (rx == ry)\n\t\t\treturn;\n\n\t\tif (this.size[rx] < this.size[ry]) {\n\t\t\tthis.size[ry] += this.size[rx];\n\t\t\tthis.par[rx] = ry;\n\t\t} else {\n\t\t\tthis.size[rx] += this.size[ry];\n\t\t\tthis.par[ry] = rx;\n\t\t}\n\t}",
"int rx = root(x);",
"rx",
"root(x)",
"root",
"x",
"int ry = root(y);",
"ry",
"root(y)",
"root",
"y",
"if (rx == ry)\n\t\t\treturn;",
"rx == ry",
"rx",
"ry",
"return;",
"if (this.size[rx] < this.size[ry]) {\n\t\t\tthis.size[ry] += this.size[rx];\n\t\t\tthis.par[rx] = ry;\n\t\t} else {\n\t\t\tthis.size[rx] += this.size[ry];\n\t\t\tthis.par[ry] = rx;\n\t\t}",
"this.size[rx] < this.size[ry]",
"this.size[rx]",
"this.size",
"this",
"this.size",
"rx",
"this.size[ry]",
"this.size",
"this",
"this.size",
"ry",
"{\n\t\t\tthis.size[ry] += this.size[rx];\n\t\t\tthis.par[rx] = ry;\n\t\t}",
"this.size[ry] += this.size[rx]",
"this.size[ry]",
"this.size",
"this",
"this.size",
"ry",
"this.size[rx]",
"this.size",
"this",
"this.size",
"rx",
"this.par[rx] = ry",
"this.par[rx]",
"this.par",
"this",
"this.par",
"rx",
"ry",
"{\n\t\t\tthis.size[rx] += this.size[ry];\n\t\t\tthis.par[ry] = rx;\n\t\t}",
"this.size[rx] += this.size[ry]",
"this.size[rx]",
"this.size",
"this",
"this.size",
"rx",
"this.size[ry]",
"this.size",
"this",
"this.size",
"ry",
"this.par[ry] = rx",
"this.par[ry]",
"this.par",
"this",
"this.par",
"ry",
"rx",
"int x",
"x",
"int y",
"y",
"int size(int x) {\n\t\treturn this.size[root(x)];\n\t}",
"size",
"{\n\t\treturn this.size[root(x)];\n\t}",
"return this.size[root(x)];",
"this.size[root(x)]",
"this.size",
"this",
"this.size",
"root(x)",
"root",
"x",
"int x",
"x",
"boolean same(int x, int y) {\n\t\tint rx = root(x);\n\t\tint ry = root(y);\n\n\t\treturn rx == ry;\n\t}",
"same",
"{\n\t\tint rx = root(x);\n\t\tint ry = root(y);\n\n\t\treturn rx == ry;\n\t}",
"int rx = root(x);",
"rx",
"root(x)",
"root",
"x",
"int ry = root(y);",
"ry",
"root(y)",
"root",
"y",
"return rx == ry;",
"rx == ry",
"rx",
"ry",
"int x",
"x",
"int y",
"y",
"class FastScanner {\n\tprivate final InputStream in = System.in;\n\tprivate final byte[] buffer = new byte[1024];\n\tprivate int ptr = 0;\n\tprivate int buflen = 0;\n\n\tprivate boolean hasNextByte() {\n\t\tif (ptr < buflen) {\n\t\t\treturn true;\n\t\t} else {\n\t\t\tptr = 0;\n\t\t\ttry {\n\t\t\t\tbuflen = in.read(buffer);\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\tif (buflen <= 0) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}\n\n\tprivate int readByte() {\n\t\tif (hasNextByte())\n\t\t\treturn buffer[ptr++];\n\t\telse\n\t\t\treturn -1;\n\t}\n\n\tprivate static boolean isPrintableChar(int c) {\n\t\treturn 33 <= c && c <= 126;\n\t}\n\n\tpublic boolean hasNext() {\n\t\twhile (hasNextByte() && !isPrintableChar(buffer[ptr]))\n\t\t\tptr++;\n\t\treturn hasNextByte();\n\t}\n\n\tpublic String next() {\n\t\tif (!hasNext())\n\t\t\tthrow new NoSuchElementException();\n\t\tStringBuilder sb = new StringBuilder();\n\t\tint b = readByte();\n\t\twhile (isPrintableChar(b)) {\n\t\t\tsb.appendCodePoint(b);\n\t\t\tb = readByte();\n\t\t}\n\t\treturn sb.toString();\n\t}\n\n\tpublic long nextLong() {\n\t\tif (!hasNext())\n\t\t\tthrow new NoSuchElementException();\n\t\tlong n = 0;\n\t\tboolean minus = false;\n\t\tint b = readByte();\n\t\tif (b == '-') {\n\t\t\tminus = true;\n\t\t\tb = readByte();\n\t\t}\n\t\tif (b < '0' || '9' < b) {\n\t\t\tthrow new NumberFormatException();\n\t\t}\n\t\twhile (true) {\n\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\tn *= 10;\n\t\t\t\tn += b - '0';\n\t\t\t} else if (b == -1 || !isPrintableChar(b)) {\n\t\t\t\treturn minus ? -n : n;\n\t\t\t} else {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}\n\t\t\tb = readByte();\n\t\t}\n\t}\n\n\tpublic int nextInt() {\n\t\tlong nl = nextLong();\n\t\tif (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE)\n\t\t\tthrow new NumberFormatException();\n\t\treturn (int) nl;\n\t}\n\n\tpublic double nextDouble() {\n\t\treturn Double.parseDouble(next());\n\t}\n}",
"FastScanner",
"private final InputStream in = System.in;",
"in",
"System.in",
"System",
"System.in",
"private final byte[] buffer = new byte[1024];",
"buffer",
"new byte[1024]",
"1024",
"private int ptr = 0;",
"ptr",
"0",
"private int buflen = 0;",
"buflen",
"0",
"private boolean hasNextByte() {\n\t\tif (ptr < buflen) {\n\t\t\treturn true;\n\t\t} else {\n\t\t\tptr = 0;\n\t\t\ttry {\n\t\t\t\tbuflen = in.read(buffer);\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\tif (buflen <= 0) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}",
"hasNextByte",
"{\n\t\tif (ptr < buflen) {\n\t\t\treturn true;\n\t\t} else {\n\t\t\tptr = 0;\n\t\t\ttry {\n\t\t\t\tbuflen = in.read(buffer);\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\tif (buflen <= 0) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}",
"if (ptr < buflen) {\n\t\t\treturn true;\n\t\t} else {\n\t\t\tptr = 0;\n\t\t\ttry {\n\t\t\t\tbuflen = in.read(buffer);\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\tif (buflen <= 0) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}",
"ptr < buflen",
"ptr",
"buflen",
"{\n\t\t\treturn true;\n\t\t}",
"return true;",
"true",
"{\n\t\t\tptr = 0;\n\t\t\ttry {\n\t\t\t\tbuflen = in.read(buffer);\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}\n\t\t\tif (buflen <= 0) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}",
"ptr = 0",
"ptr",
"0",
"try {\n\t\t\t\tbuflen = in.read(buffer);\n\t\t\t} catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}",
"catch (IOException e) {\n\t\t\t\te.printStackTrace();\n\t\t\t}",
"IOException e",
"{\n\t\t\t\te.printStackTrace();\n\t\t\t}",
"e.printStackTrace()",
"e.printStackTrace",
"e",
"{\n\t\t\t\tbuflen = in.read(buffer);\n\t\t\t}",
"buflen = in.read(buffer)",
"buflen",
"in.read(buffer)",
"in.read",
"in",
"buffer",
"if (buflen <= 0) {\n\t\t\t\treturn false;\n\t\t\t}",
"buflen <= 0",
"buflen",
"0",
"{\n\t\t\t\treturn false;\n\t\t\t}",
"return false;",
"false",
"return true;",
"true",
"private int readByte() {\n\t\tif (hasNextByte())\n\t\t\treturn buffer[ptr++];\n\t\telse\n\t\t\treturn -1;\n\t}",
"readByte",
"{\n\t\tif (hasNextByte())\n\t\t\treturn buffer[ptr++];\n\t\telse\n\t\t\treturn -1;\n\t}",
"if (hasNextByte())\n\t\t\treturn buffer[ptr++];\n\t\telse\n\t\t\treturn -1;",
"hasNextByte()",
"hasNextByte",
"return buffer[ptr++];",
"buffer[ptr++]",
"buffer",
"ptr++",
"ptr",
"return -1;",
"-1",
"1",
"private static boolean isPrintableChar(int c) {\n\t\treturn 33 <= c && c <= 126;\n\t}",
"isPrintableChar",
"{\n\t\treturn 33 <= c && c <= 126;\n\t}",
"return 33 <= c && c <= 126;",
"33 <= c && c <= 126",
"33 <= c",
"33",
"c",
"c <= 126",
"c",
"126",
"int c",
"c",
"public boolean hasNext() {\n\t\twhile (hasNextByte() && !isPrintableChar(buffer[ptr]))\n\t\t\tptr++;\n\t\treturn hasNextByte();\n\t}",
"hasNext",
"{\n\t\twhile (hasNextByte() && !isPrintableChar(buffer[ptr]))\n\t\t\tptr++;\n\t\treturn hasNextByte();\n\t}",
"while (hasNextByte() && !isPrintableChar(buffer[ptr]))\n\t\t\tptr++;",
"hasNextByte() && !isPrintableChar(buffer[ptr])",
"hasNextByte()",
"hasNextByte",
"!isPrintableChar(buffer[ptr])",
"isPrintableChar(buffer[ptr])",
"isPrintableChar",
"buffer[ptr]",
"buffer",
"ptr",
"ptr++",
"ptr",
"return hasNextByte();",
"hasNextByte()",
"hasNextByte",
"public String next() {\n\t\tif (!hasNext())\n\t\t\tthrow new NoSuchElementException();\n\t\tStringBuilder sb = new StringBuilder();\n\t\tint b = readByte();\n\t\twhile (isPrintableChar(b)) {\n\t\t\tsb.appendCodePoint(b);\n\t\t\tb = readByte();\n\t\t}\n\t\treturn sb.toString();\n\t}",
"next",
"{\n\t\tif (!hasNext())\n\t\t\tthrow new NoSuchElementException();\n\t\tStringBuilder sb = new StringBuilder();\n\t\tint b = readByte();\n\t\twhile (isPrintableChar(b)) {\n\t\t\tsb.appendCodePoint(b);\n\t\t\tb = readByte();\n\t\t}\n\t\treturn sb.toString();\n\t}",
"if (!hasNext())\n\t\t\tthrow new NoSuchElementException();",
"!hasNext()",
"hasNext()",
"hasNext",
"throw new NoSuchElementException();",
"new NoSuchElementException()",
"StringBuilder sb = new StringBuilder();",
"sb",
"new StringBuilder()",
"int b = readByte();",
"b",
"readByte()",
"readByte",
"while (isPrintableChar(b)) {\n\t\t\tsb.appendCodePoint(b);\n\t\t\tb = readByte();\n\t\t}",
"isPrintableChar(b)",
"isPrintableChar",
"b",
"{\n\t\t\tsb.appendCodePoint(b);\n\t\t\tb = readByte();\n\t\t}",
"sb.appendCodePoint(b)",
"sb.appendCodePoint",
"sb",
"b",
"b = readByte()",
"b",
"readByte()",
"readByte",
"return sb.toString();",
"sb.toString()",
"sb.toString",
"sb",
"public long nextLong() {\n\t\tif (!hasNext())\n\t\t\tthrow new NoSuchElementException();\n\t\tlong n = 0;\n\t\tboolean minus = false;\n\t\tint b = readByte();\n\t\tif (b == '-') {\n\t\t\tminus = true;\n\t\t\tb = readByte();\n\t\t}\n\t\tif (b < '0' || '9' < b) {\n\t\t\tthrow new NumberFormatException();\n\t\t}\n\t\twhile (true) {\n\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\tn *= 10;\n\t\t\t\tn += b - '0';\n\t\t\t} else if (b == -1 || !isPrintableChar(b)) {\n\t\t\t\treturn minus ? -n : n;\n\t\t\t} else {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}\n\t\t\tb = readByte();\n\t\t}\n\t}",
"nextLong",
"{\n\t\tif (!hasNext())\n\t\t\tthrow new NoSuchElementException();\n\t\tlong n = 0;\n\t\tboolean minus = false;\n\t\tint b = readByte();\n\t\tif (b == '-') {\n\t\t\tminus = true;\n\t\t\tb = readByte();\n\t\t}\n\t\tif (b < '0' || '9' < b) {\n\t\t\tthrow new NumberFormatException();\n\t\t}\n\t\twhile (true) {\n\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\tn *= 10;\n\t\t\t\tn += b - '0';\n\t\t\t} else if (b == -1 || !isPrintableChar(b)) {\n\t\t\t\treturn minus ? -n : n;\n\t\t\t} else {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}\n\t\t\tb = readByte();\n\t\t}\n\t}",
"if (!hasNext())\n\t\t\tthrow new NoSuchElementException();",
"!hasNext()",
"hasNext()",
"hasNext",
"throw new NoSuchElementException();",
"new NoSuchElementException()",
"long n = 0;",
"n",
"0",
"boolean minus = false;",
"minus",
"false",
"int b = readByte();",
"b",
"readByte()",
"readByte",
"if (b == '-') {\n\t\t\tminus = true;\n\t\t\tb = readByte();\n\t\t}",
"b == '-'",
"b",
"'-'",
"{\n\t\t\tminus = true;\n\t\t\tb = readByte();\n\t\t}",
"minus = true",
"minus",
"true",
"b = readByte()",
"b",
"readByte()",
"readByte",
"if (b < '0' || '9' < b) {\n\t\t\tthrow new NumberFormatException();\n\t\t}",
"b < '0' || '9' < b",
"b < '0'",
"b",
"'0'",
"'9' < b",
"'9'",
"b",
"{\n\t\t\tthrow new NumberFormatException();\n\t\t}",
"throw new NumberFormatException();",
"new NumberFormatException()",
"while (true) {\n\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\tn *= 10;\n\t\t\t\tn += b - '0';\n\t\t\t} else if (b == -1 || !isPrintableChar(b)) {\n\t\t\t\treturn minus ? -n : n;\n\t\t\t} else {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}\n\t\t\tb = readByte();\n\t\t}",
"true",
"{\n\t\t\tif ('0' <= b && b <= '9') {\n\t\t\t\tn *= 10;\n\t\t\t\tn += b - '0';\n\t\t\t} else if (b == -1 || !isPrintableChar(b)) {\n\t\t\t\treturn minus ? -n : n;\n\t\t\t} else {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}\n\t\t\tb = readByte();\n\t\t}",
"if ('0' <= b && b <= '9') {\n\t\t\t\tn *= 10;\n\t\t\t\tn += b - '0';\n\t\t\t} else if (b == -1 || !isPrintableChar(b)) {\n\t\t\t\treturn minus ? -n : n;\n\t\t\t} else {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}",
"'0' <= b && b <= '9'",
"'0' <= b",
"'0'",
"b",
"b <= '9'",
"b",
"'9'",
"{\n\t\t\t\tn *= 10;\n\t\t\t\tn += b - '0';\n\t\t\t}",
"n *= 10",
"n",
"10",
"n += b - '0'",
"n",
"b - '0'",
"b",
"'0'",
"if (b == -1 || !isPrintableChar(b)) {\n\t\t\t\treturn minus ? -n : n;\n\t\t\t} else {\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}",
"b == -1 || !isPrintableChar(b)",
"b == -1",
"b",
"-1",
"1",
"!isPrintableChar(b)",
"isPrintableChar(b)",
"isPrintableChar",
"b",
"{\n\t\t\t\treturn minus ? -n : n;\n\t\t\t}",
"return minus ? -n : n;",
"minus ? -n : n",
"minus",
"-n",
"n",
"n",
"{\n\t\t\t\tthrow new NumberFormatException();\n\t\t\t}",
"throw new NumberFormatException();",
"new NumberFormatException()",
"b = readByte()",
"b",
"readByte()",
"readByte",
"public int nextInt() {\n\t\tlong nl = nextLong();\n\t\tif (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE)\n\t\t\tthrow new NumberFormatException();\n\t\treturn (int) nl;\n\t}",
"nextInt",
"{\n\t\tlong nl = nextLong();\n\t\tif (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE)\n\t\t\tthrow new NumberFormatException();\n\t\treturn (int) nl;\n\t}",
"long nl = nextLong();",
"nl",
"nextLong()",
"nextLong",
"if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE)\n\t\t\tthrow new NumberFormatException();",
"nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE",
"nl < Integer.MIN_VALUE",
"nl",
"Integer.MIN_VALUE",
"Integer",
"Integer.MIN_VALUE",
"nl > Integer.MAX_VALUE",
"nl",
"Integer.MAX_VALUE",
"Integer",
"Integer.MAX_VALUE",
"throw new NumberFormatException();",
"new NumberFormatException()",
"return (int) nl;",
"(int) nl",
"public double nextDouble() {\n\t\treturn Double.parseDouble(next());\n\t}",
"nextDouble",
"{\n\t\treturn Double.parseDouble(next());\n\t}",
"return Double.parseDouble(next());",
"Double.parseDouble(next())",
"Double.parseDouble",
"Double",
"next()",
"next",
"public class Main {\n\n\tstatic int n;\n\tstatic int k;\n\tstatic int[] x;\n\n\tpublic static void main(String[] args) {\n\t\tFastScanner scan = new FastScanner();\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tint d = scan.nextInt();\n\n\t\tint T,A;\n\t\tif(a % d == 0) {\n\t\t\tT = a / d;\n\t\t}else {\n\t\t\tT = a/ d + 1;\n\t\t}\n\n\t\tif(c % b == 0) {\n\t\t\tA = c / b;\n\t\t}else {\n\t\t\tA = c/ b + 1;\n\t\t}\n\n\t\tif(T >= A) {\n\t\t\tout.print(\"Yes\");\n\t\t}else {\n\t\t\tout.print(\"No\");\n\t\t}\n\n\t\tout.flush();\n\t}\n}",
"public class Main {\n\n\tstatic int n;\n\tstatic int k;\n\tstatic int[] x;\n\n\tpublic static void main(String[] args) {\n\t\tFastScanner scan = new FastScanner();\n\t\tPrintWriter out = new PrintWriter(System.out);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tint d = scan.nextInt();\n\n\t\tint T,A;\n\t\tif(a % d == 0) {\n\t\t\tT = a / d;\n\t\t}else {\n\t\t\tT = a/ d + 1;\n\t\t}\n\n\t\tif(c % b == 0) {\n\t\t\tA = c / b;\n\t\t}else {\n\t\t\tA = c/ b + 1;\n\t\t}\n\n\t\tif(T >= A) {\n\t\t\tout.print(\"Yes\");\n\t\t}else {\n\t\t\tout.print(\"No\");\n\t\t}\n\n\t\tout.flush();\n\t}\n}",
"Main"
] |
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.NoSuchElementException;
public class Main {
static int n;
static int k;
static int[] x;
public static void main(String[] args) {
FastScanner scan = new FastScanner();
PrintWriter out = new PrintWriter(System.out);
int a = scan.nextInt();
int b = scan.nextInt();
int c = scan.nextInt();
int d = scan.nextInt();
int T,A;
if(a % d == 0) {
T = a / d;
}else {
T = a/ d + 1;
}
if(c % b == 0) {
A = c / b;
}else {
A = c/ b + 1;
}
if(T >= A) {
out.print("Yes");
}else {
out.print("No");
}
out.flush();
}
}
class Po {
int x;
int y;
long h;
Po(int x, int y, long h) {
this.x = x;
this.y = y;
this.h = h;
}
}
class res {
String name = "";
int point = 0;
int n = 0;
res(String name, int point, int n) {
this.name = name;
this.point = point;
this.n = n;
}
}
class cal {
long mod;
cal(long x) {
this.mod = x;
}
long mpow(long x, long n) {
if (n == 0)
return 1;
if (n % 2 == 0) {
long root = mpow(x, n / 2);
return root * root % mod;
} else {
return x * mpow(x, n - 1) % mod;
}
}
long mcomb(long a, long b) {
if (b > a - b)
return mcomb(a, a - b);
long m = 1;
long d = 1;
long i;
for (i = 0; i < b; i++) {
m *= (a - i);
m %= mod;
d *= (i + 1);
d %= mod;
}
long ans = m * mpow(d, mod - 2) % mod;
return ans;
}
}
class unionFind {
int[] par;
int[] size;
unionFind(int x) {
this.par = new int[x + 1];
this.size = new int[x + 1];
int i;
for (i = 0; i <= x; i++)
this.par[i] = i;
Arrays.fill(this.size, 1);
}
int root(int x) {
int r = x;
while (r != this.par[r]) {
r = this.par[r];
}
return r;
}
void union(int x, int y) {
int rx = root(x);
int ry = root(y);
if (rx == ry)
return;
if (this.size[rx] < this.size[ry]) {
this.size[ry] += this.size[rx];
this.par[rx] = ry;
} else {
this.size[rx] += this.size[ry];
this.par[ry] = rx;
}
}
int size(int x) {
return this.size[root(x)];
}
boolean same(int x, int y) {
int rx = root(x);
int ry = root(y);
return rx == ry;
}
}
class FastScanner {
private final InputStream in = System.in;
private final byte[] buffer = new byte[1024];
private int ptr = 0;
private int buflen = 0;
private boolean hasNextByte() {
if (ptr < buflen) {
return true;
} else {
ptr = 0;
try {
buflen = in.read(buffer);
} catch (IOException e) {
e.printStackTrace();
}
if (buflen <= 0) {
return false;
}
}
return true;
}
private int readByte() {
if (hasNextByte())
return buffer[ptr++];
else
return -1;
}
private static boolean isPrintableChar(int c) {
return 33 <= c && c <= 126;
}
public boolean hasNext() {
while (hasNextByte() && !isPrintableChar(buffer[ptr]))
ptr++;
return hasNextByte();
}
public String next() {
if (!hasNext())
throw new NoSuchElementException();
StringBuilder sb = new StringBuilder();
int b = readByte();
while (isPrintableChar(b)) {
sb.appendCodePoint(b);
b = readByte();
}
return sb.toString();
}
public long nextLong() {
if (!hasNext())
throw new NoSuchElementException();
long n = 0;
boolean minus = false;
int b = readByte();
if (b == '-') {
minus = true;
b = readByte();
}
if (b < '0' || '9' < b) {
throw new NumberFormatException();
}
while (true) {
if ('0' <= b && b <= '9') {
n *= 10;
n += b - '0';
} else if (b == -1 || !isPrintableChar(b)) {
return minus ? -n : n;
} else {
throw new NumberFormatException();
}
b = readByte();
}
}
public int nextInt() {
long nl = nextLong();
if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE)
throw new NumberFormatException();
return (int) nl;
}
public double nextDouble() {
return Double.parseDouble(next());
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
2,
13,
13,
41,
13,
2,
13,
13,
0,
13,
4,
18,
13,
13,
0,
13,
4,
18,
13,
13,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
87,
5
],
[
87,
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
],
[
23,
24
],
[
22,
25
],
[
25,
26
],
[
26,
27
],
[
8,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
30,
33
],
[
33,
34
],
[
34,
35
],
[
8,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
39,
40
],
[
38,
41
],
[
41,
42
],
[
42,
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
],
[
56,
57
],
[
57,
58
],
[
56,
59
],
[
8,
60
],
[
60,
61
],
[
60,
62
],
[
62,
63
],
[
63,
64
],
[
62,
65
],
[
8,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
66,
70
],
[
70,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
71,
76
],
[
66,
77
],
[
77,
78
],
[
78,
79
],
[
79,
80
],
[
80,
81
],
[
80,
82
],
[
78,
83
],
[
6,
84
],
[
84,
85
],
[
0,
86
],
[
86,
87
],
[
86,
88
]
] |
[
"import java.util.*;\n//import java.util.Arrays;\n\npublic class Main { //クラス名はMain\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = Integer.parseInt(sc.next());\n int b = Integer.parseInt(sc.next());\n int c = Integer.parseInt(sc.next());\n int d = Integer.parseInt(sc.next());\n\n double x = (double)a/d;\n double y = (double)c/b;\n x = Math.ceil(x);\n y = Math.ceil(y);\n\n if(x>=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main { //クラス名はMain\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = Integer.parseInt(sc.next());\n int b = Integer.parseInt(sc.next());\n int c = Integer.parseInt(sc.next());\n int d = Integer.parseInt(sc.next());\n\n double x = (double)a/d;\n double y = (double)c/b;\n x = Math.ceil(x);\n y = Math.ceil(y);\n\n if(x>=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = Integer.parseInt(sc.next());\n int b = Integer.parseInt(sc.next());\n int c = Integer.parseInt(sc.next());\n int d = Integer.parseInt(sc.next());\n\n double x = (double)a/d;\n double y = (double)c/b;\n x = Math.ceil(x);\n y = Math.ceil(y);\n\n if(x>=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int a = Integer.parseInt(sc.next());\n int b = Integer.parseInt(sc.next());\n int c = Integer.parseInt(sc.next());\n int d = Integer.parseInt(sc.next());\n\n double x = (double)a/d;\n double y = (double)c/b;\n x = Math.ceil(x);\n y = Math.ceil(y);\n\n if(x>=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = Integer.parseInt(sc.next());",
"a",
"Integer.parseInt(sc.next())",
"Integer.parseInt",
"Integer",
"sc.next()",
"sc.next",
"sc",
"int b = Integer.parseInt(sc.next());",
"b",
"Integer.parseInt(sc.next())",
"Integer.parseInt",
"Integer",
"sc.next()",
"sc.next",
"sc",
"int c = Integer.parseInt(sc.next());",
"c",
"Integer.parseInt(sc.next())",
"Integer.parseInt",
"Integer",
"sc.next()",
"sc.next",
"sc",
"int d = Integer.parseInt(sc.next());",
"d",
"Integer.parseInt(sc.next())",
"Integer.parseInt",
"Integer",
"sc.next()",
"sc.next",
"sc",
"double x = (double)a/d;",
"x",
"(double)a/d",
"(double)a",
"d",
"double y = (double)c/b;",
"y",
"(double)c/b",
"(double)c",
"b",
"x = Math.ceil(x)",
"x",
"Math.ceil(x)",
"Math.ceil",
"Math",
"x",
"y = Math.ceil(y)",
"y",
"Math.ceil(y)",
"Math.ceil",
"Math",
"y",
"if(x>=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }",
"x>=y",
"x",
"y",
"{\n System.out.println(\"Yes\");\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n System.out.println(\"No\");\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main { //クラス名はMain\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = Integer.parseInt(sc.next());\n int b = Integer.parseInt(sc.next());\n int c = Integer.parseInt(sc.next());\n int d = Integer.parseInt(sc.next());\n\n double x = (double)a/d;\n double y = (double)c/b;\n x = Math.ceil(x);\n y = Math.ceil(y);\n\n if(x>=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }\n}",
"public class Main { //クラス名はMain\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = Integer.parseInt(sc.next());\n int b = Integer.parseInt(sc.next());\n int c = Integer.parseInt(sc.next());\n int d = Integer.parseInt(sc.next());\n\n double x = (double)a/d;\n double y = (double)c/b;\n x = Math.ceil(x);\n y = Math.ceil(y);\n\n if(x>=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }\n}",
"Main"
] |
import java.util.*;
//import java.util.Arrays;
public class Main { //クラス名はMain
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = Integer.parseInt(sc.next());
int b = Integer.parseInt(sc.next());
int c = Integer.parseInt(sc.next());
int d = Integer.parseInt(sc.next());
double x = (double)a/d;
double y = (double)c/b;
x = Math.ceil(x);
y = Math.ceil(y);
if(x>=y){
System.out.println("Yes");
}else{
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
4,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
8,
2,
2,
13,
13,
17,
2,
13,
13,
2,
2,
13,
13,
17,
41,
13,
8,
2,
2,
13,
13,
17,
2,
13,
13,
2,
2,
13,
13,
17,
14,
2,
13,
13,
4,
18,
18,
13,
13,
17,
4,
18,
18,
13,
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
],
[
109,
11
],
[
109,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
23,
24
],
[
20,
25
],
[
14,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
28,
31
],
[
31,
32
],
[
31,
33
],
[
14,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
36,
39
],
[
39,
40
],
[
39,
41
],
[
14,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
44,
47
],
[
47,
48
],
[
47,
49
],
[
14,
50
],
[
50,
51
],
[
50,
52
],
[
52,
53
],
[
53,
54
],
[
52,
55
],
[
55,
56
],
[
55,
57
],
[
14,
58
],
[
58,
59
],
[
58,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
60,
66
],
[
66,
67
],
[
66,
68
],
[
60,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
69,
73
],
[
14,
74
],
[
74,
75
],
[
74,
76
],
[
76,
77
],
[
77,
78
],
[
78,
79
],
[
78,
80
],
[
77,
81
],
[
76,
82
],
[
82,
83
],
[
82,
84
],
[
76,
85
],
[
85,
86
],
[
86,
87
],
[
86,
88
],
[
85,
89
],
[
14,
90
],
[
90,
91
],
[
91,
92
],
[
91,
93
],
[
90,
94
],
[
94,
95
],
[
95,
96
],
[
96,
97
],
[
96,
98
],
[
94,
99
],
[
90,
100
],
[
100,
101
],
[
101,
102
],
[
102,
103
],
[
102,
104
],
[
100,
105
],
[
12,
106
],
[
106,
107
],
[
0,
108
],
[
108,
109
],
[
108,
110
]
] |
[
"import java.io.*;\nimport java.lang.*;\nimport java.util.*;\npublic class Main{ \n public static void main(String[] args) throws IOException{\n BufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n String[] str=br.readLine().split(\" \");\n long A=Long.parseLong(str[0]);\n long B=Long.parseLong(str[1]);\n long C=Long.parseLong(str[2]);\n long D=Long.parseLong(str[3]);\n long E=(A%D==0)?A/D:A/D+1;\n long F=(C%B==0)?C/B:C/B+1;\n if(F<=E) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n }",
"import java.io.*;",
"io.*",
"java",
"import java.lang.*;",
"lang.*",
"java",
"import java.util.*;",
"util.*",
"java",
"public class Main{ \n public static void main(String[] args) throws IOException{\n BufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n String[] str=br.readLine().split(\" \");\n long A=Long.parseLong(str[0]);\n long B=Long.parseLong(str[1]);\n long C=Long.parseLong(str[2]);\n long D=Long.parseLong(str[3]);\n long E=(A%D==0)?A/D:A/D+1;\n long F=(C%B==0)?C/B:C/B+1;\n if(F<=E) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n }",
"Main",
"public static void main(String[] args) throws IOException{\n BufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n String[] str=br.readLine().split(\" \");\n long A=Long.parseLong(str[0]);\n long B=Long.parseLong(str[1]);\n long C=Long.parseLong(str[2]);\n long D=Long.parseLong(str[3]);\n long E=(A%D==0)?A/D:A/D+1;\n long F=(C%B==0)?C/B:C/B+1;\n if(F<=E) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }",
"main",
"{\n BufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n String[] str=br.readLine().split(\" \");\n long A=Long.parseLong(str[0]);\n long B=Long.parseLong(str[1]);\n long C=Long.parseLong(str[2]);\n long D=Long.parseLong(str[3]);\n long E=(A%D==0)?A/D:A/D+1;\n long F=(C%B==0)?C/B:C/B+1;\n if(F<=E) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }",
"BufferedReader br=new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"String[] str=br.readLine().split(\" \");",
"str",
"br.readLine().split(\" \")",
"br.readLine().split",
"br.readLine()",
"br.readLine",
"br",
"\" \"",
"long A=Long.parseLong(str[0]);",
"A",
"Long.parseLong(str[0])",
"Long.parseLong",
"Long",
"str[0]",
"str",
"0",
"long B=Long.parseLong(str[1]);",
"B",
"Long.parseLong(str[1])",
"Long.parseLong",
"Long",
"str[1]",
"str",
"1",
"long C=Long.parseLong(str[2]);",
"C",
"Long.parseLong(str[2])",
"Long.parseLong",
"Long",
"str[2]",
"str",
"2",
"long D=Long.parseLong(str[3]);",
"D",
"Long.parseLong(str[3])",
"Long.parseLong",
"Long",
"str[3]",
"str",
"3",
"long E=(A%D==0)?A/D:A/D+1;",
"E",
"(A%D==0)?A/D:A/D+1",
"(A%D==0)",
"A%D",
"A",
"D",
"0",
"A/D",
"A",
"D",
"A/D+1",
"A/D",
"A",
"D",
"1",
"long F=(C%B==0)?C/B:C/B+1;",
"F",
"(C%B==0)?C/B:C/B+1",
"(C%B==0)",
"C%B",
"C",
"B",
"0",
"C/B",
"C",
"B",
"C/B+1",
"C/B",
"C",
"B",
"1",
"if(F<=E) System.out.println(\"Yes\");\n else System.out.println(\"No\");",
"F<=E",
"F",
"E",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"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[] str=br.readLine().split(\" \");\n long A=Long.parseLong(str[0]);\n long B=Long.parseLong(str[1]);\n long C=Long.parseLong(str[2]);\n long D=Long.parseLong(str[3]);\n long E=(A%D==0)?A/D:A/D+1;\n long F=(C%B==0)?C/B:C/B+1;\n if(F<=E) System.out.println(\"Yes\");\n else System.out.println(\"No\");\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[] str=br.readLine().split(\" \");\n long A=Long.parseLong(str[0]);\n long B=Long.parseLong(str[1]);\n long C=Long.parseLong(str[2]);\n long D=Long.parseLong(str[3]);\n long E=(A%D==0)?A/D:A/D+1;\n long F=(C%B==0)?C/B:C/B+1;\n if(F<=E) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n }",
"Main"
] |
import java.io.*;
import java.lang.*;
import java.util.*;
public class Main{
public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String[] str=br.readLine().split(" ");
long A=Long.parseLong(str[0]);
long B=Long.parseLong(str[1]);
long C=Long.parseLong(str[2]);
long D=Long.parseLong(str[3]);
long E=(A%D==0)?A/D:A/D+1;
long F=(C%B==0)?C/B:C/B+1;
if(F<=E) System.out.println("Yes");
else System.out.println("No");
}
}
|
[
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,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
42,
17,
30,
14,
13,
30,
0,
13,
13,
0,
13,
17,
30,
0,
13,
13,
0,
13,
17,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
84,
8
],
[
84,
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
],
[
11,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
28,
29
],
[
11,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
11,
35
],
[
35,
36
],
[
35,
37
],
[
11,
38
],
[
38,
39
],
[
38,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
43,
47
],
[
47,
48
],
[
47,
49
],
[
41,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
54,
55
],
[
54,
56
],
[
40,
57
],
[
57,
58
],
[
58,
59
],
[
58,
60
],
[
57,
61
],
[
61,
62
],
[
62,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
62,
67
],
[
61,
68
],
[
40,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
69,
73
],
[
73,
74
],
[
74,
75
],
[
75,
76
],
[
76,
77
],
[
76,
78
],
[
74,
79
],
[
73,
80
],
[
9,
81
],
[
81,
82
],
[
0,
83
],
[
83,
84
],
[
83,
85
]
] |
[
"import java.util.*;\nimport java.io.*;\n\npublic class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n\n boolean turn = true;\n while(true){\n if(turn){\n C -= B;\n turn = false;\n }else{\n A -= D;\n turn = true;\n }\n if(C <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n if(A <= 0) {\n System.out.println(\"No\");\n break;\n }\n }\n\n\n }\n}",
"import java.util.*;",
"util.*",
"java",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n\n boolean turn = true;\n while(true){\n if(turn){\n C -= B;\n turn = false;\n }else{\n A -= D;\n turn = true;\n }\n if(C <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n if(A <= 0) {\n System.out.println(\"No\");\n break;\n }\n }\n\n\n }\n}",
"Main",
"public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n\n boolean turn = true;\n while(true){\n if(turn){\n C -= B;\n turn = false;\n }else{\n A -= D;\n turn = true;\n }\n if(C <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n if(A <= 0) {\n System.out.println(\"No\");\n break;\n }\n }\n\n\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n\n boolean turn = true;\n while(true){\n if(turn){\n C -= B;\n turn = false;\n }else{\n A -= D;\n turn = true;\n }\n if(C <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n if(A <= 0) {\n System.out.println(\"No\");\n break;\n }\n }\n\n\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"boolean turn = true;",
"turn",
"true",
"while(true){\n if(turn){\n C -= B;\n turn = false;\n }else{\n A -= D;\n turn = true;\n }\n if(C <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n if(A <= 0) {\n System.out.println(\"No\");\n break;\n }\n }",
"true",
"{\n if(turn){\n C -= B;\n turn = false;\n }else{\n A -= D;\n turn = true;\n }\n if(C <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n if(A <= 0) {\n System.out.println(\"No\");\n break;\n }\n }",
"if(turn){\n C -= B;\n turn = false;\n }else{\n A -= D;\n turn = true;\n }",
"turn",
"{\n C -= B;\n turn = false;\n }",
"C -= B",
"C",
"B",
"turn = false",
"turn",
"false",
"{\n A -= D;\n turn = true;\n }",
"A -= D",
"A",
"D",
"turn = true",
"turn",
"true",
"if(C <= 0) {\n System.out.println(\"Yes\");\n break;\n }",
"C <= 0",
"C",
"0",
"{\n System.out.println(\"Yes\");\n break;\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"if(A <= 0) {\n System.out.println(\"No\");\n break;\n }",
"A <= 0",
"A",
"0",
"{\n System.out.println(\"No\");\n break;\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"break;",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n\n boolean turn = true;\n while(true){\n if(turn){\n C -= B;\n turn = false;\n }else{\n A -= D;\n turn = true;\n }\n if(C <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n if(A <= 0) {\n System.out.println(\"No\");\n break;\n }\n }\n\n\n }\n}",
"public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n\n boolean turn = true;\n while(true){\n if(turn){\n C -= B;\n turn = false;\n }else{\n A -= D;\n turn = true;\n }\n if(C <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n if(A <= 0) {\n System.out.println(\"No\");\n break;\n }\n }\n\n\n }\n}",
"Main"
] |
import java.util.*;
import java.io.*;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
boolean turn = true;
while(true){
if(turn){
C -= B;
turn = false;
}else{
A -= D;
turn = true;
}
if(C <= 0) {
System.out.println("Yes");
break;
}
if(A <= 0) {
System.out.println("No");
break;
}
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
23,
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
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
35,
37
],
[
34,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
38,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
43,
48
],
[
42,
49
],
[
34,
50
],
[
50,
51
],
[
50,
52
],
[
34,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
57,
58
],
[
58,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
58,
63
],
[
57,
64
],
[
6,
65
],
[
65,
66
],
[
0,
67
],
[
67,
68
],
[
67,
69
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n \n public static void main(String[] args) {\n\n Scanner scanner = new Scanner(System.in);\n\n int takahashiHP = scanner.nextInt();\n int takahashiAttack = scanner.nextInt();\n\n int aokiHP = scanner.nextInt();\n int aokiAttack = scanner.nextInt();\n \n while(true) {\n aokiHP -= takahashiAttack;\n if(aokiHP <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n takahashiHP -= aokiAttack;\n if(takahashiHP <= 0) {\n System.out.println(\"No\");\n break;\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 scanner = new Scanner(System.in);\n\n int takahashiHP = scanner.nextInt();\n int takahashiAttack = scanner.nextInt();\n\n int aokiHP = scanner.nextInt();\n int aokiAttack = scanner.nextInt();\n \n while(true) {\n aokiHP -= takahashiAttack;\n if(aokiHP <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n takahashiHP -= aokiAttack;\n if(takahashiHP <= 0) {\n System.out.println(\"No\");\n break;\n }\n }\n }\n}",
"Main",
"public static void main(String[] args) {\n\n Scanner scanner = new Scanner(System.in);\n\n int takahashiHP = scanner.nextInt();\n int takahashiAttack = scanner.nextInt();\n\n int aokiHP = scanner.nextInt();\n int aokiAttack = scanner.nextInt();\n \n while(true) {\n aokiHP -= takahashiAttack;\n if(aokiHP <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n takahashiHP -= aokiAttack;\n if(takahashiHP <= 0) {\n System.out.println(\"No\");\n break;\n }\n }\n }",
"main",
"{\n\n Scanner scanner = new Scanner(System.in);\n\n int takahashiHP = scanner.nextInt();\n int takahashiAttack = scanner.nextInt();\n\n int aokiHP = scanner.nextInt();\n int aokiAttack = scanner.nextInt();\n \n while(true) {\n aokiHP -= takahashiAttack;\n if(aokiHP <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n takahashiHP -= aokiAttack;\n if(takahashiHP <= 0) {\n System.out.println(\"No\");\n break;\n }\n }\n }",
"Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"int takahashiHP = scanner.nextInt();",
"takahashiHP",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"int takahashiAttack = scanner.nextInt();",
"takahashiAttack",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"int aokiHP = scanner.nextInt();",
"aokiHP",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"int aokiAttack = scanner.nextInt();",
"aokiAttack",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"while(true) {\n aokiHP -= takahashiAttack;\n if(aokiHP <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n takahashiHP -= aokiAttack;\n if(takahashiHP <= 0) {\n System.out.println(\"No\");\n break;\n }\n }",
"true",
"{\n aokiHP -= takahashiAttack;\n if(aokiHP <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n takahashiHP -= aokiAttack;\n if(takahashiHP <= 0) {\n System.out.println(\"No\");\n break;\n }\n }",
"aokiHP -= takahashiAttack",
"aokiHP",
"takahashiAttack",
"if(aokiHP <= 0) {\n System.out.println(\"Yes\");\n break;\n }",
"aokiHP <= 0",
"aokiHP",
"0",
"{\n System.out.println(\"Yes\");\n break;\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"takahashiHP -= aokiAttack",
"takahashiHP",
"aokiAttack",
"if(takahashiHP <= 0) {\n System.out.println(\"No\");\n break;\n }",
"takahashiHP <= 0",
"takahashiHP",
"0",
"{\n System.out.println(\"No\");\n break;\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"break;",
"String[] args",
"args",
"public class Main {\n \n public static void main(String[] args) {\n\n Scanner scanner = new Scanner(System.in);\n\n int takahashiHP = scanner.nextInt();\n int takahashiAttack = scanner.nextInt();\n\n int aokiHP = scanner.nextInt();\n int aokiAttack = scanner.nextInt();\n \n while(true) {\n aokiHP -= takahashiAttack;\n if(aokiHP <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n takahashiHP -= aokiAttack;\n if(takahashiHP <= 0) {\n System.out.println(\"No\");\n break;\n }\n }\n }\n}",
"public class Main {\n \n public static void main(String[] args) {\n\n Scanner scanner = new Scanner(System.in);\n\n int takahashiHP = scanner.nextInt();\n int takahashiAttack = scanner.nextInt();\n\n int aokiHP = scanner.nextInt();\n int aokiAttack = scanner.nextInt();\n \n while(true) {\n aokiHP -= takahashiAttack;\n if(aokiHP <= 0) {\n System.out.println(\"Yes\");\n break;\n }\n takahashiHP -= aokiAttack;\n if(takahashiHP <= 0) {\n System.out.println(\"No\");\n break;\n }\n }\n }\n}",
"Main"
] |
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int takahashiHP = scanner.nextInt();
int takahashiAttack = scanner.nextInt();
int aokiHP = scanner.nextInt();
int aokiAttack = scanner.nextInt();
while(true) {
aokiHP -= takahashiAttack;
if(aokiHP <= 0) {
System.out.println("Yes");
break;
}
takahashiHP -= aokiAttack;
if(takahashiHP <= 0) {
System.out.println("No");
break;
}
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
11,
1,
41,
13,
17,
2,
13,
17,
1,
40,
13,
30,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
78,
5
],
[
78,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
32,
37
],
[
37,
38
],
[
37,
39
],
[
32,
40
],
[
40,
41
],
[
41,
42
],
[
32,
43
],
[
44,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
48,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
53,
58
],
[
52,
59
],
[
44,
60
],
[
60,
61
],
[
60,
62
],
[
44,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
63,
67
],
[
67,
68
],
[
68,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
68,
73
],
[
67,
74
],
[
6,
75
],
[
75,
76
],
[
0,
77
],
[
77,
78
],
[
77,
79
]
] |
[
"import java.util.Scanner;\npublic class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int a = scan.nextInt();\n int b = scan.nextInt();\n int c = scan.nextInt();\n int d = scan.nextInt();\n for (int i = 0; i < 1000; i++){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }\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 a = scan.nextInt();\n int b = scan.nextInt();\n int c = scan.nextInt();\n int d = scan.nextInt();\n for (int i = 0; i < 1000; i++){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }\n }\n}",
"Main",
"public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int a = scan.nextInt();\n int b = scan.nextInt();\n int c = scan.nextInt();\n int d = scan.nextInt();\n for (int i = 0; i < 1000; i++){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }\n }",
"main",
"{\n Scanner scan = new Scanner(System.in);\n int a = scan.nextInt();\n int b = scan.nextInt();\n int c = scan.nextInt();\n int d = scan.nextInt();\n for (int i = 0; i < 1000; i++){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }\n }",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int a = scan.nextInt();",
"a",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int b = scan.nextInt();",
"b",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int c = scan.nextInt();",
"c",
"scan.nextInt()",
"scan.nextInt",
"scan",
"int d = scan.nextInt();",
"d",
"scan.nextInt()",
"scan.nextInt",
"scan",
"for (int i = 0; i < 1000; i++){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < 1000",
"i",
"1000",
"i++",
"i++",
"i",
"{\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }",
"{\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }",
"c -= b",
"c",
"b",
"if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }",
"c <= 0",
"c",
"0",
"{\n System.out.println(\"Yes\");\n break;\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"a -= d",
"a",
"d",
"if (a <= 0){\n System.out.println(\"No\");\n break;\n }",
"a <= 0",
"a",
"0",
"{\n System.out.println(\"No\");\n break;\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"break;",
"String[] args",
"args",
"public class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int a = scan.nextInt();\n int b = scan.nextInt();\n int c = scan.nextInt();\n int d = scan.nextInt();\n for (int i = 0; i < 1000; i++){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }\n }\n}",
"public class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int a = scan.nextInt();\n int b = scan.nextInt();\n int c = scan.nextInt();\n int d = scan.nextInt();\n for (int i = 0; i < 1000; i++){\n c -= b;\n if (c <= 0){\n System.out.println(\"Yes\");\n break;\n }\n a -= d;\n if (a <= 0){\n System.out.println(\"No\");\n break;\n }\n }\n }\n}",
"Main"
] |
import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
int c = scan.nextInt();
int d = scan.nextInt();
for (int i = 0; i < 1000; i++){
c -= b;
if (c <= 0){
System.out.println("Yes");
break;
}
a -= d;
if (a <= 0){
System.out.println("No");
break;
}
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
42,
13,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
0,
13,
17,
3,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
0,
13,
17,
3,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
37,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
41,
45
],
[
45,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
46,
51
],
[
45,
52
],
[
52,
53
],
[
52,
54
],
[
45,
55
],
[
37,
56
],
[
56,
57
],
[
56,
58
],
[
37,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
59,
63
],
[
63,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
64,
69
],
[
63,
70
],
[
70,
71
],
[
70,
72
],
[
63,
73
],
[
6,
74
],
[
74,
75
]
] |
[
"import java.util.Scanner;\nclass Main{\n public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n int a= sc.nextInt();\n int b= sc.nextInt();\n int c= sc.nextInt();\n int d= sc.nextInt();\n boolean flag = true;\n\n while(flag) {\n\t c -= b;\n\t if(c<=0) {\n\t\t System.out.println(\"Yes\");\n\t\t flag = false;\n\t\t break;\n\t }\n\t a -= d;\n\t if(a<=0) {\n\t\t System.out.println(\"No\");\n\t\t flag = false;\n\t\t break;\n\t }\n }\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 int a= sc.nextInt();\n int b= sc.nextInt();\n int c= sc.nextInt();\n int d= sc.nextInt();\n boolean flag = true;\n\n while(flag) {\n\t c -= b;\n\t if(c<=0) {\n\t\t System.out.println(\"Yes\");\n\t\t flag = false;\n\t\t break;\n\t }\n\t a -= d;\n\t if(a<=0) {\n\t\t System.out.println(\"No\");\n\t\t flag = false;\n\t\t break;\n\t }\n }\n\n }\n}",
"Main",
"public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n int a= sc.nextInt();\n int b= sc.nextInt();\n int c= sc.nextInt();\n int d= sc.nextInt();\n boolean flag = true;\n\n while(flag) {\n\t c -= b;\n\t if(c<=0) {\n\t\t System.out.println(\"Yes\");\n\t\t flag = false;\n\t\t break;\n\t }\n\t a -= d;\n\t if(a<=0) {\n\t\t System.out.println(\"No\");\n\t\t flag = false;\n\t\t break;\n\t }\n }\n\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int a= sc.nextInt();\n int b= sc.nextInt();\n int c= sc.nextInt();\n int d= sc.nextInt();\n boolean flag = true;\n\n while(flag) {\n\t c -= b;\n\t if(c<=0) {\n\t\t System.out.println(\"Yes\");\n\t\t flag = false;\n\t\t break;\n\t }\n\t a -= d;\n\t if(a<=0) {\n\t\t System.out.println(\"No\");\n\t\t flag = false;\n\t\t break;\n\t }\n }\n\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a= sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b= sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c= sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int d= sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"boolean flag = true;",
"flag",
"true",
"while(flag) {\n\t c -= b;\n\t if(c<=0) {\n\t\t System.out.println(\"Yes\");\n\t\t flag = false;\n\t\t break;\n\t }\n\t a -= d;\n\t if(a<=0) {\n\t\t System.out.println(\"No\");\n\t\t flag = false;\n\t\t break;\n\t }\n }",
"flag",
"{\n\t c -= b;\n\t if(c<=0) {\n\t\t System.out.println(\"Yes\");\n\t\t flag = false;\n\t\t break;\n\t }\n\t a -= d;\n\t if(a<=0) {\n\t\t System.out.println(\"No\");\n\t\t flag = false;\n\t\t break;\n\t }\n }",
"c -= b",
"c",
"b",
"if(c<=0) {\n\t\t System.out.println(\"Yes\");\n\t\t flag = false;\n\t\t break;\n\t }",
"c<=0",
"c",
"0",
"{\n\t\t System.out.println(\"Yes\");\n\t\t flag = false;\n\t\t break;\n\t }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"flag = false",
"flag",
"false",
"break;",
"a -= d",
"a",
"d",
"if(a<=0) {\n\t\t System.out.println(\"No\");\n\t\t flag = false;\n\t\t break;\n\t }",
"a<=0",
"a",
"0",
"{\n\t\t System.out.println(\"No\");\n\t\t flag = false;\n\t\t break;\n\t }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"flag = false",
"flag",
"false",
"break;",
"String args[]",
"args"
] |
import java.util.Scanner;
class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a= sc.nextInt();
int b= sc.nextInt();
int c= sc.nextInt();
int d= sc.nextInt();
boolean flag = true;
while(flag) {
c -= b;
if(c<=0) {
System.out.println("Yes");
flag = false;
break;
}
a -= d;
if(a<=0) {
System.out.println("No");
flag = false;
break;
}
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
2,
2,
17,
13,
2,
17,
13,
30,
0,
13,
13,
14,
2,
13,
17,
30,
3,
0,
13,
13,
14,
2,
17,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
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
],
[
8,
17
],
[
17,
18
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
37,
38
],
[
37,
39
],
[
32,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
40,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
48,
49
],
[
40,
50
],
[
50,
51
],
[
50,
52
],
[
8,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
57,
58
],
[
58,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
58,
63
],
[
53,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
65,
70
],
[
8,
71
],
[
71,
72
],
[
72,
73
],
[
6,
74
],
[
74,
75
],
[
0,
76
],
[
76,
77
],
[
76,
78
]
] |
[
"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 a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint c = sc.nextInt();\n\t\tint d = sc.nextInt();\n\n\t\twhile(0 < c && 0 < a) {\n\t\t\tc -= b;\n\t\t\tif(c <= 0) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\ta -= d;\n\t\t}\n\t\tif(0 < a) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\tsc.close();\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 a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint c = sc.nextInt();\n\t\tint d = sc.nextInt();\n\n\t\twhile(0 < c && 0 < a) {\n\t\t\tc -= b;\n\t\t\tif(c <= 0) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\ta -= d;\n\t\t}\n\t\tif(0 < a) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\tsc.close();\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint c = sc.nextInt();\n\t\tint d = sc.nextInt();\n\n\t\twhile(0 < c && 0 < a) {\n\t\t\tc -= b;\n\t\t\tif(c <= 0) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\ta -= d;\n\t\t}\n\t\tif(0 < a) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\tsc.close();\n\t}",
"main",
"{\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint c = sc.nextInt();\n\t\tint d = sc.nextInt();\n\n\t\twhile(0 < c && 0 < a) {\n\t\t\tc -= b;\n\t\t\tif(c <= 0) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\ta -= d;\n\t\t}\n\t\tif(0 < a) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\tsc.close();\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b = sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c = sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int d = sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"while(0 < c && 0 < a) {\n\t\t\tc -= b;\n\t\t\tif(c <= 0) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\ta -= d;\n\t\t}",
"0 < c && 0 < a",
"0 < c",
"0",
"c",
"0 < a",
"0",
"a",
"{\n\t\t\tc -= b;\n\t\t\tif(c <= 0) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\ta -= d;\n\t\t}",
"c -= b",
"c",
"b",
"if(c <= 0) {\n\t\t\t\tbreak;\n\t\t\t}",
"c <= 0",
"c",
"0",
"{\n\t\t\t\tbreak;\n\t\t\t}",
"break;",
"a -= d",
"a",
"d",
"if(0 < a) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"0 < a",
"0",
"a",
"{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"sc.close()",
"sc.close",
"sc",
"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 a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint c = sc.nextInt();\n\t\tint d = sc.nextInt();\n\n\t\twhile(0 < c && 0 < a) {\n\t\t\tc -= b;\n\t\t\tif(c <= 0) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\ta -= d;\n\t\t}\n\t\tif(0 < a) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\tsc.close();\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 a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint c = sc.nextInt();\n\t\tint d = sc.nextInt();\n\n\t\twhile(0 < c && 0 < a) {\n\t\t\tc -= b;\n\t\t\tif(c <= 0) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\ta -= d;\n\t\t}\n\t\tif(0 < a) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\tsc.close();\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();
int b = sc.nextInt();
int c = sc.nextInt();
int d = sc.nextInt();
while(0 < c && 0 < a) {
c -= b;
if(c <= 0) {
break;
}
a -= d;
}
if(0 < a) {
System.out.println("Yes");
}else {
System.out.println("No");
}
sc.close();
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
42,
2,
2,
13,
13,
17,
30,
0,
13,
13,
40,
13,
41,
13,
17,
42,
2,
2,
13,
13,
17,
30,
0,
13,
13,
40,
13,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
83,
5
],
[
83,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
36,
37
],
[
37,
38
],
[
37,
39
],
[
36,
40
],
[
35,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
41,
45
],
[
45,
46
],
[
8,
47
],
[
47,
48
],
[
47,
49
],
[
8,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
51,
55
],
[
50,
56
],
[
56,
57
],
[
57,
58
],
[
57,
59
],
[
56,
60
],
[
60,
61
],
[
8,
62
],
[
62,
63
],
[
63,
64
],
[
63,
65
],
[
62,
66
],
[
66,
67
],
[
67,
68
],
[
68,
69
],
[
69,
70
],
[
69,
71
],
[
67,
72
],
[
62,
73
],
[
73,
74
],
[
74,
75
],
[
75,
76
],
[
76,
77
],
[
76,
78
],
[
74,
79
],
[
6,
80
],
[
80,
81
],
[
0,
82
],
[
82,
83
],
[
82,
84
]
] |
[
"import java.util.Scanner;\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n \t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\n \t\tint counta = 0;\n while(C-B>0){\n C -= B;\n counta++;\n }\n int countt = 0;\n while(A-D>0){\n A -= D;\n countt++;\n }\n if(counta<=countt){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\"); \n }\n\t}\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n \t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\n \t\tint counta = 0;\n while(C-B>0){\n C -= B;\n counta++;\n }\n int countt = 0;\n while(A-D>0){\n A -= D;\n countt++;\n }\n if(counta<=countt){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\"); \n }\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n \t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\n \t\tint counta = 0;\n while(C-B>0){\n C -= B;\n counta++;\n }\n int countt = 0;\n while(A-D>0){\n A -= D;\n countt++;\n }\n if(counta<=countt){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\"); \n }\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n \t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\n \t\tint counta = 0;\n while(C-B>0){\n C -= B;\n counta++;\n }\n int countt = 0;\n while(A-D>0){\n A -= D;\n countt++;\n }\n if(counta<=countt){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\"); \n }\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int counta = 0;",
"counta",
"0",
"while(C-B>0){\n C -= B;\n counta++;\n }",
"C-B>0",
"C-B",
"C",
"B",
"0",
"{\n C -= B;\n counta++;\n }",
"C -= B",
"C",
"B",
"counta++",
"counta",
"int countt = 0;",
"countt",
"0",
"while(A-D>0){\n A -= D;\n countt++;\n }",
"A-D>0",
"A-D",
"A",
"D",
"0",
"{\n A -= D;\n countt++;\n }",
"A -= D",
"A",
"D",
"countt++",
"countt",
"if(counta<=countt){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\"); \n }",
"counta<=countt",
"counta",
"countt",
"{\n System.out.println(\"Yes\");\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n System.out.println(\"No\"); \n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n \t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\n \t\tint counta = 0;\n while(C-B>0){\n C -= B;\n counta++;\n }\n int countt = 0;\n while(A-D>0){\n A -= D;\n countt++;\n }\n if(counta<=countt){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\"); \n }\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A = sc.nextInt();\n \t\tint B = sc.nextInt();\n\t\tint C = sc.nextInt();\n\t\tint D = sc.nextInt();\n\n \t\tint counta = 0;\n while(C-B>0){\n C -= B;\n counta++;\n }\n int countt = 0;\n while(A-D>0){\n A -= D;\n countt++;\n }\n if(counta<=countt){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\"); \n }\n\t}\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();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
int counta = 0;
while(C-B>0){
C -= B;
counta++;
}
int countt = 0;
while(A-D>0){
A -= D;
countt++;
}
if(counta<=countt){
System.out.println("Yes");
}else{
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
4,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
2,
2,
2,
13,
13,
17,
13,
41,
13,
2,
2,
2,
13,
13,
17,
13,
4,
18,
18,
13,
13,
8,
2,
13,
13,
17,
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
],
[
90,
11
],
[
90,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
23,
24
],
[
20,
25
],
[
14,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
28,
31
],
[
31,
32
],
[
31,
33
],
[
14,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
36,
39
],
[
39,
40
],
[
39,
41
],
[
14,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
44,
47
],
[
47,
48
],
[
47,
49
],
[
14,
50
],
[
50,
51
],
[
50,
52
],
[
52,
53
],
[
53,
54
],
[
52,
55
],
[
55,
56
],
[
55,
57
],
[
14,
58
],
[
58,
59
],
[
58,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
60,
66
],
[
14,
67
],
[
67,
68
],
[
67,
69
],
[
69,
70
],
[
70,
71
],
[
71,
72
],
[
71,
73
],
[
70,
74
],
[
69,
75
],
[
14,
76
],
[
76,
77
],
[
77,
78
],
[
78,
79
],
[
78,
80
],
[
76,
81
],
[
81,
82
],
[
82,
83
],
[
82,
84
],
[
81,
85
],
[
81,
86
],
[
12,
87
],
[
87,
88
],
[
0,
89
],
[
89,
90
],
[
89,
91
]
] |
[
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.io.IOException;\n\npublic class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n String[] str = in.readLine().split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n int c = Integer.parseInt(str[2]);\n int d = Integer.parseInt(str[3]);\n int x = (a+d-1)/d;\n int y = (c+b-1)/b;\n System.out.println(x>=y?\"Yes\":\"No\");\n }\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n String[] str = in.readLine().split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n int c = Integer.parseInt(str[2]);\n int d = Integer.parseInt(str[3]);\n int x = (a+d-1)/d;\n int y = (c+b-1)/b;\n System.out.println(x>=y?\"Yes\":\"No\");\n }\n}",
"Main",
"public static void main(String[] args) throws IOException {\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n String[] str = in.readLine().split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n int c = Integer.parseInt(str[2]);\n int d = Integer.parseInt(str[3]);\n int x = (a+d-1)/d;\n int y = (c+b-1)/b;\n System.out.println(x>=y?\"Yes\":\"No\");\n }",
"main",
"{\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n String[] str = in.readLine().split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n int c = Integer.parseInt(str[2]);\n int d = Integer.parseInt(str[3]);\n int x = (a+d-1)/d;\n int y = (c+b-1)/b;\n System.out.println(x>=y?\"Yes\":\"No\");\n }",
"BufferedReader in = new BufferedReader(new InputStreamReader(System.in));",
"in",
"new BufferedReader(new InputStreamReader(System.in))",
"String[] str = in.readLine().split(\" \");",
"str",
"in.readLine().split(\" \")",
"in.readLine().split",
"in.readLine()",
"in.readLine",
"in",
"\" \"",
"int a = Integer.parseInt(str[0]);",
"a",
"Integer.parseInt(str[0])",
"Integer.parseInt",
"Integer",
"str[0]",
"str",
"0",
"int b = Integer.parseInt(str[1]);",
"b",
"Integer.parseInt(str[1])",
"Integer.parseInt",
"Integer",
"str[1]",
"str",
"1",
"int c = Integer.parseInt(str[2]);",
"c",
"Integer.parseInt(str[2])",
"Integer.parseInt",
"Integer",
"str[2]",
"str",
"2",
"int d = Integer.parseInt(str[3]);",
"d",
"Integer.parseInt(str[3])",
"Integer.parseInt",
"Integer",
"str[3]",
"str",
"3",
"int x = (a+d-1)/d;",
"x",
"(a+d-1)/d",
"(a+d-1)",
"a+d",
"a",
"d",
"1",
"d",
"int y = (c+b-1)/b;",
"y",
"(c+b-1)/b",
"(c+b-1)",
"c+b",
"c",
"b",
"1",
"b",
"System.out.println(x>=y?\"Yes\":\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"x>=y?\"Yes\":\"No\"",
"x>=y",
"x",
"y",
"\"Yes\"",
"\"No\"",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n String[] str = in.readLine().split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n int c = Integer.parseInt(str[2]);\n int d = Integer.parseInt(str[3]);\n int x = (a+d-1)/d;\n int y = (c+b-1)/b;\n System.out.println(x>=y?\"Yes\":\"No\");\n }\n}",
"public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n String[] str = in.readLine().split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n int c = Integer.parseInt(str[2]);\n int d = Integer.parseInt(str[3]);\n int x = (a+d-1)/d;\n int y = (c+b-1)/b;\n System.out.println(x>=y?\"Yes\":\"No\");\n }\n}",
"Main"
] |
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String[] str = in.readLine().split(" ");
int a = Integer.parseInt(str[0]);
int b = Integer.parseInt(str[1]);
int c = Integer.parseInt(str[2]);
int d = Integer.parseInt(str[3]);
int x = (a+d-1)/d;
int y = (c+b-1)/b;
System.out.println(x>=y?"Yes":"No");
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
11,
1,
41,
13,
17,
2,
13,
17,
1,
40,
13,
30,
30,
0,
13,
2,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
0,
13,
17,
30,
0,
13,
2,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
0,
13,
17,
30,
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
],
[
17,
19
],
[
19,
20
],
[
20,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
32,
37
],
[
37,
38
],
[
37,
39
],
[
32,
40
],
[
40,
41
],
[
41,
42
],
[
32,
43
],
[
44,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
47,
49
],
[
44,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
57,
58
],
[
57,
59
],
[
55,
60
],
[
54,
61
],
[
61,
62
],
[
61,
63
],
[
50,
64
],
[
64,
65
],
[
65,
66
],
[
65,
67
],
[
67,
68
],
[
67,
69
],
[
64,
70
],
[
70,
71
],
[
71,
72
],
[
71,
73
],
[
70,
74
],
[
74,
75
],
[
75,
76
],
[
76,
77
],
[
77,
78
],
[
77,
79
],
[
75,
80
],
[
74,
81
],
[
81,
82
],
[
81,
83
],
[
70,
84
],
[
6,
85
],
[
85,
86
],
[
0,
87
],
[
87,
88
],
[
87,
89
]
] |
[
"import java.util.Scanner;\npublic class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n for(int i = 0; i < 100; i++){\n C = C - B;\n if(C <= 0){\n System.out.println(\"Yes\");\n i = 101;\n }else{\n A = A - D;\n if(A <= 0){\n System.out.println(\"No\");\n i = 101;\n }else{\n //なし\n }\n }\n }\n }\n \n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n for(int i = 0; i < 100; i++){\n C = C - B;\n if(C <= 0){\n System.out.println(\"Yes\");\n i = 101;\n }else{\n A = A - D;\n if(A <= 0){\n System.out.println(\"No\");\n i = 101;\n }else{\n //なし\n }\n }\n }\n }\n \n}",
"Main",
"public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n for(int i = 0; i < 100; i++){\n C = C - B;\n if(C <= 0){\n System.out.println(\"Yes\");\n i = 101;\n }else{\n A = A - D;\n if(A <= 0){\n System.out.println(\"No\");\n i = 101;\n }else{\n //なし\n }\n }\n }\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n for(int i = 0; i < 100; i++){\n C = C - B;\n if(C <= 0){\n System.out.println(\"Yes\");\n i = 101;\n }else{\n A = A - D;\n if(A <= 0){\n System.out.println(\"No\");\n i = 101;\n }else{\n //なし\n }\n }\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"for(int i = 0; i < 100; i++){\n C = C - B;\n if(C <= 0){\n System.out.println(\"Yes\");\n i = 101;\n }else{\n A = A - D;\n if(A <= 0){\n System.out.println(\"No\");\n i = 101;\n }else{\n //なし\n }\n }\n }",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < 100",
"i",
"100",
"i++",
"i++",
"i",
"{\n C = C - B;\n if(C <= 0){\n System.out.println(\"Yes\");\n i = 101;\n }else{\n A = A - D;\n if(A <= 0){\n System.out.println(\"No\");\n i = 101;\n }else{\n //なし\n }\n }\n }",
"{\n C = C - B;\n if(C <= 0){\n System.out.println(\"Yes\");\n i = 101;\n }else{\n A = A - D;\n if(A <= 0){\n System.out.println(\"No\");\n i = 101;\n }else{\n //なし\n }\n }\n }",
"C = C - B",
"C",
"C - B",
"C",
"B",
"if(C <= 0){\n System.out.println(\"Yes\");\n i = 101;\n }else{\n A = A - D;\n if(A <= 0){\n System.out.println(\"No\");\n i = 101;\n }else{\n //なし\n }\n }",
"C <= 0",
"C",
"0",
"{\n System.out.println(\"Yes\");\n i = 101;\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"i = 101",
"i",
"101",
"{\n A = A - D;\n if(A <= 0){\n System.out.println(\"No\");\n i = 101;\n }else{\n //なし\n }\n }",
"A = A - D",
"A",
"A - D",
"A",
"D",
"if(A <= 0){\n System.out.println(\"No\");\n i = 101;\n }else{\n //なし\n }",
"A <= 0",
"A",
"0",
"{\n System.out.println(\"No\");\n i = 101;\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"i = 101",
"i",
"101",
"{\n //なし\n }",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n for(int i = 0; i < 100; i++){\n C = C - B;\n if(C <= 0){\n System.out.println(\"Yes\");\n i = 101;\n }else{\n A = A - D;\n if(A <= 0){\n System.out.println(\"No\");\n i = 101;\n }else{\n //なし\n }\n }\n }\n }\n \n}",
"public class Main {\n public static void main(String[] args) throws Exception {\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n for(int i = 0; i < 100; i++){\n C = C - B;\n if(C <= 0){\n System.out.println(\"Yes\");\n i = 101;\n }else{\n A = A - D;\n if(A <= 0){\n System.out.println(\"No\");\n i = 101;\n }else{\n //なし\n }\n }\n }\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);
int A = sc.nextInt();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
for(int i = 0; i < 100; i++){
C = C - B;
if(C <= 0){
System.out.println("Yes");
i = 101;
}else{
A = A - D;
if(A <= 0){
System.out.println("No");
i = 101;
}else{
//なし
}
}
}
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
41,
13,
20,
41,
13,
20,
12,
13,
30,
38,
30,
41,
13,
20,
41,
13,
4,
18,
4,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
42,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
13,
17,
3,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
13,
17,
3,
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
],
[
101,
11
],
[
101,
12
],
[
12,
13
],
[
12,
14
],
[
101,
15
],
[
15,
16
],
[
15,
17
],
[
101,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
23,
24
],
[
23,
25
],
[
22,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
30,
31
],
[
31,
32
],
[
28,
33
],
[
22,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
36,
39
],
[
39,
40
],
[
39,
41
],
[
22,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
44,
47
],
[
47,
48
],
[
47,
49
],
[
22,
50
],
[
50,
51
],
[
50,
52
],
[
52,
53
],
[
53,
54
],
[
52,
55
],
[
55,
56
],
[
55,
57
],
[
22,
58
],
[
58,
59
],
[
58,
60
],
[
60,
61
],
[
61,
62
],
[
60,
63
],
[
63,
64
],
[
63,
65
],
[
22,
66
],
[
66,
67
],
[
66,
68
],
[
68,
69
],
[
69,
70
],
[
69,
71
],
[
68,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
72,
76
],
[
76,
77
],
[
77,
78
],
[
78,
79
],
[
77,
80
],
[
76,
81
],
[
68,
82
],
[
82,
83
],
[
82,
84
],
[
68,
85
],
[
85,
86
],
[
86,
87
],
[
86,
88
],
[
85,
89
],
[
89,
90
],
[
90,
91
],
[
91,
92
],
[
90,
93
],
[
89,
94
],
[
22,
95
],
[
95,
96
],
[
96,
97
],
[
18,
98
],
[
98,
99
],
[
0,
100
],
[
100,
101
],
[
100,
102
]
] |
[
"import java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.io.PrintWriter;\n\npublic class Main {\n\tstatic InputStreamReader in = new InputStreamReader(System.in);\n\tstatic PrintWriter out = new PrintWriter(System.out);\n\n\tpublic static void main(String[] args) throws Exception {\n\t\ttry (BufferedReader br = new BufferedReader(in)) {\n\t\t\tString[] s = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(s[0]);\n\t\t\tint b = Integer.parseInt(s[1]);\n\t\t\tint c = Integer.parseInt(s[2]);\n\t\t\tint d = Integer.parseInt(s[3]);\n\t\t\twhile (true) {\n\t\t\t\tc -= b;\n\t\t\t\tif (c <= 0) {\n\t\t\t\t\tout.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\ta -= d;\n\t\t\t\tif (a <= 0) {\n\t\t\t\t\tout.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tout.flush();\n\t\t}\n\t}\n\t\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"import java.io.PrintWriter;",
"PrintWriter",
"java.io",
"public class Main {\n\tstatic InputStreamReader in = new InputStreamReader(System.in);\n\tstatic PrintWriter out = new PrintWriter(System.out);\n\n\tpublic static void main(String[] args) throws Exception {\n\t\ttry (BufferedReader br = new BufferedReader(in)) {\n\t\t\tString[] s = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(s[0]);\n\t\t\tint b = Integer.parseInt(s[1]);\n\t\t\tint c = Integer.parseInt(s[2]);\n\t\t\tint d = Integer.parseInt(s[3]);\n\t\t\twhile (true) {\n\t\t\t\tc -= b;\n\t\t\t\tif (c <= 0) {\n\t\t\t\t\tout.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\ta -= d;\n\t\t\t\tif (a <= 0) {\n\t\t\t\t\tout.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tout.flush();\n\t\t}\n\t}\n\t\n}",
"Main",
"static InputStreamReader in = new InputStreamReader(System.in);",
"in",
"new InputStreamReader(System.in)",
"static PrintWriter out = new PrintWriter(System.out);",
"out",
"new PrintWriter(System.out)",
"public static void main(String[] args) throws Exception {\n\t\ttry (BufferedReader br = new BufferedReader(in)) {\n\t\t\tString[] s = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(s[0]);\n\t\t\tint b = Integer.parseInt(s[1]);\n\t\t\tint c = Integer.parseInt(s[2]);\n\t\t\tint d = Integer.parseInt(s[3]);\n\t\t\twhile (true) {\n\t\t\t\tc -= b;\n\t\t\t\tif (c <= 0) {\n\t\t\t\t\tout.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\ta -= d;\n\t\t\t\tif (a <= 0) {\n\t\t\t\t\tout.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tout.flush();\n\t\t}\n\t}",
"main",
"{\n\t\ttry (BufferedReader br = new BufferedReader(in)) {\n\t\t\tString[] s = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(s[0]);\n\t\t\tint b = Integer.parseInt(s[1]);\n\t\t\tint c = Integer.parseInt(s[2]);\n\t\t\tint d = Integer.parseInt(s[3]);\n\t\t\twhile (true) {\n\t\t\t\tc -= b;\n\t\t\t\tif (c <= 0) {\n\t\t\t\t\tout.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\ta -= d;\n\t\t\t\tif (a <= 0) {\n\t\t\t\t\tout.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tout.flush();\n\t\t}\n\t}",
"try (BufferedReader br = new BufferedReader(in)) {\n\t\t\tString[] s = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(s[0]);\n\t\t\tint b = Integer.parseInt(s[1]);\n\t\t\tint c = Integer.parseInt(s[2]);\n\t\t\tint d = Integer.parseInt(s[3]);\n\t\t\twhile (true) {\n\t\t\t\tc -= b;\n\t\t\t\tif (c <= 0) {\n\t\t\t\t\tout.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\ta -= d;\n\t\t\t\tif (a <= 0) {\n\t\t\t\t\tout.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tout.flush();\n\t\t}",
"{\n\t\t\tString[] s = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(s[0]);\n\t\t\tint b = Integer.parseInt(s[1]);\n\t\t\tint c = Integer.parseInt(s[2]);\n\t\t\tint d = Integer.parseInt(s[3]);\n\t\t\twhile (true) {\n\t\t\t\tc -= b;\n\t\t\t\tif (c <= 0) {\n\t\t\t\t\tout.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\ta -= d;\n\t\t\t\tif (a <= 0) {\n\t\t\t\t\tout.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tout.flush();\n\t\t}",
"BufferedReader br = new BufferedReader(in)",
"BufferedReader br = new BufferedReader(in)",
"new BufferedReader(in)",
"String[] s = br.readLine().split(\" \");",
"s",
"br.readLine().split(\" \")",
"br.readLine().split",
"br.readLine()",
"br.readLine",
"br",
"\" \"",
"int a = Integer.parseInt(s[0]);",
"a",
"Integer.parseInt(s[0])",
"Integer.parseInt",
"Integer",
"s[0]",
"s",
"0",
"int b = Integer.parseInt(s[1]);",
"b",
"Integer.parseInt(s[1])",
"Integer.parseInt",
"Integer",
"s[1]",
"s",
"1",
"int c = Integer.parseInt(s[2]);",
"c",
"Integer.parseInt(s[2])",
"Integer.parseInt",
"Integer",
"s[2]",
"s",
"2",
"int d = Integer.parseInt(s[3]);",
"d",
"Integer.parseInt(s[3])",
"Integer.parseInt",
"Integer",
"s[3]",
"s",
"3",
"while (true) {\n\t\t\t\tc -= b;\n\t\t\t\tif (c <= 0) {\n\t\t\t\t\tout.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\ta -= d;\n\t\t\t\tif (a <= 0) {\n\t\t\t\t\tout.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}",
"true",
"{\n\t\t\t\tc -= b;\n\t\t\t\tif (c <= 0) {\n\t\t\t\t\tout.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\ta -= d;\n\t\t\t\tif (a <= 0) {\n\t\t\t\t\tout.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}",
"c -= b",
"c",
"b",
"if (c <= 0) {\n\t\t\t\t\tout.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}",
"c <= 0",
"c",
"0",
"{\n\t\t\t\t\tout.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}",
"out.println(\"Yes\")",
"out.println",
"out",
"\"Yes\"",
"break;",
"a -= d",
"a",
"d",
"if (a <= 0) {\n\t\t\t\t\tout.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}",
"a <= 0",
"a",
"0",
"{\n\t\t\t\t\tout.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}",
"out.println(\"No\")",
"out.println",
"out",
"\"No\"",
"break;",
"out.flush()",
"out.flush",
"out",
"String[] args",
"args",
"public class Main {\n\tstatic InputStreamReader in = new InputStreamReader(System.in);\n\tstatic PrintWriter out = new PrintWriter(System.out);\n\n\tpublic static void main(String[] args) throws Exception {\n\t\ttry (BufferedReader br = new BufferedReader(in)) {\n\t\t\tString[] s = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(s[0]);\n\t\t\tint b = Integer.parseInt(s[1]);\n\t\t\tint c = Integer.parseInt(s[2]);\n\t\t\tint d = Integer.parseInt(s[3]);\n\t\t\twhile (true) {\n\t\t\t\tc -= b;\n\t\t\t\tif (c <= 0) {\n\t\t\t\t\tout.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\ta -= d;\n\t\t\t\tif (a <= 0) {\n\t\t\t\t\tout.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tout.flush();\n\t\t}\n\t}\n\t\n}",
"public class Main {\n\tstatic InputStreamReader in = new InputStreamReader(System.in);\n\tstatic PrintWriter out = new PrintWriter(System.out);\n\n\tpublic static void main(String[] args) throws Exception {\n\t\ttry (BufferedReader br = new BufferedReader(in)) {\n\t\t\tString[] s = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(s[0]);\n\t\t\tint b = Integer.parseInt(s[1]);\n\t\t\tint c = Integer.parseInt(s[2]);\n\t\t\tint d = Integer.parseInt(s[3]);\n\t\t\twhile (true) {\n\t\t\t\tc -= b;\n\t\t\t\tif (c <= 0) {\n\t\t\t\t\tout.println(\"Yes\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\ta -= d;\n\t\t\t\tif (a <= 0) {\n\t\t\t\t\tout.println(\"No\");\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tout.flush();\n\t\t}\n\t}\n\t\n}",
"Main"
] |
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
public class Main {
static InputStreamReader in = new InputStreamReader(System.in);
static PrintWriter out = new PrintWriter(System.out);
public static void main(String[] args) throws Exception {
try (BufferedReader br = new BufferedReader(in)) {
String[] s = br.readLine().split(" ");
int a = Integer.parseInt(s[0]);
int b = Integer.parseInt(s[1]);
int c = Integer.parseInt(s[2]);
int d = Integer.parseInt(s[3]);
while (true) {
c -= b;
if (c <= 0) {
out.println("Yes");
break;
}
a -= d;
if (a <= 0) {
out.println("No");
break;
}
}
out.flush();
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
2,
13,
13,
41,
13,
2,
13,
13,
41,
13,
2,
13,
13,
41,
13,
2,
13,
13,
14,
2,
13,
17,
30,
0,
13,
2,
13,
17,
14,
2,
13,
17,
30,
0,
13,
2,
13,
17,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
93,
5
],
[
93,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
34,
36
],
[
8,
37
],
[
37,
38
],
[
37,
39
],
[
39,
40
],
[
39,
41
],
[
8,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
44,
46
],
[
8,
47
],
[
47,
48
],
[
47,
49
],
[
49,
50
],
[
49,
51
],
[
8,
52
],
[
52,
53
],
[
53,
54
],
[
53,
55
],
[
52,
56
],
[
56,
57
],
[
57,
58
],
[
57,
59
],
[
59,
60
],
[
59,
61
],
[
8,
62
],
[
62,
63
],
[
63,
64
],
[
63,
65
],
[
62,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
69,
70
],
[
69,
71
],
[
8,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
72,
76
],
[
76,
77
],
[
77,
78
],
[
78,
79
],
[
79,
80
],
[
79,
81
],
[
77,
82
],
[
72,
83
],
[
83,
84
],
[
84,
85
],
[
85,
86
],
[
86,
87
],
[
86,
88
],
[
84,
89
],
[
6,
90
],
[
90,
91
],
[
0,
92
],
[
92,
93
],
[
92,
94
]
] |
[
"import java.util.*;\n\npublic class Main {\n\tpublic static void main(String[] args){\n\tScanner scn = new Scanner(System.in);\n\tint a = scn.nextInt();\n int b = scn.nextInt();\n int c = scn.nextInt();\n int d = scn.nextInt();\n int x = c/b;\n int y = a/d;\n int xx = c%b;\n int yy = a%d;\n if(xx != 0){\n x = x+1;\n }\n if(yy != 0){\n y = y+1;\n }\n if(x<=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\tpublic static void main(String[] args){\n\tScanner scn = new Scanner(System.in);\n\tint a = scn.nextInt();\n int b = scn.nextInt();\n int c = scn.nextInt();\n int d = scn.nextInt();\n int x = c/b;\n int y = a/d;\n int xx = c%b;\n int yy = a%d;\n if(xx != 0){\n x = x+1;\n }\n if(yy != 0){\n y = y+1;\n }\n if(x<=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n\t}\n}",
"Main",
"public static void main(String[] args){\n\tScanner scn = new Scanner(System.in);\n\tint a = scn.nextInt();\n int b = scn.nextInt();\n int c = scn.nextInt();\n int d = scn.nextInt();\n int x = c/b;\n int y = a/d;\n int xx = c%b;\n int yy = a%d;\n if(xx != 0){\n x = x+1;\n }\n if(yy != 0){\n y = y+1;\n }\n if(x<=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n\t}",
"main",
"{\n\tScanner scn = new Scanner(System.in);\n\tint a = scn.nextInt();\n int b = scn.nextInt();\n int c = scn.nextInt();\n int d = scn.nextInt();\n int x = c/b;\n int y = a/d;\n int xx = c%b;\n int yy = a%d;\n if(xx != 0){\n x = x+1;\n }\n if(yy != 0){\n y = y+1;\n }\n if(x<=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n\t}",
"Scanner scn = new Scanner(System.in);",
"scn",
"new Scanner(System.in)",
"int a = scn.nextInt();",
"a",
"scn.nextInt()",
"scn.nextInt",
"scn",
"int b = scn.nextInt();",
"b",
"scn.nextInt()",
"scn.nextInt",
"scn",
"int c = scn.nextInt();",
"c",
"scn.nextInt()",
"scn.nextInt",
"scn",
"int d = scn.nextInt();",
"d",
"scn.nextInt()",
"scn.nextInt",
"scn",
"int x = c/b;",
"x",
"c/b",
"c",
"b",
"int y = a/d;",
"y",
"a/d",
"a",
"d",
"int xx = c%b;",
"xx",
"c%b",
"c",
"b",
"int yy = a%d;",
"yy",
"a%d",
"a",
"d",
"if(xx != 0){\n x = x+1;\n }",
"xx != 0",
"xx",
"0",
"{\n x = x+1;\n }",
"x = x+1",
"x",
"x+1",
"x",
"1",
"if(yy != 0){\n y = y+1;\n }",
"yy != 0",
"yy",
"0",
"{\n y = y+1;\n }",
"y = y+1",
"y",
"y+1",
"y",
"1",
"if(x<=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }",
"x<=y",
"x",
"y",
"{\n System.out.println(\"Yes\");\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n System.out.println(\"No\");\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args){\n\tScanner scn = new Scanner(System.in);\n\tint a = scn.nextInt();\n int b = scn.nextInt();\n int c = scn.nextInt();\n int d = scn.nextInt();\n int x = c/b;\n int y = a/d;\n int xx = c%b;\n int yy = a%d;\n if(xx != 0){\n x = x+1;\n }\n if(yy != 0){\n y = y+1;\n }\n if(x<=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args){\n\tScanner scn = new Scanner(System.in);\n\tint a = scn.nextInt();\n int b = scn.nextInt();\n int c = scn.nextInt();\n int d = scn.nextInt();\n int x = c/b;\n int y = a/d;\n int xx = c%b;\n int yy = a%d;\n if(xx != 0){\n x = x+1;\n }\n if(yy != 0){\n y = y+1;\n }\n if(x<=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n\t}\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args){
Scanner scn = new Scanner(System.in);
int a = scn.nextInt();
int b = scn.nextInt();
int c = scn.nextInt();
int d = scn.nextInt();
int x = c/b;
int y = a/d;
int xx = c%b;
int yy = a%d;
if(xx != 0){
x = x+1;
}
if(yy != 0){
y = y+1;
}
if(x<=y){
System.out.println("Yes");
}else{
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
41,
13,
17,
42,
2,
2,
13,
17,
2,
13,
17,
30,
14,
2,
13,
17,
30,
0,
13,
2,
13,
13,
0,
13,
17,
0,
13,
17,
14,
2,
13,
17,
30,
0,
13,
2,
13,
13,
0,
13,
17,
0,
13,
17,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
104,
5
],
[
104,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
8,
35
],
[
35,
36
],
[
35,
37
],
[
8,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
39,
43
],
[
43,
44
],
[
43,
45
],
[
38,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
47,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
54,
55
],
[
54,
56
],
[
51,
57
],
[
57,
58
],
[
57,
59
],
[
51,
60
],
[
60,
61
],
[
60,
62
],
[
47,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
63,
67
],
[
67,
68
],
[
68,
69
],
[
68,
70
],
[
70,
71
],
[
70,
72
],
[
67,
73
],
[
73,
74
],
[
73,
75
],
[
67,
76
],
[
76,
77
],
[
76,
78
],
[
8,
79
],
[
79,
80
],
[
80,
81
],
[
80,
82
],
[
79,
83
],
[
83,
84
],
[
84,
85
],
[
85,
86
],
[
86,
87
],
[
86,
88
],
[
84,
89
],
[
79,
90
],
[
90,
91
],
[
91,
92
],
[
91,
93
],
[
90,
94
],
[
94,
95
],
[
95,
96
],
[
96,
97
],
[
97,
98
],
[
97,
99
],
[
95,
100
],
[
6,
101
],
[
101,
102
],
[
0,
103
],
[
103,
104
],
[
103,
105
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\t\t\tScanner sc = new Scanner(System.in);\n\n\t\t\t\tint T_hp = sc.nextInt();\n\t\t\t\tint T_attack = sc.nextInt();\n\n\t\t\t\tint A_hp = sc.nextInt();\n\t\t\t\tint A_attack = sc.nextInt();\n\n\n\t\t\t\tint A_turn = 0;\n\t\t\t\tint T_turn =1;\n\t\t\t\t//どちらかのヒットポイントが0以下になるまで繰り返す。\n\t\t\t\t\twhile(T_hp > 0 && A_hp > 0) {\n\t\t\t\t\t//カウントが1のほうが攻撃を仕掛ける。\n\t\t\t\t\t\tif(T_turn ==1) {\n\t\t\t\t\t\t\tA_hp = A_hp - T_attack;\n\t\t\t\t\t\t\tA_turn = 1;\n\t\t\t\t\t\t\tT_turn = 0;\n\t\t\t\t\t\t}else if(A_turn == 1) {\n\t\t\t\t\t\t\tT_hp = T_hp - A_attack;\n\t\t\t\t\t\t\tT_turn = 1;\n\t\t\t\t\t\t\tA_turn = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t//}\n\t\t\t\tif(T_hp > 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t}else if(T_hp <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\n\n\t\t\t}\n\t\t}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\t\t\tScanner sc = new Scanner(System.in);\n\n\t\t\t\tint T_hp = sc.nextInt();\n\t\t\t\tint T_attack = sc.nextInt();\n\n\t\t\t\tint A_hp = sc.nextInt();\n\t\t\t\tint A_attack = sc.nextInt();\n\n\n\t\t\t\tint A_turn = 0;\n\t\t\t\tint T_turn =1;\n\t\t\t\t//どちらかのヒットポイントが0以下になるまで繰り返す。\n\t\t\t\t\twhile(T_hp > 0 && A_hp > 0) {\n\t\t\t\t\t//カウントが1のほうが攻撃を仕掛ける。\n\t\t\t\t\t\tif(T_turn ==1) {\n\t\t\t\t\t\t\tA_hp = A_hp - T_attack;\n\t\t\t\t\t\t\tA_turn = 1;\n\t\t\t\t\t\t\tT_turn = 0;\n\t\t\t\t\t\t}else if(A_turn == 1) {\n\t\t\t\t\t\t\tT_hp = T_hp - A_attack;\n\t\t\t\t\t\t\tT_turn = 1;\n\t\t\t\t\t\t\tA_turn = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t//}\n\t\t\t\tif(T_hp > 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t}else if(T_hp <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\n\n\t\t\t}\n\t\t}",
"Main",
"public static void main(String[] args) {\n\n\t\t\t\tScanner sc = new Scanner(System.in);\n\n\t\t\t\tint T_hp = sc.nextInt();\n\t\t\t\tint T_attack = sc.nextInt();\n\n\t\t\t\tint A_hp = sc.nextInt();\n\t\t\t\tint A_attack = sc.nextInt();\n\n\n\t\t\t\tint A_turn = 0;\n\t\t\t\tint T_turn =1;\n\t\t\t\t//どちらかのヒットポイントが0以下になるまで繰り返す。\n\t\t\t\t\twhile(T_hp > 0 && A_hp > 0) {\n\t\t\t\t\t//カウントが1のほうが攻撃を仕掛ける。\n\t\t\t\t\t\tif(T_turn ==1) {\n\t\t\t\t\t\t\tA_hp = A_hp - T_attack;\n\t\t\t\t\t\t\tA_turn = 1;\n\t\t\t\t\t\t\tT_turn = 0;\n\t\t\t\t\t\t}else if(A_turn == 1) {\n\t\t\t\t\t\t\tT_hp = T_hp - A_attack;\n\t\t\t\t\t\t\tT_turn = 1;\n\t\t\t\t\t\t\tA_turn = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t//}\n\t\t\t\tif(T_hp > 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t}else if(T_hp <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\n\n\t\t\t}",
"main",
"{\n\n\t\t\t\tScanner sc = new Scanner(System.in);\n\n\t\t\t\tint T_hp = sc.nextInt();\n\t\t\t\tint T_attack = sc.nextInt();\n\n\t\t\t\tint A_hp = sc.nextInt();\n\t\t\t\tint A_attack = sc.nextInt();\n\n\n\t\t\t\tint A_turn = 0;\n\t\t\t\tint T_turn =1;\n\t\t\t\t//どちらかのヒットポイントが0以下になるまで繰り返す。\n\t\t\t\t\twhile(T_hp > 0 && A_hp > 0) {\n\t\t\t\t\t//カウントが1のほうが攻撃を仕掛ける。\n\t\t\t\t\t\tif(T_turn ==1) {\n\t\t\t\t\t\t\tA_hp = A_hp - T_attack;\n\t\t\t\t\t\t\tA_turn = 1;\n\t\t\t\t\t\t\tT_turn = 0;\n\t\t\t\t\t\t}else if(A_turn == 1) {\n\t\t\t\t\t\t\tT_hp = T_hp - A_attack;\n\t\t\t\t\t\t\tT_turn = 1;\n\t\t\t\t\t\t\tA_turn = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t//}\n\t\t\t\tif(T_hp > 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t}else if(T_hp <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\n\n\t\t\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int T_hp = sc.nextInt();",
"T_hp",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int T_attack = sc.nextInt();",
"T_attack",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int A_hp = sc.nextInt();",
"A_hp",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int A_attack = sc.nextInt();",
"A_attack",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int A_turn = 0;",
"A_turn",
"0",
"int T_turn =1;",
"T_turn",
"1",
"while(T_hp > 0 && A_hp > 0) {\n\t\t\t\t\t//カウントが1のほうが攻撃を仕掛ける。\n\t\t\t\t\t\tif(T_turn ==1) {\n\t\t\t\t\t\t\tA_hp = A_hp - T_attack;\n\t\t\t\t\t\t\tA_turn = 1;\n\t\t\t\t\t\t\tT_turn = 0;\n\t\t\t\t\t\t}else if(A_turn == 1) {\n\t\t\t\t\t\t\tT_hp = T_hp - A_attack;\n\t\t\t\t\t\t\tT_turn = 1;\n\t\t\t\t\t\t\tA_turn = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}",
"T_hp > 0 && A_hp > 0",
"T_hp > 0",
"T_hp",
"0",
"A_hp > 0",
"A_hp",
"0",
"{\n\t\t\t\t\t//カウントが1のほうが攻撃を仕掛ける。\n\t\t\t\t\t\tif(T_turn ==1) {\n\t\t\t\t\t\t\tA_hp = A_hp - T_attack;\n\t\t\t\t\t\t\tA_turn = 1;\n\t\t\t\t\t\t\tT_turn = 0;\n\t\t\t\t\t\t}else if(A_turn == 1) {\n\t\t\t\t\t\t\tT_hp = T_hp - A_attack;\n\t\t\t\t\t\t\tT_turn = 1;\n\t\t\t\t\t\t\tA_turn = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}",
"if(T_turn ==1) {\n\t\t\t\t\t\t\tA_hp = A_hp - T_attack;\n\t\t\t\t\t\t\tA_turn = 1;\n\t\t\t\t\t\t\tT_turn = 0;\n\t\t\t\t\t\t}else if(A_turn == 1) {\n\t\t\t\t\t\t\tT_hp = T_hp - A_attack;\n\t\t\t\t\t\t\tT_turn = 1;\n\t\t\t\t\t\t\tA_turn = 0;\n\t\t\t\t\t\t}",
"T_turn ==1",
"T_turn",
"1",
"{\n\t\t\t\t\t\t\tA_hp = A_hp - T_attack;\n\t\t\t\t\t\t\tA_turn = 1;\n\t\t\t\t\t\t\tT_turn = 0;\n\t\t\t\t\t\t}",
"A_hp = A_hp - T_attack",
"A_hp",
"A_hp - T_attack",
"A_hp",
"T_attack",
"A_turn = 1",
"A_turn",
"1",
"T_turn = 0",
"T_turn",
"0",
"if(A_turn == 1) {\n\t\t\t\t\t\t\tT_hp = T_hp - A_attack;\n\t\t\t\t\t\t\tT_turn = 1;\n\t\t\t\t\t\t\tA_turn = 0;\n\t\t\t\t\t\t}",
"A_turn == 1",
"A_turn",
"1",
"{\n\t\t\t\t\t\t\tT_hp = T_hp - A_attack;\n\t\t\t\t\t\t\tT_turn = 1;\n\t\t\t\t\t\t\tA_turn = 0;\n\t\t\t\t\t\t}",
"T_hp = T_hp - A_attack",
"T_hp",
"T_hp - A_attack",
"T_hp",
"A_attack",
"T_turn = 1",
"T_turn",
"1",
"A_turn = 0",
"A_turn",
"0",
"if(T_hp > 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t}else if(T_hp <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}",
"T_hp > 0",
"T_hp",
"0",
"{\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"if(T_hp <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}",
"T_hp <= 0",
"T_hp",
"0",
"{\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\t\t\tScanner sc = new Scanner(System.in);\n\n\t\t\t\tint T_hp = sc.nextInt();\n\t\t\t\tint T_attack = sc.nextInt();\n\n\t\t\t\tint A_hp = sc.nextInt();\n\t\t\t\tint A_attack = sc.nextInt();\n\n\n\t\t\t\tint A_turn = 0;\n\t\t\t\tint T_turn =1;\n\t\t\t\t//どちらかのヒットポイントが0以下になるまで繰り返す。\n\t\t\t\t\twhile(T_hp > 0 && A_hp > 0) {\n\t\t\t\t\t//カウントが1のほうが攻撃を仕掛ける。\n\t\t\t\t\t\tif(T_turn ==1) {\n\t\t\t\t\t\t\tA_hp = A_hp - T_attack;\n\t\t\t\t\t\t\tA_turn = 1;\n\t\t\t\t\t\t\tT_turn = 0;\n\t\t\t\t\t\t}else if(A_turn == 1) {\n\t\t\t\t\t\t\tT_hp = T_hp - A_attack;\n\t\t\t\t\t\t\tT_turn = 1;\n\t\t\t\t\t\t\tA_turn = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t//}\n\t\t\t\tif(T_hp > 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t}else if(T_hp <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\n\n\t\t\t}\n\t\t}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\t\t\tScanner sc = new Scanner(System.in);\n\n\t\t\t\tint T_hp = sc.nextInt();\n\t\t\t\tint T_attack = sc.nextInt();\n\n\t\t\t\tint A_hp = sc.nextInt();\n\t\t\t\tint A_attack = sc.nextInt();\n\n\n\t\t\t\tint A_turn = 0;\n\t\t\t\tint T_turn =1;\n\t\t\t\t//どちらかのヒットポイントが0以下になるまで繰り返す。\n\t\t\t\t\twhile(T_hp > 0 && A_hp > 0) {\n\t\t\t\t\t//カウントが1のほうが攻撃を仕掛ける。\n\t\t\t\t\t\tif(T_turn ==1) {\n\t\t\t\t\t\t\tA_hp = A_hp - T_attack;\n\t\t\t\t\t\t\tA_turn = 1;\n\t\t\t\t\t\t\tT_turn = 0;\n\t\t\t\t\t\t}else if(A_turn == 1) {\n\t\t\t\t\t\t\tT_hp = T_hp - A_attack;\n\t\t\t\t\t\t\tT_turn = 1;\n\t\t\t\t\t\t\tA_turn = 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t//}\n\t\t\t\tif(T_hp > 0) {\n\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t}else if(T_hp <= 0) {\n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\n\n\t\t\t}\n\t\t}",
"Main"
] |
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int T_hp = sc.nextInt();
int T_attack = sc.nextInt();
int A_hp = sc.nextInt();
int A_attack = sc.nextInt();
int A_turn = 0;
int T_turn =1;
//どちらかのヒットポイントが0以下になるまで繰り返す。
while(T_hp > 0 && A_hp > 0) {
//カウントが1のほうが攻撃を仕掛ける。
if(T_turn ==1) {
A_hp = A_hp - T_attack;
A_turn = 1;
T_turn = 0;
}else if(A_turn == 1) {
T_hp = T_hp - A_attack;
T_turn = 1;
A_turn = 0;
}
}
//}
if(T_hp > 0) {
System.out.println("Yes");
}else if(T_hp <= 0) {
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
17,
11,
1,
41,
13,
17,
2,
13,
17,
1,
40,
13,
30,
30,
0,
18,
13,
13,
4,
18,
13,
42,
2,
2,
18,
13,
17,
17,
2,
18,
13,
17,
17,
30,
0,
18,
13,
17,
2,
18,
13,
17,
18,
13,
17,
14,
2,
18,
13,
17,
17,
30,
4,
18,
18,
13,
13,
17,
3,
0,
18,
13,
17,
2,
18,
13,
17,
18,
13,
17,
14,
2,
18,
13,
17,
17,
30,
4,
18,
18,
13,
13,
17,
3,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
102,
5
],
[
102,
6
],
[
6,
7
],
[
6,
8
],
[
8,
9
],
[
9,
10
],
[
9,
11
],
[
8,
12
],
[
12,
13
],
[
12,
14
],
[
8,
16
],
[
16,
17
],
[
17,
18
],
[
18,
19
],
[
18,
20
],
[
16,
21
],
[
21,
22
],
[
21,
23
],
[
16,
24
],
[
24,
25
],
[
25,
26
],
[
16,
27
],
[
28,
28
],
[
28,
29
],
[
29,
30
],
[
30,
31
],
[
30,
32
],
[
29,
33
],
[
33,
34
],
[
34,
35
],
[
8,
36
],
[
36,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
38,
42
],
[
37,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
43,
47
],
[
36,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
49,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
57,
58
],
[
57,
59
],
[
48,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
60,
66
],
[
66,
67
],
[
67,
68
],
[
68,
69
],
[
69,
70
],
[
69,
71
],
[
67,
72
],
[
66,
73
],
[
48,
74
],
[
74,
75
],
[
75,
76
],
[
75,
77
],
[
74,
78
],
[
78,
79
],
[
79,
80
],
[
79,
81
],
[
78,
82
],
[
82,
83
],
[
82,
84
],
[
48,
85
],
[
85,
86
],
[
86,
87
],
[
87,
88
],
[
87,
89
],
[
86,
90
],
[
85,
91
],
[
91,
92
],
[
92,
93
],
[
93,
94
],
[
94,
95
],
[
94,
96
],
[
92,
97
],
[
91,
98
],
[
6,
99
],
[
99,
100
],
[
0,
101
],
[
101,
102
],
[
101,
103
]
] |
[
"//package atcoder;\n \nimport java.util.*;\n \npublic class Main{\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A[] = new int[4];\n\t\tfor(int i=0;i<4;i++) {\n\t\t\tA[i] = sc.nextInt();\n\t\t\t//System.out.println(A[i]);\n\t\t}\n\t\t\n\t\twhile(A[0]>0||A[2]>0) {\n\t\t\tA[2] = A[2]-A[1];\n\t\t\t//System.out.println(A[2]);\n\t\t\tif(A[2]<=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA[0] = A[0]-A[3];\n\t\t\tif(A[0]<=0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t}\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\tint A[] = new int[4];\n\t\tfor(int i=0;i<4;i++) {\n\t\t\tA[i] = sc.nextInt();\n\t\t\t//System.out.println(A[i]);\n\t\t}\n\t\t\n\t\twhile(A[0]>0||A[2]>0) {\n\t\t\tA[2] = A[2]-A[1];\n\t\t\t//System.out.println(A[2]);\n\t\t\tif(A[2]<=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA[0] = A[0]-A[3];\n\t\t\tif(A[0]<=0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A[] = new int[4];\n\t\tfor(int i=0;i<4;i++) {\n\t\t\tA[i] = sc.nextInt();\n\t\t\t//System.out.println(A[i]);\n\t\t}\n\t\t\n\t\twhile(A[0]>0||A[2]>0) {\n\t\t\tA[2] = A[2]-A[1];\n\t\t\t//System.out.println(A[2]);\n\t\t\tif(A[2]<=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA[0] = A[0]-A[3];\n\t\t\tif(A[0]<=0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t}\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A[] = new int[4];\n\t\tfor(int i=0;i<4;i++) {\n\t\t\tA[i] = sc.nextInt();\n\t\t\t//System.out.println(A[i]);\n\t\t}\n\t\t\n\t\twhile(A[0]>0||A[2]>0) {\n\t\t\tA[2] = A[2]-A[1];\n\t\t\t//System.out.println(A[2]);\n\t\t\tif(A[2]<=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA[0] = A[0]-A[3];\n\t\t\tif(A[0]<=0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t}\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A[] = new int[4];",
"A",
"new int[4]",
"4",
"for(int i=0;i<4;i++) {\n\t\t\tA[i] = sc.nextInt();\n\t\t\t//System.out.println(A[i]);\n\t\t}",
"int i=0;",
"int i=0;",
"i",
"0",
"i<4",
"i",
"4",
"i++",
"i++",
"i",
"{\n\t\t\tA[i] = sc.nextInt();\n\t\t\t//System.out.println(A[i]);\n\t\t}",
"{\n\t\t\tA[i] = sc.nextInt();\n\t\t\t//System.out.println(A[i]);\n\t\t}",
"A[i] = sc.nextInt()",
"A[i]",
"A",
"i",
"sc.nextInt()",
"sc.nextInt",
"sc",
"while(A[0]>0||A[2]>0) {\n\t\t\tA[2] = A[2]-A[1];\n\t\t\t//System.out.println(A[2]);\n\t\t\tif(A[2]<=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA[0] = A[0]-A[3];\n\t\t\tif(A[0]<=0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t}",
"A[0]>0||A[2]>0",
"A[0]>0",
"A[0]",
"A",
"0",
"0",
"A[2]>0",
"A[2]",
"A",
"2",
"0",
"{\n\t\t\tA[2] = A[2]-A[1];\n\t\t\t//System.out.println(A[2]);\n\t\t\tif(A[2]<=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA[0] = A[0]-A[3];\n\t\t\tif(A[0]<=0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t}",
"A[2] = A[2]-A[1]",
"A[2]",
"A",
"2",
"A[2]-A[1]",
"A[2]",
"A",
"2",
"A[1]",
"A",
"1",
"if(A[2]<=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}",
"A[2]<=0",
"A[2]",
"A",
"2",
"0",
"{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"A[0] = A[0]-A[3]",
"A[0]",
"A",
"0",
"A[0]-A[3]",
"A[0]",
"A",
"0",
"A[3]",
"A",
"3",
"if(A[0]<=0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}",
"A[0]<=0",
"A[0]",
"A",
"0",
"0",
"{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"break;",
"String[] args",
"args",
"public class Main{\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A[] = new int[4];\n\t\tfor(int i=0;i<4;i++) {\n\t\t\tA[i] = sc.nextInt();\n\t\t\t//System.out.println(A[i]);\n\t\t}\n\t\t\n\t\twhile(A[0]>0||A[2]>0) {\n\t\t\tA[2] = A[2]-A[1];\n\t\t\t//System.out.println(A[2]);\n\t\t\tif(A[2]<=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA[0] = A[0]-A[3];\n\t\t\tif(A[0]<=0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t}\n\t}\n}",
"public class Main{\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint A[] = new int[4];\n\t\tfor(int i=0;i<4;i++) {\n\t\t\tA[i] = sc.nextInt();\n\t\t\t//System.out.println(A[i]);\n\t\t}\n\t\t\n\t\twhile(A[0]>0||A[2]>0) {\n\t\t\tA[2] = A[2]-A[1];\n\t\t\t//System.out.println(A[2]);\n\t\t\tif(A[2]<=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tA[0] = A[0]-A[3];\n\t\t\tif(A[0]<=0) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t}\n\t}\n}",
"Main"
] |
//package atcoder;
import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A[] = new int[4];
for(int i=0;i<4;i++) {
A[i] = sc.nextInt();
//System.out.println(A[i]);
}
while(A[0]>0||A[2]>0) {
A[2] = A[2]-A[1];
//System.out.println(A[2]);
if(A[2]<=0) {
System.out.println("Yes");
break;
}
A[0] = A[0]-A[3];
if(A[0]<=0) {
System.out.println("No");
break;
}
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
8,
2,
2,
13,
13,
17,
2,
13,
13,
2,
2,
13,
13,
17,
41,
13,
8,
2,
2,
13,
13,
17,
2,
13,
13,
2,
2,
13,
13,
17,
4,
18,
18,
13,
13,
8,
2,
13,
13,
17,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
78,
5
],
[
78,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
35,
39
],
[
34,
40
],
[
40,
41
],
[
40,
42
],
[
34,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
43,
47
],
[
8,
48
],
[
48,
49
],
[
48,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
51,
55
],
[
50,
56
],
[
56,
57
],
[
56,
58
],
[
50,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
59,
63
],
[
8,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
64,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
69,
73
],
[
69,
74
],
[
6,
75
],
[
75,
76
],
[
0,
77
],
[
77,
78
],
[
77,
79
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n int aCount = a % d == 0 ? a / d : a / d + 1;\n int bCount = c % b == 0 ? c / b : c / b + 1;\n System.out.println(aCount >= bCount ? \"Yes\" : \"No\");\n }\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n int aCount = a % d == 0 ? a / d : a / d + 1;\n int bCount = c % b == 0 ? c / b : c / b + 1;\n System.out.println(aCount >= bCount ? \"Yes\" : \"No\");\n }\n\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n int aCount = a % d == 0 ? a / d : a / d + 1;\n int bCount = c % b == 0 ? c / b : c / b + 1;\n System.out.println(aCount >= bCount ? \"Yes\" : \"No\");\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n int aCount = a % d == 0 ? a / d : a / d + 1;\n int bCount = c % b == 0 ? c / b : c / b + 1;\n System.out.println(aCount >= bCount ? \"Yes\" : \"No\");\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b = sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c = sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int d = sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int aCount = a % d == 0 ? a / d : a / d + 1;",
"aCount",
"a % d == 0 ? a / d : a / d + 1",
"a % d == 0",
"a % d",
"a",
"d",
"0",
"a / d",
"a",
"d",
"a / d + 1",
"a / d",
"a",
"d",
"1",
"int bCount = c % b == 0 ? c / b : c / b + 1;",
"bCount",
"c % b == 0 ? c / b : c / b + 1",
"c % b == 0",
"c % b",
"c",
"b",
"0",
"c / b",
"c",
"b",
"c / b + 1",
"c / b",
"c",
"b",
"1",
"System.out.println(aCount >= bCount ? \"Yes\" : \"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"aCount >= bCount ? \"Yes\" : \"No\"",
"aCount >= bCount",
"aCount",
"bCount",
"\"Yes\"",
"\"No\"",
"String[] args",
"args",
"public class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n int aCount = a % d == 0 ? a / d : a / d + 1;\n int bCount = c % b == 0 ? c / b : c / b + 1;\n System.out.println(aCount >= bCount ? \"Yes\" : \"No\");\n }\n\n}",
"public class Main {\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n int aCount = a % d == 0 ? a / d : a / d + 1;\n int bCount = c % b == 0 ? c / b : c / b + 1;\n System.out.println(aCount >= bCount ? \"Yes\" : \"No\");\n }\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();
int b = sc.nextInt();
int c = sc.nextInt();
int d = sc.nextInt();
int aCount = a % d == 0 ? a / d : a / d + 1;
int bCount = c % b == 0 ? c / b : c / b + 1;
System.out.println(aCount >= bCount ? "Yes" : "No");
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
2,
2,
2,
13,
13,
17,
13,
41,
13,
2,
2,
2,
13,
13,
17,
13,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
35,
39
],
[
34,
40
],
[
8,
41
],
[
41,
42
],
[
41,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
44,
48
],
[
43,
49
],
[
8,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
57,
58
],
[
57,
59
],
[
55,
60
],
[
50,
61
],
[
61,
62
],
[
62,
63
],
[
63,
64
],
[
64,
65
],
[
64,
66
],
[
62,
67
],
[
6,
68
],
[
68,
69
]
] |
[
"\n\nimport java.util.Scanner;\nclass Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d= sc.nextInt();\n int x = (b+c-1)/b;\n int y = (d+a-1)/d;\n if(x<=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\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 int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d= sc.nextInt();\n int x = (b+c-1)/b;\n int y = (d+a-1)/d;\n if(x<=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d= sc.nextInt();\n int x = (b+c-1)/b;\n int y = (d+a-1)/d;\n if(x<=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d= sc.nextInt();\n int x = (b+c-1)/b;\n int y = (d+a-1)/d;\n if(x<=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b = sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c = sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int d= sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int x = (b+c-1)/b;",
"x",
"(b+c-1)/b",
"(b+c-1)",
"b+c",
"b",
"c",
"1",
"b",
"int y = (d+a-1)/d;",
"y",
"(d+a-1)/d",
"(d+a-1)",
"d+a",
"d",
"a",
"1",
"d",
"if(x<=y){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }",
"x<=y",
"x",
"y",
"{\n System.out.println(\"Yes\");\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n System.out.println(\"No\");\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args"
] |
import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int d= sc.nextInt();
int x = (b+c-1)/b;
int y = (d+a-1)/d;
if(x<=y){
System.out.println("Yes");
}else{
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
42,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
80,
5
],
[
80,
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
],
[
23,
24
],
[
22,
25
],
[
25,
26
],
[
26,
27
],
[
8,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
31,
32
],
[
30,
33
],
[
33,
34
],
[
34,
35
],
[
8,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
39,
40
],
[
38,
41
],
[
41,
42
],
[
42,
43
],
[
8,
44
],
[
44,
45
],
[
44,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
46,
50
],
[
50,
51
],
[
51,
52
],
[
51,
53
],
[
50,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
57,
58
],
[
57,
59
],
[
55,
60
],
[
54,
61
],
[
46,
62
],
[
62,
63
],
[
62,
64
],
[
46,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
65,
69
],
[
69,
70
],
[
70,
71
],
[
71,
72
],
[
72,
73
],
[
72,
74
],
[
70,
75
],
[
69,
76
],
[
6,
77
],
[
77,
78
],
[
0,
79
],
[
79,
80
],
[
79,
81
]
] |
[
"import java.util.*;\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = Integer.parseInt(scan.next());\n\t\tint b = Integer.parseInt(scan.next());\n\t\tint c = Integer.parseInt(scan.next());\n\t\tint d = Integer.parseInt(scan.next());\n\n\t\twhile(true){\n\t\t\tc -=b;\n\t\t\tif(c <= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\ta -=d;\n\t\t\tif(a <= 0){\n\t\t\t\tSystem.out.print(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t}\n\n}\n//end",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = Integer.parseInt(scan.next());\n\t\tint b = Integer.parseInt(scan.next());\n\t\tint c = Integer.parseInt(scan.next());\n\t\tint d = Integer.parseInt(scan.next());\n\n\t\twhile(true){\n\t\t\tc -=b;\n\t\t\tif(c <= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\ta -=d;\n\t\t\tif(a <= 0){\n\t\t\t\tSystem.out.print(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = Integer.parseInt(scan.next());\n\t\tint b = Integer.parseInt(scan.next());\n\t\tint c = Integer.parseInt(scan.next());\n\t\tint d = Integer.parseInt(scan.next());\n\n\t\twhile(true){\n\t\t\tc -=b;\n\t\t\tif(c <= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\ta -=d;\n\t\t\tif(a <= 0){\n\t\t\t\tSystem.out.print(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t}",
"main",
"{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = Integer.parseInt(scan.next());\n\t\tint b = Integer.parseInt(scan.next());\n\t\tint c = Integer.parseInt(scan.next());\n\t\tint d = Integer.parseInt(scan.next());\n\n\t\twhile(true){\n\t\t\tc -=b;\n\t\t\tif(c <= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\ta -=d;\n\t\t\tif(a <= 0){\n\t\t\t\tSystem.out.print(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t}",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int a = Integer.parseInt(scan.next());",
"a",
"Integer.parseInt(scan.next())",
"Integer.parseInt",
"Integer",
"scan.next()",
"scan.next",
"scan",
"int b = Integer.parseInt(scan.next());",
"b",
"Integer.parseInt(scan.next())",
"Integer.parseInt",
"Integer",
"scan.next()",
"scan.next",
"scan",
"int c = Integer.parseInt(scan.next());",
"c",
"Integer.parseInt(scan.next())",
"Integer.parseInt",
"Integer",
"scan.next()",
"scan.next",
"scan",
"int d = Integer.parseInt(scan.next());",
"d",
"Integer.parseInt(scan.next())",
"Integer.parseInt",
"Integer",
"scan.next()",
"scan.next",
"scan",
"while(true){\n\t\t\tc -=b;\n\t\t\tif(c <= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\ta -=d;\n\t\t\tif(a <= 0){\n\t\t\t\tSystem.out.print(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}",
"true",
"{\n\t\t\tc -=b;\n\t\t\tif(c <= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\ta -=d;\n\t\t\tif(a <= 0){\n\t\t\t\tSystem.out.print(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}",
"c -=b",
"c",
"b",
"if(c <= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}",
"c <= 0",
"c",
"0",
"{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"a -=d",
"a",
"d",
"if(a <= 0){\n\t\t\t\tSystem.out.print(\"No\");\n\t\t\t\tbreak;\n\t\t\t}",
"a <= 0",
"a",
"0",
"{\n\t\t\t\tSystem.out.print(\"No\");\n\t\t\t\tbreak;\n\t\t\t}",
"System.out.print(\"No\")",
"System.out.print",
"System.out",
"System",
"System.out",
"\"No\"",
"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 a = Integer.parseInt(scan.next());\n\t\tint b = Integer.parseInt(scan.next());\n\t\tint c = Integer.parseInt(scan.next());\n\t\tint d = Integer.parseInt(scan.next());\n\n\t\twhile(true){\n\t\t\tc -=b;\n\t\t\tif(c <= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\ta -=d;\n\t\t\tif(a <= 0){\n\t\t\t\tSystem.out.print(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t}\n\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = Integer.parseInt(scan.next());\n\t\tint b = Integer.parseInt(scan.next());\n\t\tint c = Integer.parseInt(scan.next());\n\t\tint d = Integer.parseInt(scan.next());\n\n\t\twhile(true){\n\t\t\tc -=b;\n\t\t\tif(c <= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\ta -=d;\n\t\t\tif(a <= 0){\n\t\t\t\tSystem.out.print(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t}\n\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int a = Integer.parseInt(scan.next());
int b = Integer.parseInt(scan.next());
int c = Integer.parseInt(scan.next());
int d = Integer.parseInt(scan.next());
while(true){
c -=b;
if(c <= 0){
System.out.println("Yes");
break;
}
a -=d;
if(a <= 0){
System.out.print("No");
break;
}
}
}
}
//end
|
[
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,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
2,
2,
2,
13,
13,
17,
13,
41,
13,
2,
2,
2,
13,
13,
17,
13,
4,
18,
18,
13,
13,
8,
2,
13,
13,
17,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
67,
8
],
[
67,
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
],
[
11,
25
],
[
25,
26
],
[
25,
27
],
[
27,
28
],
[
28,
29
],
[
11,
30
],
[
30,
31
],
[
30,
32
],
[
32,
33
],
[
33,
34
],
[
11,
35
],
[
35,
36
],
[
35,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
38,
42
],
[
37,
43
],
[
11,
44
],
[
44,
45
],
[
44,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
47,
51
],
[
46,
52
],
[
11,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
55,
57
],
[
53,
58
],
[
58,
59
],
[
59,
60
],
[
59,
61
],
[
58,
62
],
[
58,
63
],
[
9,
64
],
[
64,
65
],
[
0,
66
],
[
66,
67
],
[
66,
68
]
] |
[
"import java.util.*;\nimport java.io.*;\n\npublic class Main{\n public static void main(String[] args)throws Exception{\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n int X = (B+C-1)/B;\n int Y = (A+D-1)/D;\n System.out.println(X<=Y ? \"Yes\" : \"No\");\n }\n}",
"import java.util.*;",
"util.*",
"java",
"import java.io.*;",
"io.*",
"java",
"public class Main{\n public static void main(String[] args)throws Exception{\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n int X = (B+C-1)/B;\n int Y = (A+D-1)/D;\n System.out.println(X<=Y ? \"Yes\" : \"No\");\n }\n}",
"Main",
"public static void main(String[] args)throws Exception{\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n int X = (B+C-1)/B;\n int Y = (A+D-1)/D;\n System.out.println(X<=Y ? \"Yes\" : \"No\");\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n int X = (B+C-1)/B;\n int Y = (A+D-1)/D;\n System.out.println(X<=Y ? \"Yes\" : \"No\");\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int X = (B+C-1)/B;",
"X",
"(B+C-1)/B",
"(B+C-1)",
"B+C",
"B",
"C",
"1",
"B",
"int Y = (A+D-1)/D;",
"Y",
"(A+D-1)/D",
"(A+D-1)",
"A+D",
"A",
"D",
"1",
"D",
"System.out.println(X<=Y ? \"Yes\" : \"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"X<=Y ? \"Yes\" : \"No\"",
"X<=Y",
"X",
"Y",
"\"Yes\"",
"\"No\"",
"String[] args",
"args",
"public class Main{\n public static void main(String[] args)throws Exception{\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n int X = (B+C-1)/B;\n int Y = (A+D-1)/D;\n System.out.println(X<=Y ? \"Yes\" : \"No\");\n }\n}",
"public class Main{\n public static void main(String[] args)throws Exception{\n Scanner sc = new Scanner(System.in);\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n \n int X = (B+C-1)/B;\n int Y = (A+D-1)/D;\n System.out.println(X<=Y ? \"Yes\" : \"No\");\n }\n}",
"Main"
] |
import java.util.*;
import java.io.*;
public class Main{
public static void main(String[] args)throws Exception{
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
int X = (B+C-1)/B;
int Y = (A+D-1)/D;
System.out.println(X<=Y ? "Yes" : "No");
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
17,
30,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
0,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
35,
37
],
[
34,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
38,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
43,
48
],
[
42,
49
],
[
34,
50
],
[
50,
51
],
[
50,
52
],
[
34,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
53,
57
],
[
57,
58
],
[
58,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
58,
63
],
[
57,
64
],
[
6,
65
],
[
65,
66
]
] |
[
"import java.util.*;\nclass Main\n{\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint H1 = sc.nextInt();\n\t\tint A1 = sc.nextInt();\n\t\tint H2 = sc.nextInt();\n\t\tint A2 = sc.nextInt();\n\t\t\n\t\twhile(true)\n\t\t{\n\t\t\tH2 -= A1;\n\t\t\tif(H2 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t\tH1 -= A2;\n\t\t\tif(H1 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"class Main\n{\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint H1 = sc.nextInt();\n\t\tint A1 = sc.nextInt();\n\t\tint H2 = sc.nextInt();\n\t\tint A2 = sc.nextInt();\n\t\t\n\t\twhile(true)\n\t\t{\n\t\t\tH2 -= A1;\n\t\t\tif(H2 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t\tH1 -= A2;\n\t\t\tif(H1 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args)\n\t{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint H1 = sc.nextInt();\n\t\tint A1 = sc.nextInt();\n\t\tint H2 = sc.nextInt();\n\t\tint A2 = sc.nextInt();\n\t\t\n\t\twhile(true)\n\t\t{\n\t\t\tH2 -= A1;\n\t\t\tif(H2 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t\tH1 -= A2;\n\t\t\tif(H1 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint H1 = sc.nextInt();\n\t\tint A1 = sc.nextInt();\n\t\tint H2 = sc.nextInt();\n\t\tint A2 = sc.nextInt();\n\t\t\n\t\twhile(true)\n\t\t{\n\t\t\tH2 -= A1;\n\t\t\tif(H2 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t\tH1 -= A2;\n\t\t\tif(H1 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int H1 = sc.nextInt();",
"H1",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int A1 = sc.nextInt();",
"A1",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int H2 = sc.nextInt();",
"H2",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int A2 = sc.nextInt();",
"A2",
"sc.nextInt()",
"sc.nextInt",
"sc",
"while(true)\n\t\t{\n\t\t\tH2 -= A1;\n\t\t\tif(H2 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t\tH1 -= A2;\n\t\t\tif(H1 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}",
"true",
"{\n\t\t\tH2 -= A1;\n\t\t\tif(H2 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\t\n\t\t\tH1 -= A2;\n\t\t\tif(H1 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}",
"H2 -= A1",
"H2",
"A1",
"if(H2 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}",
"H2 <= 0",
"H2",
"0",
"{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\tbreak;\n\t\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"H1 -= A2",
"H1",
"A2",
"if(H1 <= 0)\n\t\t\t{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}",
"H1 <= 0",
"H1",
"0",
"{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\tbreak;\n\t\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"break;",
"String[] args",
"args"
] |
import java.util.*;
class Main
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
int H1 = sc.nextInt();
int A1 = sc.nextInt();
int H2 = sc.nextInt();
int A2 = sc.nextInt();
while(true)
{
H2 -= A1;
if(H2 <= 0)
{
System.out.println("Yes");
break;
}
H1 -= A2;
if(H1 <= 0)
{
System.out.println("No");
break;
}
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
2,
13,
13,
14,
2,
13,
17,
3,
0,
13,
2,
13,
13,
14,
2,
13,
17,
4,
18,
18,
13,
13,
17,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
75,
5
],
[
75,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
37,
38
],
[
37,
39
],
[
32,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
43,
44
],
[
43,
45
],
[
40,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
46,
50
],
[
40,
51
],
[
51,
52
],
[
51,
53
],
[
53,
54
],
[
53,
55
],
[
8,
56
],
[
56,
57
],
[
57,
58
],
[
57,
59
],
[
56,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
60,
65
],
[
56,
66
],
[
66,
67
],
[
67,
68
],
[
68,
69
],
[
68,
70
],
[
66,
71
],
[
6,
72
],
[
72,
73
],
[
0,
74
],
[
74,
75
],
[
74,
76
]
] |
[
"import java.util.Scanner;\npublic class Main{\n\n\tpublic static void main(String[] args) {\n\t\tScanner stdIn=new Scanner(System.in);\n\t\tint A=stdIn.nextInt();\n\t\tint B=stdIn.nextInt();\n\t\tint C=stdIn.nextInt();\n\t\tint D=stdIn.nextInt();\n\t\t\n\t\twhile(A>0&&C>0) {\n\t\t\tC=C-B;\n\t\t\tif(C<=0)break;\n\t\t\tA=A-D;\n\t\t}\n\t\tif(A<=0)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");\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\tScanner stdIn=new Scanner(System.in);\n\t\tint A=stdIn.nextInt();\n\t\tint B=stdIn.nextInt();\n\t\tint C=stdIn.nextInt();\n\t\tint D=stdIn.nextInt();\n\t\t\n\t\twhile(A>0&&C>0) {\n\t\t\tC=C-B;\n\t\t\tif(C<=0)break;\n\t\t\tA=A-D;\n\t\t}\n\t\tif(A<=0)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");\n\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner stdIn=new Scanner(System.in);\n\t\tint A=stdIn.nextInt();\n\t\tint B=stdIn.nextInt();\n\t\tint C=stdIn.nextInt();\n\t\tint D=stdIn.nextInt();\n\t\t\n\t\twhile(A>0&&C>0) {\n\t\t\tC=C-B;\n\t\t\tif(C<=0)break;\n\t\t\tA=A-D;\n\t\t}\n\t\tif(A<=0)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");\n\n\t}",
"main",
"{\n\t\tScanner stdIn=new Scanner(System.in);\n\t\tint A=stdIn.nextInt();\n\t\tint B=stdIn.nextInt();\n\t\tint C=stdIn.nextInt();\n\t\tint D=stdIn.nextInt();\n\t\t\n\t\twhile(A>0&&C>0) {\n\t\t\tC=C-B;\n\t\t\tif(C<=0)break;\n\t\t\tA=A-D;\n\t\t}\n\t\tif(A<=0)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");\n\n\t}",
"Scanner stdIn=new Scanner(System.in);",
"stdIn",
"new Scanner(System.in)",
"int A=stdIn.nextInt();",
"A",
"stdIn.nextInt()",
"stdIn.nextInt",
"stdIn",
"int B=stdIn.nextInt();",
"B",
"stdIn.nextInt()",
"stdIn.nextInt",
"stdIn",
"int C=stdIn.nextInt();",
"C",
"stdIn.nextInt()",
"stdIn.nextInt",
"stdIn",
"int D=stdIn.nextInt();",
"D",
"stdIn.nextInt()",
"stdIn.nextInt",
"stdIn",
"while(A>0&&C>0) {\n\t\t\tC=C-B;\n\t\t\tif(C<=0)break;\n\t\t\tA=A-D;\n\t\t}",
"A>0&&C>0",
"A>0",
"A",
"0",
"C>0",
"C",
"0",
"{\n\t\t\tC=C-B;\n\t\t\tif(C<=0)break;\n\t\t\tA=A-D;\n\t\t}",
"C=C-B",
"C",
"C-B",
"C",
"B",
"if(C<=0)break;",
"C<=0",
"C",
"0",
"break;",
"A=A-D",
"A",
"A-D",
"A",
"D",
"if(A<=0)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");",
"A<=0",
"A",
"0",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"String[] args",
"args",
"public class Main{\n\n\tpublic static void main(String[] args) {\n\t\tScanner stdIn=new Scanner(System.in);\n\t\tint A=stdIn.nextInt();\n\t\tint B=stdIn.nextInt();\n\t\tint C=stdIn.nextInt();\n\t\tint D=stdIn.nextInt();\n\t\t\n\t\twhile(A>0&&C>0) {\n\t\t\tC=C-B;\n\t\t\tif(C<=0)break;\n\t\t\tA=A-D;\n\t\t}\n\t\tif(A<=0)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");\n\n\t}\n\n}",
"public class Main{\n\n\tpublic static void main(String[] args) {\n\t\tScanner stdIn=new Scanner(System.in);\n\t\tint A=stdIn.nextInt();\n\t\tint B=stdIn.nextInt();\n\t\tint C=stdIn.nextInt();\n\t\tint D=stdIn.nextInt();\n\t\t\n\t\twhile(A>0&&C>0) {\n\t\t\tC=C-B;\n\t\t\tif(C<=0)break;\n\t\t\tA=A-D;\n\t\t}\n\t\tif(A<=0)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");\n\n\t}\n\n}",
"Main"
] |
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner stdIn=new Scanner(System.in);
int A=stdIn.nextInt();
int B=stdIn.nextInt();
int C=stdIn.nextInt();
int D=stdIn.nextInt();
while(A>0&&C>0) {
C=C-B;
if(C<=0)break;
A=A-D;
}
if(A<=0)
System.out.println("No");
else
System.out.println("Yes");
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
42,
2,
2,
13,
17,
2,
13,
17,
30,
0,
13,
2,
13,
13,
14,
2,
13,
17,
3,
0,
13,
2,
13,
13,
14,
2,
2,
13,
17,
2,
13,
17,
4,
18,
18,
13,
13,
17,
4,
18,
18,
13,
13,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
33,
37
],
[
37,
38
],
[
37,
39
],
[
32,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
43,
44
],
[
43,
45
],
[
40,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
46,
50
],
[
40,
51
],
[
51,
52
],
[
51,
53
],
[
53,
54
],
[
53,
55
],
[
8,
56
],
[
56,
57
],
[
57,
58
],
[
58,
59
],
[
58,
60
],
[
57,
61
],
[
61,
62
],
[
61,
63
],
[
56,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
64,
69
],
[
56,
70
],
[
70,
71
],
[
71,
72
],
[
72,
73
],
[
72,
74
],
[
70,
75
],
[
6,
76
],
[
76,
77
]
] |
[
"/*\n * To change this license header, choose License Headers in Project Properties.\n * To change this template file, choose Tools | Templates\n * and open the template in the editor.\n */\n\nimport java.util.*;\n\n/**\n *\n * @author Admin\n */\n class Main {\n \n \n public static void main(String args[])\n {\n Scanner s=new Scanner(System.in);\n \n int a=s.nextInt();\n \n int b=s.nextInt();\n \n int c=s.nextInt();\n \n int d=s.nextInt();\n \n \n while(a>0 && c>0)\n {\n \n c=c-b;\n if(c<=0)\n break;\n \n a=a-d;\n \n }\n \n if(a>0 && c<=0)\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\");\n \n \n \n }\n \n \n}",
"import java.util.*;",
"util.*",
"java",
" class Main {\n \n \n public static void main(String args[])\n {\n Scanner s=new Scanner(System.in);\n \n int a=s.nextInt();\n \n int b=s.nextInt();\n \n int c=s.nextInt();\n \n int d=s.nextInt();\n \n \n while(a>0 && c>0)\n {\n \n c=c-b;\n if(c<=0)\n break;\n \n a=a-d;\n \n }\n \n if(a>0 && c<=0)\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\");\n \n \n \n }\n \n \n}",
"Main",
"public static void main(String args[])\n {\n Scanner s=new Scanner(System.in);\n \n int a=s.nextInt();\n \n int b=s.nextInt();\n \n int c=s.nextInt();\n \n int d=s.nextInt();\n \n \n while(a>0 && c>0)\n {\n \n c=c-b;\n if(c<=0)\n break;\n \n a=a-d;\n \n }\n \n if(a>0 && c<=0)\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\");\n \n \n \n }",
"main",
"{\n Scanner s=new Scanner(System.in);\n \n int a=s.nextInt();\n \n int b=s.nextInt();\n \n int c=s.nextInt();\n \n int d=s.nextInt();\n \n \n while(a>0 && c>0)\n {\n \n c=c-b;\n if(c<=0)\n break;\n \n a=a-d;\n \n }\n \n if(a>0 && c<=0)\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\");\n \n \n \n }",
"Scanner s=new Scanner(System.in);",
"s",
"new Scanner(System.in)",
"int a=s.nextInt();",
"a",
"s.nextInt()",
"s.nextInt",
"s",
"int b=s.nextInt();",
"b",
"s.nextInt()",
"s.nextInt",
"s",
"int c=s.nextInt();",
"c",
"s.nextInt()",
"s.nextInt",
"s",
"int d=s.nextInt();",
"d",
"s.nextInt()",
"s.nextInt",
"s",
"while(a>0 && c>0)\n {\n \n c=c-b;\n if(c<=0)\n break;\n \n a=a-d;\n \n }",
"a>0 && c>0",
"a>0",
"a",
"0",
"c>0",
"c",
"0",
"{\n \n c=c-b;\n if(c<=0)\n break;\n \n a=a-d;\n \n }",
"c=c-b",
"c",
"c-b",
"c",
"b",
"if(c<=0)\n break;",
"c<=0",
"c",
"0",
"break;",
"a=a-d",
"a",
"a-d",
"a",
"d",
"if(a>0 && c<=0)\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\");",
"a>0 && c<=0",
"a>0",
"a",
"0",
"c<=0",
"c",
"0",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String args[]",
"args"
] |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
import java.util.*;
/**
*
* @author Admin
*/
class Main {
public static void main(String args[])
{
Scanner s=new Scanner(System.in);
int a=s.nextInt();
int b=s.nextInt();
int c=s.nextInt();
int d=s.nextInt();
while(a>0 && c>0)
{
c=c-b;
if(c<=0)
break;
a=a-d;
}
if(a>0 && c<=0)
System.out.println("Yes");
else
System.out.println("No");
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
2,
13,
13,
4,
18,
18,
13,
13,
8,
2,
2,
13,
2,
13,
17,
13,
17,
17,
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
],
[
20,
21
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
34,
37
],
[
37,
38
],
[
37,
39
],
[
8,
40
],
[
40,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
40,
45
],
[
45,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
49,
50
],
[
49,
51
],
[
46,
52
],
[
45,
53
],
[
45,
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 sc = new Scanner(System.in);\n int a = sc.nextInt(), b = sc.nextInt(), c = sc.nextInt(), d = sc.nextInt();\n int x = (int)Math.ceil((double)c / b);\n System.out.println(d * (x - 1) < a ? \"Yes\" : \"No\");\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 a = sc.nextInt(), b = sc.nextInt(), c = sc.nextInt(), d = sc.nextInt();\n int x = (int)Math.ceil((double)c / b);\n System.out.println(d * (x - 1) < a ? \"Yes\" : \"No\");\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt(), b = sc.nextInt(), c = sc.nextInt(), d = sc.nextInt();\n int x = (int)Math.ceil((double)c / b);\n System.out.println(d * (x - 1) < a ? \"Yes\" : \"No\");\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt(), b = sc.nextInt(), c = sc.nextInt(), d = sc.nextInt();\n int x = (int)Math.ceil((double)c / b);\n System.out.println(d * (x - 1) < a ? \"Yes\" : \"No\");\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = sc.nextInt()",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"b = sc.nextInt()",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"c = sc.nextInt()",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"d = sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int x = (int)Math.ceil((double)c / b);",
"x",
"(int)Math.ceil((double)c / b)",
"Math.ceil",
"Math",
"(double)c / b",
"(double)c",
"b",
"System.out.println(d * (x - 1) < a ? \"Yes\" : \"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"d * (x - 1) < a ? \"Yes\" : \"No\"",
"d * (x - 1) < a",
"d * (x - 1)",
"d",
"(x - 1)",
"x",
"1",
"a",
"\"Yes\"",
"\"No\"",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt(), b = sc.nextInt(), c = sc.nextInt(), d = sc.nextInt();\n int x = (int)Math.ceil((double)c / b);\n System.out.println(d * (x - 1) < a ? \"Yes\" : \"No\");\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt(), b = sc.nextInt(), c = sc.nextInt(), d = sc.nextInt();\n int x = (int)Math.ceil((double)c / b);\n System.out.println(d * (x - 1) < a ? \"Yes\" : \"No\");\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(), b = sc.nextInt(), c = sc.nextInt(), d = sc.nextInt();
int x = (int)Math.ceil((double)c / b);
System.out.println(d * (x - 1) < a ? "Yes" : "No");
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
4,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
4,
18,
13,
18,
13,
17,
41,
13,
17,
11,
1,
41,
13,
17,
2,
13,
17,
1,
40,
13,
30,
30,
0,
13,
13,
40,
13,
14,
2,
13,
17,
30,
3,
0,
13,
13,
40,
13,
14,
2,
13,
17,
30,
3,
4,
18,
13,
8,
2,
2,
13,
17,
17,
17,
17,
4,
18,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
0,
7
],
[
113,
8
],
[
113,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
11,
15
],
[
15,
16
],
[
15,
17
],
[
11,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
23,
24
],
[
20,
25
],
[
11,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
28,
31
],
[
31,
32
],
[
31,
33
],
[
11,
34
],
[
34,
35
],
[
34,
36
],
[
36,
37
],
[
37,
38
],
[
36,
39
],
[
39,
40
],
[
39,
41
],
[
11,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
44,
47
],
[
47,
48
],
[
47,
49
],
[
11,
50
],
[
50,
51
],
[
50,
52
],
[
52,
53
],
[
53,
54
],
[
52,
55
],
[
55,
56
],
[
55,
57
],
[
11,
58
],
[
58,
59
],
[
58,
60
],
[
11,
61
],
[
61,
62
],
[
62,
63
],
[
63,
64
],
[
63,
65
],
[
61,
66
],
[
66,
67
],
[
66,
68
],
[
61,
69
],
[
69,
70
],
[
70,
71
],
[
61,
72
],
[
73,
73
],
[
73,
74
],
[
74,
75
],
[
74,
76
],
[
73,
77
],
[
77,
78
],
[
73,
79
],
[
79,
80
],
[
80,
81
],
[
80,
82
],
[
79,
83
],
[
83,
84
],
[
73,
85
],
[
85,
86
],
[
85,
87
],
[
73,
88
],
[
88,
89
],
[
73,
90
],
[
90,
91
],
[
91,
92
],
[
91,
93
],
[
90,
94
],
[
94,
95
],
[
11,
96
],
[
96,
97
],
[
97,
98
],
[
96,
99
],
[
99,
100
],
[
100,
101
],
[
101,
102
],
[
101,
103
],
[
100,
104
],
[
99,
105
],
[
99,
106
],
[
11,
107
],
[
107,
108
],
[
108,
109
],
[
9,
110
],
[
110,
111
],
[
0,
112
],
[
112,
113
],
[
112,
114
]
] |
[
"import java.util.*;\nimport java.io.*;\n\npublic class Main {\n public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n int count = 0;\n \n for(int i = 0; i < 200; i++){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n break;\n }\n }\n \n out.println(count % 2 != 0 ? \"Yes\" : \"No\");\n out.close();\n \n }\n}",
"import java.util.*;",
"util.*",
"java",
"import java.io.*;",
"io.*",
"java",
"public class Main {\n public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n int count = 0;\n \n for(int i = 0; i < 200; i++){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n break;\n }\n }\n \n out.println(count % 2 != 0 ? \"Yes\" : \"No\");\n out.close();\n \n }\n}",
"Main",
"public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n int count = 0;\n \n for(int i = 0; i < 200; i++){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n break;\n }\n }\n \n out.println(count % 2 != 0 ? \"Yes\" : \"No\");\n out.close();\n \n }",
"main",
"{\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n int count = 0;\n \n for(int i = 0; i < 200; i++){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n break;\n }\n }\n \n out.println(count % 2 != 0 ? \"Yes\" : \"No\");\n out.close();\n \n }",
"BufferedReader br = new BufferedReader(new InputStreamReader(System.in));",
"br",
"new BufferedReader(new InputStreamReader(System.in))",
"PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));",
"out",
"new PrintWriter(new OutputStreamWriter(System.out))",
"String[] str = br.readLine().split(\" \");",
"str",
"br.readLine().split(\" \")",
"br.readLine().split",
"br.readLine()",
"br.readLine",
"br",
"\" \"",
"int tHP = Integer.parseInt(str[0]);",
"tHP",
"Integer.parseInt(str[0])",
"Integer.parseInt",
"Integer",
"str[0]",
"str",
"0",
"int tATK = Integer.parseInt(str[1]);",
"tATK",
"Integer.parseInt(str[1])",
"Integer.parseInt",
"Integer",
"str[1]",
"str",
"1",
"int aHP = Integer.parseInt(str[2]);",
"aHP",
"Integer.parseInt(str[2])",
"Integer.parseInt",
"Integer",
"str[2]",
"str",
"2",
"int aATK = Integer.parseInt(str[3]);",
"aATK",
"Integer.parseInt(str[3])",
"Integer.parseInt",
"Integer",
"str[3]",
"str",
"3",
"int count = 0;",
"count",
"0",
"for(int i = 0; i < 200; i++){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n break;\n }\n }",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < 200",
"i",
"200",
"i++",
"i++",
"i",
"{\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n break;\n }\n }",
"{\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n break;\n }\n }",
"aHP -= tATK",
"aHP",
"tATK",
"count++",
"count",
"if(aHP <= 0){\n break;\n }",
"aHP <= 0",
"aHP",
"0",
"{\n break;\n }",
"break;",
"tHP -= aATK",
"tHP",
"aATK",
"count++",
"count",
"if(tHP <= 0){\n break;\n }",
"tHP <= 0",
"tHP",
"0",
"{\n break;\n }",
"break;",
"out.println(count % 2 != 0 ? \"Yes\" : \"No\")",
"out.println",
"out",
"count % 2 != 0 ? \"Yes\" : \"No\"",
"count % 2 != 0",
"count % 2",
"count",
"2",
"0",
"\"Yes\"",
"\"No\"",
"out.close()",
"out.close",
"out",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n int count = 0;\n \n for(int i = 0; i < 200; i++){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n break;\n }\n }\n \n out.println(count % 2 != 0 ? \"Yes\" : \"No\");\n out.close();\n \n }\n}",
"public class Main {\n public static void main(String[] args) throws Exception {\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));\n \n String[] str = br.readLine().split(\" \");\n int tHP = Integer.parseInt(str[0]);\n int tATK = Integer.parseInt(str[1]);\n int aHP = Integer.parseInt(str[2]);\n int aATK = Integer.parseInt(str[3]);\n int count = 0;\n \n for(int i = 0; i < 200; i++){\n aHP -= tATK;\n count++;\n if(aHP <= 0){\n break;\n }\n tHP -= aATK;\n count++;\n if(tHP <= 0){\n break;\n }\n }\n \n out.println(count % 2 != 0 ? \"Yes\" : \"No\");\n out.close();\n \n }\n}",
"Main"
] |
import java.util.*;
import java.io.*;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));
String[] str = br.readLine().split(" ");
int tHP = Integer.parseInt(str[0]);
int tATK = Integer.parseInt(str[1]);
int aHP = Integer.parseInt(str[2]);
int aATK = Integer.parseInt(str[3]);
int count = 0;
for(int i = 0; i < 200; i++){
aHP -= tATK;
count++;
if(aHP <= 0){
break;
}
tHP -= aATK;
count++;
if(tHP <= 0){
break;
}
}
out.println(count % 2 != 0 ? "Yes" : "No");
out.close();
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
8,
2,
2,
13,
13,
17,
2,
13,
13,
2,
2,
13,
13,
17,
41,
13,
8,
2,
2,
13,
13,
17,
2,
13,
13,
2,
2,
13,
13,
17,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
85,
5
],
[
85,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
35,
39
],
[
34,
40
],
[
40,
41
],
[
40,
42
],
[
34,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
43,
47
],
[
8,
48
],
[
48,
49
],
[
48,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
51,
55
],
[
50,
56
],
[
56,
57
],
[
56,
58
],
[
50,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
59,
63
],
[
8,
64
],
[
64,
65
],
[
65,
66
],
[
65,
67
],
[
64,
68
],
[
68,
69
],
[
69,
70
],
[
70,
71
],
[
71,
72
],
[
71,
73
],
[
69,
74
],
[
64,
75
],
[
75,
76
],
[
76,
77
],
[
77,
78
],
[
78,
79
],
[
78,
80
],
[
76,
81
],
[
6,
82
],
[
82,
83
],
[
0,
84
],
[
84,
85
],
[
84,
86
]
] |
[
"import java.util.*;\n\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n\n int t_life = sc.nextInt();\n int t_attack = sc.nextInt();\n int a_life = sc.nextInt();\n int a_attack = sc.nextInt();\n\n int ans1 = a_life % t_attack == 0 ? a_life / t_attack : (a_life / t_attack) + 1;\n int ans2 = t_life % a_attack == 0 ? t_life / a_attack : (t_life / a_attack) + 1;\n\n if (ans1 <= ans2) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\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\n int t_life = sc.nextInt();\n int t_attack = sc.nextInt();\n int a_life = sc.nextInt();\n int a_attack = sc.nextInt();\n\n int ans1 = a_life % t_attack == 0 ? a_life / t_attack : (a_life / t_attack) + 1;\n int ans2 = t_life % a_attack == 0 ? t_life / a_attack : (t_life / a_attack) + 1;\n\n if (ans1 <= ans2) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n\n int t_life = sc.nextInt();\n int t_attack = sc.nextInt();\n int a_life = sc.nextInt();\n int a_attack = sc.nextInt();\n\n int ans1 = a_life % t_attack == 0 ? a_life / t_attack : (a_life / t_attack) + 1;\n int ans2 = t_life % a_attack == 0 ? t_life / a_attack : (t_life / a_attack) + 1;\n\n if (ans1 <= ans2) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n\n int t_life = sc.nextInt();\n int t_attack = sc.nextInt();\n int a_life = sc.nextInt();\n int a_attack = sc.nextInt();\n\n int ans1 = a_life % t_attack == 0 ? a_life / t_attack : (a_life / t_attack) + 1;\n int ans2 = t_life % a_attack == 0 ? t_life / a_attack : (t_life / a_attack) + 1;\n\n if (ans1 <= ans2) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int t_life = sc.nextInt();",
"t_life",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int t_attack = sc.nextInt();",
"t_attack",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int a_life = sc.nextInt();",
"a_life",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int a_attack = sc.nextInt();",
"a_attack",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int ans1 = a_life % t_attack == 0 ? a_life / t_attack : (a_life / t_attack) + 1;",
"ans1",
"a_life % t_attack == 0 ? a_life / t_attack : (a_life / t_attack) + 1",
"a_life % t_attack == 0",
"a_life % t_attack",
"a_life",
"t_attack",
"0",
"a_life / t_attack",
"a_life",
"t_attack",
"(a_life / t_attack) + 1",
"(a_life / t_attack)",
"a_life",
"t_attack",
"1",
"int ans2 = t_life % a_attack == 0 ? t_life / a_attack : (t_life / a_attack) + 1;",
"ans2",
"t_life % a_attack == 0 ? t_life / a_attack : (t_life / a_attack) + 1",
"t_life % a_attack == 0",
"t_life % a_attack",
"t_life",
"a_attack",
"0",
"t_life / a_attack",
"t_life",
"a_attack",
"(t_life / a_attack) + 1",
"(t_life / a_attack)",
"t_life",
"a_attack",
"1",
"if (ans1 <= ans2) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }",
"ans1 <= ans2",
"ans1",
"ans2",
"{\n System.out.println(\"Yes\");\n }",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n System.out.println(\"No\");\n }",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n\n int t_life = sc.nextInt();\n int t_attack = sc.nextInt();\n int a_life = sc.nextInt();\n int a_attack = sc.nextInt();\n\n int ans1 = a_life % t_attack == 0 ? a_life / t_attack : (a_life / t_attack) + 1;\n int ans2 = t_life % a_attack == 0 ? t_life / a_attack : (t_life / a_attack) + 1;\n\n if (ans1 <= ans2) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n\n int t_life = sc.nextInt();\n int t_attack = sc.nextInt();\n int a_life = sc.nextInt();\n int a_attack = sc.nextInt();\n\n int ans1 = a_life % t_attack == 0 ? a_life / t_attack : (a_life / t_attack) + 1;\n int ans2 = t_life % a_attack == 0 ? t_life / a_attack : (t_life / a_attack) + 1;\n\n if (ans1 <= ans2) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int t_life = sc.nextInt();
int t_attack = sc.nextInt();
int a_life = sc.nextInt();
int a_attack = sc.nextInt();
int ans1 = a_life % t_attack == 0 ? a_life / t_attack : (a_life / t_attack) + 1;
int ans2 = t_life % a_attack == 0 ? t_life / a_attack : (t_life / a_attack) + 1;
if (ans1 <= ans2) {
System.out.println("Yes");
} else {
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
41,
13,
17,
41,
13,
17,
41,
13,
17,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
18,
13,
13,
8,
4,
13,
13,
13,
13,
13,
13,
13,
23,
13,
12,
13,
30,
42,
17,
30,
0,
13,
13,
14,
2,
13,
17,
29,
17,
0,
13,
13,
14,
2,
13,
17,
29,
17,
23,
13,
23,
13,
23,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
90,
5
],
[
90,
6
],
[
6,
7
],
[
6,
8
],
[
90,
9
],
[
9,
10
],
[
9,
11
],
[
90,
12
],
[
12,
13
],
[
12,
14
],
[
90,
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
],
[
29,
30
],
[
17,
31
],
[
31,
32
],
[
31,
33
],
[
33,
34
],
[
34,
35
],
[
17,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
39,
40
],
[
17,
41
],
[
41,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
41,
46
],
[
46,
47
],
[
47,
48
],
[
47,
49
],
[
47,
50
],
[
47,
51
],
[
47,
52
],
[
46,
53
],
[
46,
54
],
[
15,
55
],
[
55,
56
],
[
90,
57
],
[
57,
58
],
[
57,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
62,
63
],
[
63,
64
],
[
63,
65
],
[
62,
66
],
[
66,
67
],
[
67,
68
],
[
67,
69
],
[
66,
70
],
[
70,
71
],
[
62,
72
],
[
72,
73
],
[
72,
74
],
[
62,
75
],
[
75,
76
],
[
76,
77
],
[
76,
78
],
[
75,
79
],
[
79,
80
],
[
57,
81
],
[
81,
82
],
[
57,
83
],
[
83,
84
],
[
57,
85
],
[
85,
86
],
[
57,
87
],
[
87,
88
],
[
0,
89
],
[
89,
90
],
[
89,
91
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n private static final int MOD = 1_000_000_007;\n private static final String YES = \"Yes\";\n private static final String NO = \"No\";\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n\n System.out.println(solve(A, B, C, D) ? YES : NO);\n }\n\n private static boolean solve(int A, int B, int C, int D) {\n while (true) {\n C -= B;\n if (C <= 0) return true;\n\n A -= D;\n if (A <= 0) return false;\n }\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n private static final int MOD = 1_000_000_007;\n private static final String YES = \"Yes\";\n private static final String NO = \"No\";\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n\n System.out.println(solve(A, B, C, D) ? YES : NO);\n }\n\n private static boolean solve(int A, int B, int C, int D) {\n while (true) {\n C -= B;\n if (C <= 0) return true;\n\n A -= D;\n if (A <= 0) return false;\n }\n }\n}",
"Main",
"private static final int MOD = 1_000_000_007;",
"MOD",
"1_000_000_007",
"private static final String YES = \"Yes\";",
"YES",
"\"Yes\"",
"private static final String NO = \"No\";",
"NO",
"\"No\"",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n\n System.out.println(solve(A, B, C, D) ? YES : NO);\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n\n System.out.println(solve(A, B, C, D) ? YES : NO);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int A = sc.nextInt();",
"A",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int B = sc.nextInt();",
"B",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int C = sc.nextInt();",
"C",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int D = sc.nextInt();",
"D",
"sc.nextInt()",
"sc.nextInt",
"sc",
"System.out.println(solve(A, B, C, D) ? YES : NO)",
"System.out.println",
"System.out",
"System",
"System.out",
"solve(A, B, C, D) ? YES : NO",
"solve(A, B, C, D)",
"solve",
"A",
"B",
"C",
"D",
"YES",
"NO",
"String[] args",
"args",
"private static boolean solve(int A, int B, int C, int D) {\n while (true) {\n C -= B;\n if (C <= 0) return true;\n\n A -= D;\n if (A <= 0) return false;\n }\n }",
"solve",
"{\n while (true) {\n C -= B;\n if (C <= 0) return true;\n\n A -= D;\n if (A <= 0) return false;\n }\n }",
"while (true) {\n C -= B;\n if (C <= 0) return true;\n\n A -= D;\n if (A <= 0) return false;\n }",
"true",
"{\n C -= B;\n if (C <= 0) return true;\n\n A -= D;\n if (A <= 0) return false;\n }",
"C -= B",
"C",
"B",
"if (C <= 0) return true;",
"C <= 0",
"C",
"0",
"return true;",
"true",
"A -= D",
"A",
"D",
"if (A <= 0) return false;",
"A <= 0",
"A",
"0",
"return false;",
"false",
"int A",
"A",
"int B",
"B",
"int C",
"C",
"int D",
"D",
"public class Main {\n private static final int MOD = 1_000_000_007;\n private static final String YES = \"Yes\";\n private static final String NO = \"No\";\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n\n System.out.println(solve(A, B, C, D) ? YES : NO);\n }\n\n private static boolean solve(int A, int B, int C, int D) {\n while (true) {\n C -= B;\n if (C <= 0) return true;\n\n A -= D;\n if (A <= 0) return false;\n }\n }\n}",
"public class Main {\n private static final int MOD = 1_000_000_007;\n private static final String YES = \"Yes\";\n private static final String NO = \"No\";\n\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n\n int A = sc.nextInt();\n int B = sc.nextInt();\n int C = sc.nextInt();\n int D = sc.nextInt();\n\n System.out.println(solve(A, B, C, D) ? YES : NO);\n }\n\n private static boolean solve(int A, int B, int C, int D) {\n while (true) {\n C -= B;\n if (C <= 0) return true;\n\n A -= D;\n if (A <= 0) return false;\n }\n }\n}",
"Main"
] |
import java.util.Scanner;
public class Main {
private static final int MOD = 1_000_000_007;
private static final String YES = "Yes";
private static final String NO = "No";
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
int C = sc.nextInt();
int D = sc.nextInt();
System.out.println(solve(A, B, C, D) ? YES : NO);
}
private static boolean solve(int A, int B, int C, int D) {
while (true) {
C -= B;
if (C <= 0) return true;
A -= D;
if (A <= 0) return false;
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
2,
13,
13,
41,
13,
4,
18,
13,
2,
13,
13,
14,
2,
13,
13,
4,
18,
18,
13,
13,
17,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
67,
5
],
[
67,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
34,
35
],
[
35,
36
],
[
34,
37
],
[
37,
38
],
[
37,
39
],
[
8,
40
],
[
40,
41
],
[
40,
42
],
[
42,
43
],
[
43,
44
],
[
42,
45
],
[
45,
46
],
[
45,
47
],
[
8,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
48,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
52,
57
],
[
48,
58
],
[
58,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
58,
63
],
[
6,
64
],
[
64,
65
],
[
0,
66
],
[
66,
67
],
[
66,
68
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner input = new Scanner(System.in);\n Integer A = input.nextInt();\n Integer B = input.nextInt();\n Integer C = input.nextInt();\n Integer D = input.nextInt();\n\n Integer ConfirmTimeT = (int)Math.ceil((float)C / B);\n Integer ConfirmTimeA = (int)Math.ceil((float)A / D);\n\n if (ConfirmTimeT <= ConfirmTimeA) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n public static void main(String[] args) {\n Scanner input = new Scanner(System.in);\n Integer A = input.nextInt();\n Integer B = input.nextInt();\n Integer C = input.nextInt();\n Integer D = input.nextInt();\n\n Integer ConfirmTimeT = (int)Math.ceil((float)C / B);\n Integer ConfirmTimeA = (int)Math.ceil((float)A / D);\n\n if (ConfirmTimeT <= ConfirmTimeA) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner input = new Scanner(System.in);\n Integer A = input.nextInt();\n Integer B = input.nextInt();\n Integer C = input.nextInt();\n Integer D = input.nextInt();\n\n Integer ConfirmTimeT = (int)Math.ceil((float)C / B);\n Integer ConfirmTimeA = (int)Math.ceil((float)A / D);\n\n if (ConfirmTimeT <= ConfirmTimeA) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }",
"main",
"{\n Scanner input = new Scanner(System.in);\n Integer A = input.nextInt();\n Integer B = input.nextInt();\n Integer C = input.nextInt();\n Integer D = input.nextInt();\n\n Integer ConfirmTimeT = (int)Math.ceil((float)C / B);\n Integer ConfirmTimeA = (int)Math.ceil((float)A / D);\n\n if (ConfirmTimeT <= ConfirmTimeA) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }",
"Scanner input = new Scanner(System.in);",
"input",
"new Scanner(System.in)",
"Integer A = input.nextInt();",
"A",
"input.nextInt()",
"input.nextInt",
"input",
"Integer B = input.nextInt();",
"B",
"input.nextInt()",
"input.nextInt",
"input",
"Integer C = input.nextInt();",
"C",
"input.nextInt()",
"input.nextInt",
"input",
"Integer D = input.nextInt();",
"D",
"input.nextInt()",
"input.nextInt",
"input",
"Integer ConfirmTimeT = (int)Math.ceil((float)C / B);",
"ConfirmTimeT",
"(int)Math.ceil((float)C / B)",
"Math.ceil",
"Math",
"(float)C / B",
"(float)C",
"B",
"Integer ConfirmTimeA = (int)Math.ceil((float)A / D);",
"ConfirmTimeA",
"(int)Math.ceil((float)A / D)",
"Math.ceil",
"Math",
"(float)A / D",
"(float)A",
"D",
"if (ConfirmTimeT <= ConfirmTimeA) System.out.println(\"Yes\");\n else System.out.println(\"No\");",
"ConfirmTimeT <= ConfirmTimeA",
"ConfirmTimeT",
"ConfirmTimeA",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n Scanner input = new Scanner(System.in);\n Integer A = input.nextInt();\n Integer B = input.nextInt();\n Integer C = input.nextInt();\n Integer D = input.nextInt();\n\n Integer ConfirmTimeT = (int)Math.ceil((float)C / B);\n Integer ConfirmTimeA = (int)Math.ceil((float)A / D);\n\n if (ConfirmTimeT <= ConfirmTimeA) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}",
"public class Main {\n public static void main(String[] args) {\n Scanner input = new Scanner(System.in);\n Integer A = input.nextInt();\n Integer B = input.nextInt();\n Integer C = input.nextInt();\n Integer D = input.nextInt();\n\n Integer ConfirmTimeT = (int)Math.ceil((float)C / B);\n Integer ConfirmTimeA = (int)Math.ceil((float)A / D);\n\n if (ConfirmTimeT <= ConfirmTimeA) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}",
"Main"
] |
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
Integer A = input.nextInt();
Integer B = input.nextInt();
Integer C = input.nextInt();
Integer D = input.nextInt();
Integer ConfirmTimeT = (int)Math.ceil((float)C / B);
Integer ConfirmTimeA = (int)Math.ceil((float)A / D);
if (ConfirmTimeT <= ConfirmTimeA) System.out.println("Yes");
else System.out.println("No");
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
2,
13,
13,
41,
13,
2,
13,
13,
14,
2,
13,
17,
30,
0,
13,
2,
13,
17,
41,
13,
2,
13,
13,
41,
13,
2,
13,
13,
14,
2,
13,
17,
30,
0,
13,
2,
13,
17,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
14,
2,
13,
13,
30,
4,
18,
18,
13,
13,
17,
14,
2,
2,
13,
17,
13,
30,
4,
18,
18,
13,
13,
17,
30,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
120,
5
],
[
120,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
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
],
[
46,
48
],
[
45,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
52,
53
],
[
52,
54
],
[
8,
55
],
[
55,
56
],
[
55,
57
],
[
57,
58
],
[
57,
59
],
[
8,
60
],
[
60,
61
],
[
60,
62
],
[
62,
63
],
[
62,
64
],
[
8,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
65,
69
],
[
69,
70
],
[
70,
71
],
[
70,
72
],
[
72,
73
],
[
72,
74
],
[
8,
75
],
[
75,
76
],
[
76,
77
],
[
76,
78
],
[
75,
79
],
[
79,
80
],
[
80,
81
],
[
81,
82
],
[
82,
83
],
[
82,
84
],
[
80,
85
],
[
75,
86
],
[
86,
87
],
[
87,
88
],
[
87,
89
],
[
86,
90
],
[
90,
91
],
[
91,
92
],
[
92,
93
],
[
93,
94
],
[
93,
95
],
[
91,
96
],
[
86,
97
],
[
97,
98
],
[
98,
99
],
[
99,
100
],
[
99,
101
],
[
98,
102
],
[
97,
103
],
[
103,
104
],
[
104,
105
],
[
105,
106
],
[
106,
107
],
[
106,
108
],
[
104,
109
],
[
97,
110
],
[
110,
111
],
[
111,
112
],
[
112,
113
],
[
113,
114
],
[
113,
115
],
[
111,
116
],
[
6,
117
],
[
117,
118
],
[
0,
119
],
[
119,
120
],
[
119,
121
]
] |
[
"import java.util.Scanner;\n\npublic class Main {\n\t\n\tpublic static void main(String[] args) {\n\t\t\n\t\tScanner scanner = new Scanner(System.in);\n\t\t\n\t\tint THP = scanner.nextInt();\n\t\tint TAP = scanner.nextInt();\n\t\tint AHP = scanner.nextInt();\n\t\tint AAP = scanner.nextInt();\n\t\t\n\t\tscanner.close();\n\t\t\n\t\tint TC = AHP/TAP;\n\t\tint TCP = AHP%TAP;\n\t\tif (TCP != 0) {\n\t\t\tTC = TC + 1;\n\t\t}\n\t\t\n\t\tint AC = THP/AAP;\n\t\tint ACP = THP%AAP;\n\t\t\n\t\tif (ACP != 0) {\n\t\t\tAC = AC + 1;\n\t\t}\n\t\t\n\t\tif (TC == AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC < AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC + 1 == AC) {\n\t\t\tSystem.out.println(\"Yes\"); \n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\t\n\tpublic static void main(String[] args) {\n\t\t\n\t\tScanner scanner = new Scanner(System.in);\n\t\t\n\t\tint THP = scanner.nextInt();\n\t\tint TAP = scanner.nextInt();\n\t\tint AHP = scanner.nextInt();\n\t\tint AAP = scanner.nextInt();\n\t\t\n\t\tscanner.close();\n\t\t\n\t\tint TC = AHP/TAP;\n\t\tint TCP = AHP%TAP;\n\t\tif (TCP != 0) {\n\t\t\tTC = TC + 1;\n\t\t}\n\t\t\n\t\tint AC = THP/AAP;\n\t\tint ACP = THP%AAP;\n\t\t\n\t\tif (ACP != 0) {\n\t\t\tAC = AC + 1;\n\t\t}\n\t\t\n\t\tif (TC == AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC < AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC + 1 == AC) {\n\t\t\tSystem.out.println(\"Yes\"); \n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n\n}",
"Main",
"public static void main(String[] args) {\n\t\t\n\t\tScanner scanner = new Scanner(System.in);\n\t\t\n\t\tint THP = scanner.nextInt();\n\t\tint TAP = scanner.nextInt();\n\t\tint AHP = scanner.nextInt();\n\t\tint AAP = scanner.nextInt();\n\t\t\n\t\tscanner.close();\n\t\t\n\t\tint TC = AHP/TAP;\n\t\tint TCP = AHP%TAP;\n\t\tif (TCP != 0) {\n\t\t\tTC = TC + 1;\n\t\t}\n\t\t\n\t\tint AC = THP/AAP;\n\t\tint ACP = THP%AAP;\n\t\t\n\t\tif (ACP != 0) {\n\t\t\tAC = AC + 1;\n\t\t}\n\t\t\n\t\tif (TC == AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC < AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC + 1 == AC) {\n\t\t\tSystem.out.println(\"Yes\"); \n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}",
"main",
"{\n\t\t\n\t\tScanner scanner = new Scanner(System.in);\n\t\t\n\t\tint THP = scanner.nextInt();\n\t\tint TAP = scanner.nextInt();\n\t\tint AHP = scanner.nextInt();\n\t\tint AAP = scanner.nextInt();\n\t\t\n\t\tscanner.close();\n\t\t\n\t\tint TC = AHP/TAP;\n\t\tint TCP = AHP%TAP;\n\t\tif (TCP != 0) {\n\t\t\tTC = TC + 1;\n\t\t}\n\t\t\n\t\tint AC = THP/AAP;\n\t\tint ACP = THP%AAP;\n\t\t\n\t\tif (ACP != 0) {\n\t\t\tAC = AC + 1;\n\t\t}\n\t\t\n\t\tif (TC == AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC < AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC + 1 == AC) {\n\t\t\tSystem.out.println(\"Yes\"); \n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}",
"Scanner scanner = new Scanner(System.in);",
"scanner",
"new Scanner(System.in)",
"int THP = scanner.nextInt();",
"THP",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"int TAP = scanner.nextInt();",
"TAP",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"int AHP = scanner.nextInt();",
"AHP",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"int AAP = scanner.nextInt();",
"AAP",
"scanner.nextInt()",
"scanner.nextInt",
"scanner",
"scanner.close()",
"scanner.close",
"scanner",
"int TC = AHP/TAP;",
"TC",
"AHP/TAP",
"AHP",
"TAP",
"int TCP = AHP%TAP;",
"TCP",
"AHP%TAP",
"AHP",
"TAP",
"if (TCP != 0) {\n\t\t\tTC = TC + 1;\n\t\t}",
"TCP != 0",
"TCP",
"0",
"{\n\t\t\tTC = TC + 1;\n\t\t}",
"TC = TC + 1",
"TC",
"TC + 1",
"TC",
"1",
"int AC = THP/AAP;",
"AC",
"THP/AAP",
"THP",
"AAP",
"int ACP = THP%AAP;",
"ACP",
"THP%AAP",
"THP",
"AAP",
"if (ACP != 0) {\n\t\t\tAC = AC + 1;\n\t\t}",
"ACP != 0",
"ACP",
"0",
"{\n\t\t\tAC = AC + 1;\n\t\t}",
"AC = AC + 1",
"AC",
"AC + 1",
"AC",
"1",
"if (TC == AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC < AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC + 1 == AC) {\n\t\t\tSystem.out.println(\"Yes\"); \n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"TC == AC",
"TC",
"AC",
"{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"if (TC < AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC + 1 == AC) {\n\t\t\tSystem.out.println(\"Yes\"); \n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"TC < AC",
"TC",
"AC",
"{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"if (TC + 1 == AC) {\n\t\t\tSystem.out.println(\"Yes\"); \n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"TC + 1 == AC",
"TC + 1",
"TC",
"1",
"AC",
"{\n\t\t\tSystem.out.println(\"Yes\"); \n\t\t}",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"{\n\t\t\tSystem.out.println(\"No\");\n\t\t}",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"String[] args",
"args",
"public class Main {\n\t\n\tpublic static void main(String[] args) {\n\t\t\n\t\tScanner scanner = new Scanner(System.in);\n\t\t\n\t\tint THP = scanner.nextInt();\n\t\tint TAP = scanner.nextInt();\n\t\tint AHP = scanner.nextInt();\n\t\tint AAP = scanner.nextInt();\n\t\t\n\t\tscanner.close();\n\t\t\n\t\tint TC = AHP/TAP;\n\t\tint TCP = AHP%TAP;\n\t\tif (TCP != 0) {\n\t\t\tTC = TC + 1;\n\t\t}\n\t\t\n\t\tint AC = THP/AAP;\n\t\tint ACP = THP%AAP;\n\t\t\n\t\tif (ACP != 0) {\n\t\t\tAC = AC + 1;\n\t\t}\n\t\t\n\t\tif (TC == AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC < AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC + 1 == AC) {\n\t\t\tSystem.out.println(\"Yes\"); \n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n\n}",
"public class Main {\n\t\n\tpublic static void main(String[] args) {\n\t\t\n\t\tScanner scanner = new Scanner(System.in);\n\t\t\n\t\tint THP = scanner.nextInt();\n\t\tint TAP = scanner.nextInt();\n\t\tint AHP = scanner.nextInt();\n\t\tint AAP = scanner.nextInt();\n\t\t\n\t\tscanner.close();\n\t\t\n\t\tint TC = AHP/TAP;\n\t\tint TCP = AHP%TAP;\n\t\tif (TCP != 0) {\n\t\t\tTC = TC + 1;\n\t\t}\n\t\t\n\t\tint AC = THP/AAP;\n\t\tint ACP = THP%AAP;\n\t\t\n\t\tif (ACP != 0) {\n\t\t\tAC = AC + 1;\n\t\t}\n\t\t\n\t\tif (TC == AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC < AC) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else if (TC + 1 == AC) {\n\t\t\tSystem.out.println(\"Yes\"); \n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\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 THP = scanner.nextInt();
int TAP = scanner.nextInt();
int AHP = scanner.nextInt();
int AAP = scanner.nextInt();
scanner.close();
int TC = AHP/TAP;
int TCP = AHP%TAP;
if (TCP != 0) {
TC = TC + 1;
}
int AC = THP/AAP;
int ACP = THP%AAP;
if (ACP != 0) {
AC = AC + 1;
}
if (TC == AC) {
System.out.println("Yes");
} else if (TC < AC) {
System.out.println("Yes");
} else if (TC + 1 == AC) {
System.out.println("Yes");
} else {
System.out.println("No");
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
17,
42,
2,
2,
13,
17,
2,
13,
17,
30,
14,
13,
0,
13,
13,
0,
13,
13,
0,
13,
40,
13,
14,
13,
4,
18,
18,
13,
13,
17,
4,
18,
18,
13,
13,
17,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
73,
5
],
[
73,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
32,
34
],
[
8,
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
],
[
44,
49
],
[
49,
50
],
[
49,
51
],
[
43,
52
],
[
52,
53
],
[
52,
54
],
[
54,
55
],
[
8,
56
],
[
56,
57
],
[
56,
58
],
[
58,
59
],
[
59,
60
],
[
60,
61
],
[
60,
62
],
[
58,
63
],
[
56,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
66,
68
],
[
64,
69
],
[
6,
70
],
[
70,
71
],
[
0,
72
],
[
72,
73
],
[
72,
74
]
] |
[
"import java.util.*;\n\npublic class Main{\n public static void main(String[] args){\n\tScanner sc = new Scanner(System.in);\n\tint a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n boolean takahashi = true;\n while(a > 0 && c > 0){\n if(takahashi)\n c -= b;\n else\n a -= d;\n takahashi = !takahashi; \n }\n if(takahashi)\n System.out.println(\"No\");\n else\n System.out.println(\"Yes\");\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main{\n public static void main(String[] args){\n\tScanner sc = new Scanner(System.in);\n\tint a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n boolean takahashi = true;\n while(a > 0 && c > 0){\n if(takahashi)\n c -= b;\n else\n a -= d;\n takahashi = !takahashi; \n }\n if(takahashi)\n System.out.println(\"No\");\n else\n System.out.println(\"Yes\");\n\t}\n}",
"Main",
"public static void main(String[] args){\n\tScanner sc = new Scanner(System.in);\n\tint a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n boolean takahashi = true;\n while(a > 0 && c > 0){\n if(takahashi)\n c -= b;\n else\n a -= d;\n takahashi = !takahashi; \n }\n if(takahashi)\n System.out.println(\"No\");\n else\n System.out.println(\"Yes\");\n\t}",
"main",
"{\n\tScanner sc = new Scanner(System.in);\n\tint a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n boolean takahashi = true;\n while(a > 0 && c > 0){\n if(takahashi)\n c -= b;\n else\n a -= d;\n takahashi = !takahashi; \n }\n if(takahashi)\n System.out.println(\"No\");\n else\n System.out.println(\"Yes\");\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b = sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c = sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int d = sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"boolean takahashi = true;",
"takahashi",
"true",
"while(a > 0 && c > 0){\n if(takahashi)\n c -= b;\n else\n a -= d;\n takahashi = !takahashi; \n }",
"a > 0 && c > 0",
"a > 0",
"a",
"0",
"c > 0",
"c",
"0",
"{\n if(takahashi)\n c -= b;\n else\n a -= d;\n takahashi = !takahashi; \n }",
"if(takahashi)\n c -= b;\n else\n a -= d;",
"takahashi",
"c -= b",
"c",
"b",
"a -= d",
"a",
"d",
"takahashi = !takahashi",
"takahashi",
"!takahashi",
"takahashi",
"if(takahashi)\n System.out.println(\"No\");\n else\n System.out.println(\"Yes\");",
"takahashi",
"System.out.println(\"No\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"No\"",
"System.out.println(\"Yes\")",
"System.out.println",
"System.out",
"System",
"System.out",
"\"Yes\"",
"String[] args",
"args",
"public class Main{\n public static void main(String[] args){\n\tScanner sc = new Scanner(System.in);\n\tint a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n boolean takahashi = true;\n while(a > 0 && c > 0){\n if(takahashi)\n c -= b;\n else\n a -= d;\n takahashi = !takahashi; \n }\n if(takahashi)\n System.out.println(\"No\");\n else\n System.out.println(\"Yes\");\n\t}\n}",
"public class Main{\n public static void main(String[] args){\n\tScanner sc = new Scanner(System.in);\n\tint a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n boolean takahashi = true;\n while(a > 0 && c > 0){\n if(takahashi)\n c -= b;\n else\n a -= d;\n takahashi = !takahashi; \n }\n if(takahashi)\n System.out.println(\"No\");\n else\n System.out.println(\"Yes\");\n\t}\n}",
"Main"
] |
import java.util.*;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int d = sc.nextInt();
boolean takahashi = true;
while(a > 0 && c > 0){
if(takahashi)
c -= b;
else
a -= d;
takahashi = !takahashi;
}
if(takahashi)
System.out.println("No");
else
System.out.println("Yes");
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
41,
13,
4,
18,
13,
11,
1,
41,
13,
17,
2,
13,
17,
1,
40,
13,
30,
30,
0,
13,
2,
13,
13,
0,
13,
2,
13,
13,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
14,
2,
13,
17,
30,
4,
18,
18,
13,
13,
17,
3,
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
],
[
8,
22
],
[
22,
23
],
[
22,
24
],
[
24,
25
],
[
25,
26
],
[
8,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
8,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
34,
36
],
[
32,
37
],
[
37,
38
],
[
37,
39
],
[
32,
40
],
[
40,
41
],
[
41,
42
],
[
32,
43
],
[
44,
44
],
[
44,
45
],
[
45,
46
],
[
45,
47
],
[
47,
48
],
[
47,
49
],
[
44,
50
],
[
50,
51
],
[
50,
52
],
[
52,
53
],
[
52,
54
],
[
44,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
55,
59
],
[
59,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
60,
65
],
[
59,
66
],
[
55,
67
],
[
67,
68
],
[
68,
69
],
[
68,
70
],
[
67,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
74,
75
],
[
74,
76
],
[
72,
77
],
[
71,
78
],
[
6,
79
],
[
79,
80
]
] |
[
"import java.util.Scanner;\n\nclass Main\n{\n public static void main(String args[])\n {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n for(int i=0;i<10000000;i++)\n {\n c = c-b;\n a = a-d;\n if(c<=0)\n {\n System.out.print(\"Yes\");\n break;\n }\n else if(a<=0)\n {\n System.out.print(\"No\");\n break;\n }\n }\n\n\n }\n}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"class Main\n{\n public static void main(String args[])\n {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n for(int i=0;i<10000000;i++)\n {\n c = c-b;\n a = a-d;\n if(c<=0)\n {\n System.out.print(\"Yes\");\n break;\n }\n else if(a<=0)\n {\n System.out.print(\"No\");\n break;\n }\n }\n\n\n }\n}",
"Main",
"public static void main(String args[])\n {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n for(int i=0;i<10000000;i++)\n {\n c = c-b;\n a = a-d;\n if(c<=0)\n {\n System.out.print(\"Yes\");\n break;\n }\n else if(a<=0)\n {\n System.out.print(\"No\");\n break;\n }\n }\n\n\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int c = sc.nextInt();\n int d = sc.nextInt();\n for(int i=0;i<10000000;i++)\n {\n c = c-b;\n a = a-d;\n if(c<=0)\n {\n System.out.print(\"Yes\");\n break;\n }\n else if(a<=0)\n {\n System.out.print(\"No\");\n break;\n }\n }\n\n\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int b = sc.nextInt();",
"b",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int c = sc.nextInt();",
"c",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int d = sc.nextInt();",
"d",
"sc.nextInt()",
"sc.nextInt",
"sc",
"for(int i=0;i<10000000;i++)\n {\n c = c-b;\n a = a-d;\n if(c<=0)\n {\n System.out.print(\"Yes\");\n break;\n }\n else if(a<=0)\n {\n System.out.print(\"No\");\n break;\n }\n }",
"int i=0;",
"int i=0;",
"i",
"0",
"i<10000000",
"i",
"10000000",
"i++",
"i++",
"i",
"{\n c = c-b;\n a = a-d;\n if(c<=0)\n {\n System.out.print(\"Yes\");\n break;\n }\n else if(a<=0)\n {\n System.out.print(\"No\");\n break;\n }\n }",
"{\n c = c-b;\n a = a-d;\n if(c<=0)\n {\n System.out.print(\"Yes\");\n break;\n }\n else if(a<=0)\n {\n System.out.print(\"No\");\n break;\n }\n }",
"c = c-b",
"c",
"c-b",
"c",
"b",
"a = a-d",
"a",
"a-d",
"a",
"d",
"if(c<=0)\n {\n System.out.print(\"Yes\");\n break;\n }\n else if(a<=0)\n {\n System.out.print(\"No\");\n break;\n }",
"c<=0",
"c",
"0",
"{\n System.out.print(\"Yes\");\n break;\n }",
"System.out.print(\"Yes\")",
"System.out.print",
"System.out",
"System",
"System.out",
"\"Yes\"",
"break;",
"if(a<=0)\n {\n System.out.print(\"No\");\n break;\n }",
"a<=0",
"a",
"0",
"{\n System.out.print(\"No\");\n break;\n }",
"System.out.print(\"No\")",
"System.out.print",
"System.out",
"System",
"System.out",
"\"No\"",
"break;",
"String args[]",
"args"
] |
import java.util.Scanner;
class Main
{
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int d = sc.nextInt();
for(int i=0;i<10000000;i++)
{
c = c-b;
a = a-d;
if(c<=0)
{
System.out.print("Yes");
break;
}
else if(a<=0)
{
System.out.print("No");
break;
}
}
}
}
|
[
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,
20,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
41,
13,
4,
18,
13,
4,
18,
13,
13,
41,
13,
20,
41,
13,
4,
18,
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
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
10,
11
],
[
10,
12
],
[
0,
13
],
[
68,
14
],
[
68,
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
],
[
17,
29
],
[
29,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
29,
34
],
[
34,
35
],
[
34,
36
],
[
29,
37
],
[
37,
38
],
[
38,
39
],
[
29,
40
],
[
41,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
41,
47
],
[
47,
48
],
[
48,
49
],
[
47,
50
],
[
17,
51
],
[
51,
52
],
[
51,
53
],
[
17,
54
],
[
54,
55
],
[
54,
56
],
[
56,
57
],
[
57,
58
],
[
17,
59
],
[
59,
60
],
[
60,
61
],
[
61,
62
],
[
61,
63
],
[
59,
64
],
[
15,
65
],
[
65,
66
],
[
0,
67
],
[
67,
68
],
[
67,
69
]
] |
[
"import java.util.ArrayList;\nimport java.util.HashSet;\nimport java.util.List;\nimport java.util.Scanner;\n\npublic class Main{\n\tpublic static void main(String args[]) {\n\t\tScanner sc=new Scanner(System.in);\n\tint N=sc.nextInt();\n\tList<String> strList1=new ArrayList<String>();\n\tfor(int i=0;i<N;i++) {\n\t\tString S=sc.next();\n\t\tstrList1.add(S);\n\t}\n\tList<String> listB = new ArrayList<String>(new HashSet<>(strList1));\n\tint len=listB.size();\n\tSystem.out.println(len);\n\t}\n}",
"import java.util.ArrayList;",
"ArrayList",
"java.util",
"import java.util.HashSet;",
"HashSet",
"java.util",
"import java.util.List;",
"List",
"java.util",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main{\n\tpublic static void main(String args[]) {\n\t\tScanner sc=new Scanner(System.in);\n\tint N=sc.nextInt();\n\tList<String> strList1=new ArrayList<String>();\n\tfor(int i=0;i<N;i++) {\n\t\tString S=sc.next();\n\t\tstrList1.add(S);\n\t}\n\tList<String> listB = new ArrayList<String>(new HashSet<>(strList1));\n\tint len=listB.size();\n\tSystem.out.println(len);\n\t}\n}",
"Main",
"public static void main(String args[]) {\n\t\tScanner sc=new Scanner(System.in);\n\tint N=sc.nextInt();\n\tList<String> strList1=new ArrayList<String>();\n\tfor(int i=0;i<N;i++) {\n\t\tString S=sc.next();\n\t\tstrList1.add(S);\n\t}\n\tList<String> listB = new ArrayList<String>(new HashSet<>(strList1));\n\tint len=listB.size();\n\tSystem.out.println(len);\n\t}",
"main",
"{\n\t\tScanner sc=new Scanner(System.in);\n\tint N=sc.nextInt();\n\tList<String> strList1=new ArrayList<String>();\n\tfor(int i=0;i<N;i++) {\n\t\tString S=sc.next();\n\t\tstrList1.add(S);\n\t}\n\tList<String> listB = new ArrayList<String>(new HashSet<>(strList1));\n\tint len=listB.size();\n\tSystem.out.println(len);\n\t}",
"Scanner sc=new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int N=sc.nextInt();",
"N",
"sc.nextInt()",
"sc.nextInt",
"sc",
"List<String> strList1=new ArrayList<String>();",
"strList1",
"new ArrayList<String>()",
"for(int i=0;i<N;i++) {\n\t\tString S=sc.next();\n\t\tstrList1.add(S);\n\t}",
"int i=0;",
"int i=0;",
"i",
"0",
"i<N",
"i",
"N",
"i++",
"i++",
"i",
"{\n\t\tString S=sc.next();\n\t\tstrList1.add(S);\n\t}",
"{\n\t\tString S=sc.next();\n\t\tstrList1.add(S);\n\t}",
"String S=sc.next();",
"S",
"sc.next()",
"sc.next",
"sc",
"strList1.add(S)",
"strList1.add",
"strList1",
"S",
"List<String> listB = new ArrayList<String>(new HashSet<>(strList1));",
"listB",
"new ArrayList<String>(new HashSet<>(strList1))",
"int len=listB.size();",
"len",
"listB.size()",
"listB.size",
"listB",
"System.out.println(len)",
"System.out.println",
"System.out",
"System",
"System.out",
"len",
"String args[]",
"args",
"public class Main{\n\tpublic static void main(String args[]) {\n\t\tScanner sc=new Scanner(System.in);\n\tint N=sc.nextInt();\n\tList<String> strList1=new ArrayList<String>();\n\tfor(int i=0;i<N;i++) {\n\t\tString S=sc.next();\n\t\tstrList1.add(S);\n\t}\n\tList<String> listB = new ArrayList<String>(new HashSet<>(strList1));\n\tint len=listB.size();\n\tSystem.out.println(len);\n\t}\n}",
"public class Main{\n\tpublic static void main(String args[]) {\n\t\tScanner sc=new Scanner(System.in);\n\tint N=sc.nextInt();\n\tList<String> strList1=new ArrayList<String>();\n\tfor(int i=0;i<N;i++) {\n\t\tString S=sc.next();\n\t\tstrList1.add(S);\n\t}\n\tList<String> listB = new ArrayList<String>(new HashSet<>(strList1));\n\tint len=listB.size();\n\tSystem.out.println(len);\n\t}\n}",
"Main"
] |
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Scanner;
public class Main{
public static void main(String args[]) {
Scanner sc=new Scanner(System.in);
int N=sc.nextInt();
List<String> strList1=new ArrayList<String>();
for(int i=0;i<N;i++) {
String S=sc.next();
strList1.add(S);
}
List<String> listB = new ArrayList<String>(new HashSet<>(strList1));
int len=listB.size();
System.out.println(len);
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
41,
13,
20,
0,
13,
4,
18,
13,
41,
13,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
0,
13,
4,
18,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
4,
18,
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
],
[
14,
20
],
[
20,
21
],
[
20,
22
],
[
14,
23
],
[
23,
24
],
[
23,
25
],
[
25,
26
],
[
26,
27
],
[
14,
28
],
[
28,
29
],
[
14,
30
],
[
30,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
30,
35
],
[
35,
36
],
[
35,
37
],
[
30,
38
],
[
38,
39
],
[
39,
40
],
[
30,
41
],
[
42,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
45,
46
],
[
46,
47
],
[
42,
48
],
[
48,
49
],
[
49,
50
],
[
48,
51
],
[
14,
52
],
[
52,
53
],
[
53,
54
],
[
54,
55
],
[
54,
56
],
[
52,
57
],
[
57,
58
],
[
58,
59
],
[
12,
60
],
[
60,
61
]
] |
[
"/* package codechef; // don't place package name! */\n\nimport 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 Main\n{\n\tpublic static void main (String[] args) throws java.lang.Exception\n\t{\n\t\tSet<String> hash_Set = new HashSet<String>(); \n\t\tint n;\n\t\tScanner sc = new Scanner(System.in);\n\t\tn = sc.nextInt();\n\t\tString s;\n\t\tfor(int i=0;i<n;i++) {\n\t\t s = sc.next();\n\t\t hash_Set.add(s);\n\t\t}\n // Object[] objects = hash_Set.toArray(); \n \n // // Printing array of objects \n // for (Object obj : objects) \n // System.out.println(obj); \n System.out.println(hash_Set.size());\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"import java.lang.*;",
"lang.*",
"java",
"import java.io.*;",
"io.*",
"java",
"class Main\n{\n\tpublic static void main (String[] args) throws java.lang.Exception\n\t{\n\t\tSet<String> hash_Set = new HashSet<String>(); \n\t\tint n;\n\t\tScanner sc = new Scanner(System.in);\n\t\tn = sc.nextInt();\n\t\tString s;\n\t\tfor(int i=0;i<n;i++) {\n\t\t s = sc.next();\n\t\t hash_Set.add(s);\n\t\t}\n // Object[] objects = hash_Set.toArray(); \n \n // // Printing array of objects \n // for (Object obj : objects) \n // System.out.println(obj); \n System.out.println(hash_Set.size());\n\t}\n}",
"Main",
"public static void main (String[] args) throws java.lang.Exception\n\t{\n\t\tSet<String> hash_Set = new HashSet<String>(); \n\t\tint n;\n\t\tScanner sc = new Scanner(System.in);\n\t\tn = sc.nextInt();\n\t\tString s;\n\t\tfor(int i=0;i<n;i++) {\n\t\t s = sc.next();\n\t\t hash_Set.add(s);\n\t\t}\n // Object[] objects = hash_Set.toArray(); \n \n // // Printing array of objects \n // for (Object obj : objects) \n // System.out.println(obj); \n System.out.println(hash_Set.size());\n\t}",
"main",
"{\n\t\tSet<String> hash_Set = new HashSet<String>(); \n\t\tint n;\n\t\tScanner sc = new Scanner(System.in);\n\t\tn = sc.nextInt();\n\t\tString s;\n\t\tfor(int i=0;i<n;i++) {\n\t\t s = sc.next();\n\t\t hash_Set.add(s);\n\t\t}\n // Object[] objects = hash_Set.toArray(); \n \n // // Printing array of objects \n // for (Object obj : objects) \n // System.out.println(obj); \n System.out.println(hash_Set.size());\n\t}",
"Set<String> hash_Set = new HashSet<String>();",
"hash_Set",
"new HashSet<String>()",
"int n;",
"n",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"n = sc.nextInt()",
"n",
"sc.nextInt()",
"sc.nextInt",
"sc",
"String s;",
"s",
"for(int i=0;i<n;i++) {\n\t\t s = sc.next();\n\t\t hash_Set.add(s);\n\t\t}",
"int i=0;",
"int i=0;",
"i",
"0",
"i<n",
"i",
"n",
"i++",
"i++",
"i",
"{\n\t\t s = sc.next();\n\t\t hash_Set.add(s);\n\t\t}",
"{\n\t\t s = sc.next();\n\t\t hash_Set.add(s);\n\t\t}",
"s = sc.next()",
"s",
"sc.next()",
"sc.next",
"sc",
"hash_Set.add(s)",
"hash_Set.add",
"hash_Set",
"s",
"System.out.println(hash_Set.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"hash_Set.size()",
"hash_Set.size",
"hash_Set",
"String[] args",
"args"
] |
/* package codechef; // don't place package name! */
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Main
{
public static void main (String[] args) throws java.lang.Exception
{
Set<String> hash_Set = new HashSet<String>();
int n;
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
String s;
for(int i=0;i<n;i++) {
s = sc.next();
hash_Set.add(s);
}
// Object[] objects = hash_Set.toArray();
// // Printing array of objects
// for (Object obj : objects)
// System.out.println(obj);
System.out.println(hash_Set.size());
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
20,
13,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
0,
18,
13,
13,
4,
18,
13,
4,
18,
13,
13,
41,
13,
17,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
14,
2,
13,
17,
30,
40,
13,
30,
14,
40,
4,
18,
18,
13,
13,
18,
13,
2,
13,
17,
30,
40,
13,
4,
18,
18,
13,
13,
13,
4,
18,
13,
23,
13,
10,
6,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
96,
5
],
[
96,
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,
21
],
[
21,
22
],
[
22,
23
],
[
23,
24
],
[
23,
25
],
[
21,
26
],
[
26,
27
],
[
26,
28
],
[
21,
29
],
[
29,
30
],
[
30,
31
],
[
21,
32
],
[
33,
33
],
[
33,
34
],
[
34,
35
],
[
35,
36
],
[
35,
37
],
[
34,
38
],
[
38,
39
],
[
39,
40
],
[
8,
41
],
[
41,
42
],
[
42,
43
],
[
41,
44
],
[
8,
45
],
[
45,
46
],
[
45,
47
],
[
8,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
48,
53
],
[
53,
54
],
[
53,
55
],
[
48,
56
],
[
56,
57
],
[
57,
58
],
[
48,
59
],
[
60,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
61,
65
],
[
65,
66
],
[
66,
67
],
[
61,
68
],
[
68,
69
],
[
69,
70
],
[
70,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
71,
76
],
[
76,
77
],
[
76,
78
],
[
78,
79
],
[
78,
80
],
[
69,
81
],
[
81,
82
],
[
82,
83
],
[
8,
84
],
[
84,
85
],
[
85,
86
],
[
86,
87
],
[
86,
88
],
[
84,
89
],
[
8,
90
],
[
90,
91
],
[
91,
92
],
[
6,
93
],
[
93,
94
],
[
0,
95
],
[
95,
96
],
[
95,
97
]
] |
[
"import java.util.*;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\n\t\tScanner keyboard = new Scanner(System.in);\n\n\t\tint N = keyboard.nextInt();\n\t\tString[] S = new String[N];\n\t\t\n\t\tfor(int n=0; n<N; n++) {\n\t\t\tS[n] = keyboard.next();\n\t\t}\n\t\tArrays.parallelSort(S);\n\t\tint ans = 0;\n\t\t\n\t\tfor(int i =0; i<N; i++) {\n\t\t\tif(i == 0) {\n\t\t\t\tans++;\n\t\t\t}else {\n\t\t\t\tif(!(S[i].equals(S[i-1]))) {\n\t\t\t\t\tans++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\tSystem.out.println(ans);\n\t\tkeyboard.close();\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\tpublic static void main(String[] args) {\n\n\t\tScanner keyboard = new Scanner(System.in);\n\n\t\tint N = keyboard.nextInt();\n\t\tString[] S = new String[N];\n\t\t\n\t\tfor(int n=0; n<N; n++) {\n\t\t\tS[n] = keyboard.next();\n\t\t}\n\t\tArrays.parallelSort(S);\n\t\tint ans = 0;\n\t\t\n\t\tfor(int i =0; i<N; i++) {\n\t\t\tif(i == 0) {\n\t\t\t\tans++;\n\t\t\t}else {\n\t\t\t\tif(!(S[i].equals(S[i-1]))) {\n\t\t\t\t\tans++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\tSystem.out.println(ans);\n\t\tkeyboard.close();\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\n\t\tScanner keyboard = new Scanner(System.in);\n\n\t\tint N = keyboard.nextInt();\n\t\tString[] S = new String[N];\n\t\t\n\t\tfor(int n=0; n<N; n++) {\n\t\t\tS[n] = keyboard.next();\n\t\t}\n\t\tArrays.parallelSort(S);\n\t\tint ans = 0;\n\t\t\n\t\tfor(int i =0; i<N; i++) {\n\t\t\tif(i == 0) {\n\t\t\t\tans++;\n\t\t\t}else {\n\t\t\t\tif(!(S[i].equals(S[i-1]))) {\n\t\t\t\t\tans++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\tSystem.out.println(ans);\n\t\tkeyboard.close();\n\t}",
"main",
"{\n\n\t\tScanner keyboard = new Scanner(System.in);\n\n\t\tint N = keyboard.nextInt();\n\t\tString[] S = new String[N];\n\t\t\n\t\tfor(int n=0; n<N; n++) {\n\t\t\tS[n] = keyboard.next();\n\t\t}\n\t\tArrays.parallelSort(S);\n\t\tint ans = 0;\n\t\t\n\t\tfor(int i =0; i<N; i++) {\n\t\t\tif(i == 0) {\n\t\t\t\tans++;\n\t\t\t}else {\n\t\t\t\tif(!(S[i].equals(S[i-1]))) {\n\t\t\t\t\tans++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\tSystem.out.println(ans);\n\t\tkeyboard.close();\n\t}",
"Scanner keyboard = new Scanner(System.in);",
"keyboard",
"new Scanner(System.in)",
"int N = keyboard.nextInt();",
"N",
"keyboard.nextInt()",
"keyboard.nextInt",
"keyboard",
"String[] S = new String[N];",
"S",
"new String[N]",
"N",
"for(int n=0; n<N; n++) {\n\t\t\tS[n] = keyboard.next();\n\t\t}",
"int n=0;",
"int n=0;",
"n",
"0",
"n<N",
"n",
"N",
"n++",
"n++",
"n",
"{\n\t\t\tS[n] = keyboard.next();\n\t\t}",
"{\n\t\t\tS[n] = keyboard.next();\n\t\t}",
"S[n] = keyboard.next()",
"S[n]",
"S",
"n",
"keyboard.next()",
"keyboard.next",
"keyboard",
"Arrays.parallelSort(S)",
"Arrays.parallelSort",
"Arrays",
"S",
"int ans = 0;",
"ans",
"0",
"for(int i =0; i<N; i++) {\n\t\t\tif(i == 0) {\n\t\t\t\tans++;\n\t\t\t}else {\n\t\t\t\tif(!(S[i].equals(S[i-1]))) {\n\t\t\t\t\tans++;\n\t\t\t\t}\n\t\t\t}\n\t\t}",
"int i =0;",
"int i =0;",
"i",
"0",
"i<N",
"i",
"N",
"i++",
"i++",
"i",
"{\n\t\t\tif(i == 0) {\n\t\t\t\tans++;\n\t\t\t}else {\n\t\t\t\tif(!(S[i].equals(S[i-1]))) {\n\t\t\t\t\tans++;\n\t\t\t\t}\n\t\t\t}\n\t\t}",
"{\n\t\t\tif(i == 0) {\n\t\t\t\tans++;\n\t\t\t}else {\n\t\t\t\tif(!(S[i].equals(S[i-1]))) {\n\t\t\t\t\tans++;\n\t\t\t\t}\n\t\t\t}\n\t\t}",
"if(i == 0) {\n\t\t\t\tans++;\n\t\t\t}else {\n\t\t\t\tif(!(S[i].equals(S[i-1]))) {\n\t\t\t\t\tans++;\n\t\t\t\t}\n\t\t\t}",
"i == 0",
"i",
"0",
"{\n\t\t\t\tans++;\n\t\t\t}",
"ans++",
"ans",
"{\n\t\t\t\tif(!(S[i].equals(S[i-1]))) {\n\t\t\t\t\tans++;\n\t\t\t\t}\n\t\t\t}",
"if(!(S[i].equals(S[i-1]))) {\n\t\t\t\t\tans++;\n\t\t\t\t}",
"!(S[i].equals(S[i-1]))",
"(S[i].equals(S[i-1]))",
"S[i].equals",
"S[i]",
"S",
"i",
"S[i-1]",
"S",
"i-1",
"i",
"1",
"{\n\t\t\t\t\tans++;\n\t\t\t\t}",
"ans++",
"ans",
"System.out.println(ans)",
"System.out.println",
"System.out",
"System",
"System.out",
"ans",
"keyboard.close()",
"keyboard.close",
"keyboard",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\n\t\tScanner keyboard = new Scanner(System.in);\n\n\t\tint N = keyboard.nextInt();\n\t\tString[] S = new String[N];\n\t\t\n\t\tfor(int n=0; n<N; n++) {\n\t\t\tS[n] = keyboard.next();\n\t\t}\n\t\tArrays.parallelSort(S);\n\t\tint ans = 0;\n\t\t\n\t\tfor(int i =0; i<N; i++) {\n\t\t\tif(i == 0) {\n\t\t\t\tans++;\n\t\t\t}else {\n\t\t\t\tif(!(S[i].equals(S[i-1]))) {\n\t\t\t\t\tans++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\tSystem.out.println(ans);\n\t\tkeyboard.close();\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\n\t\tScanner keyboard = new Scanner(System.in);\n\n\t\tint N = keyboard.nextInt();\n\t\tString[] S = new String[N];\n\t\t\n\t\tfor(int n=0; n<N; n++) {\n\t\t\tS[n] = keyboard.next();\n\t\t}\n\t\tArrays.parallelSort(S);\n\t\tint ans = 0;\n\t\t\n\t\tfor(int i =0; i<N; i++) {\n\t\t\tif(i == 0) {\n\t\t\t\tans++;\n\t\t\t}else {\n\t\t\t\tif(!(S[i].equals(S[i-1]))) {\n\t\t\t\t\tans++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\tSystem.out.println(ans);\n\t\tkeyboard.close();\n\t}\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner keyboard = new Scanner(System.in);
int N = keyboard.nextInt();
String[] S = new String[N];
for(int n=0; n<N; n++) {
S[n] = keyboard.next();
}
Arrays.parallelSort(S);
int ans = 0;
for(int i =0; i<N; i++) {
if(i == 0) {
ans++;
}else {
if(!(S[i].equals(S[i-1]))) {
ans++;
}
}
}
System.out.println(ans);
keyboard.close();
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
20,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
4,
18,
13,
4,
18,
13,
41,
13,
20,
4,
18,
18,
13,
13,
4,
18,
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
],
[
8,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
25,
26
],
[
25,
27
],
[
20,
28
],
[
28,
29
],
[
29,
30
],
[
20,
31
],
[
32,
32
],
[
32,
33
],
[
33,
34
],
[
34,
35
],
[
33,
36
],
[
36,
37
],
[
37,
38
],
[
8,
39
],
[
39,
40
],
[
39,
41
],
[
8,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
42,
47
],
[
47,
48
],
[
48,
49
],
[
6,
50
],
[
50,
51
],
[
0,
52
],
[
52,
53
],
[
52,
54
]
] |
[
"import java.util.*;\n\npublic class Main{\n\tpublic static void main(String[] args) {\n\t Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n ArrayList<String> listA = new ArrayList<String>();\n \n for(int i=0; i<n; i++) {\n listA.add(sc.next());\n }\n List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));\n\n System.out.println(listB.size());\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main{\n\tpublic static void main(String[] args) {\n\t Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n ArrayList<String> listA = new ArrayList<String>();\n \n for(int i=0; i<n; i++) {\n listA.add(sc.next());\n }\n List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));\n\n System.out.println(listB.size());\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n ArrayList<String> listA = new ArrayList<String>();\n \n for(int i=0; i<n; i++) {\n listA.add(sc.next());\n }\n List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));\n\n System.out.println(listB.size());\n\t}",
"main",
"{\n\t Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n ArrayList<String> listA = new ArrayList<String>();\n \n for(int i=0; i<n; i++) {\n listA.add(sc.next());\n }\n List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));\n\n System.out.println(listB.size());\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int n = sc.nextInt();",
"n",
"sc.nextInt()",
"sc.nextInt",
"sc",
"ArrayList<String> listA = new ArrayList<String>();",
"listA",
"new ArrayList<String>()",
"for(int i=0; i<n; i++) {\n listA.add(sc.next());\n }",
"int i=0;",
"int i=0;",
"i",
"0",
"i<n",
"i",
"n",
"i++",
"i++",
"i",
"{\n listA.add(sc.next());\n }",
"{\n listA.add(sc.next());\n }",
"listA.add(sc.next())",
"listA.add",
"listA",
"sc.next()",
"sc.next",
"sc",
"List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));",
"listB",
"new ArrayList<String>(new LinkedHashSet<>(listA))",
"System.out.println(listB.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"listB.size()",
"listB.size",
"listB",
"String[] args",
"args",
"public class Main{\n\tpublic static void main(String[] args) {\n\t Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n ArrayList<String> listA = new ArrayList<String>();\n \n for(int i=0; i<n; i++) {\n listA.add(sc.next());\n }\n List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));\n\n System.out.println(listB.size());\n\t}\n}",
"public class Main{\n\tpublic static void main(String[] args) {\n\t Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n ArrayList<String> listA = new ArrayList<String>();\n \n for(int i=0; i<n; i++) {\n listA.add(sc.next());\n }\n List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));\n\n System.out.println(listB.size());\n\t}\n}",
"Main"
] |
import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
ArrayList<String> listA = new ArrayList<String>();
for(int i=0; i<n; i++) {
listA.add(sc.next());
}
List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));
System.out.println(listB.size());
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
20,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
41,
13,
4,
18,
13,
14,
40,
4,
18,
13,
13,
30,
4,
18,
13,
13,
17,
4,
18,
18,
13,
13,
4,
18,
13,
4,
18,
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
],
[
8,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
25,
26
],
[
25,
27
],
[
20,
28
],
[
28,
29
],
[
29,
30
],
[
20,
31
],
[
32,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
36,
37
],
[
32,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
41,
42
],
[
40,
43
],
[
38,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
45,
48
],
[
45,
49
],
[
8,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
50,
55
],
[
55,
56
],
[
56,
57
],
[
8,
58
],
[
58,
59
],
[
59,
60
],
[
6,
61
],
[
61,
62
]
] |
[
"import java.util.*;\nclass Main {\n public static void main(String args[]) {\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n HashMap<String, Integer> hashmap = new HashMap<String, Integer>();\n for(int i = 0; i < n; i++){\n String check = sc.next();\n if(!hashmap.containsKey(check)){\n hashmap.put(check, 0);\n }\n }\n System.out.println(hashmap.size());\n sc.close();\n }\n}",
"import java.util.*;",
"util.*",
"java",
"class Main {\n public static void main(String args[]) {\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n HashMap<String, Integer> hashmap = new HashMap<String, Integer>();\n for(int i = 0; i < n; i++){\n String check = sc.next();\n if(!hashmap.containsKey(check)){\n hashmap.put(check, 0);\n }\n }\n System.out.println(hashmap.size());\n sc.close();\n }\n}",
"Main",
"public static void main(String args[]) {\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n HashMap<String, Integer> hashmap = new HashMap<String, Integer>();\n for(int i = 0; i < n; i++){\n String check = sc.next();\n if(!hashmap.containsKey(check)){\n hashmap.put(check, 0);\n }\n }\n System.out.println(hashmap.size());\n sc.close();\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int n = sc.nextInt();\n HashMap<String, Integer> hashmap = new HashMap<String, Integer>();\n for(int i = 0; i < n; i++){\n String check = sc.next();\n if(!hashmap.containsKey(check)){\n hashmap.put(check, 0);\n }\n }\n System.out.println(hashmap.size());\n sc.close();\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int n = sc.nextInt();",
"n",
"sc.nextInt()",
"sc.nextInt",
"sc",
"HashMap<String, Integer> hashmap = new HashMap<String, Integer>();",
"hashmap",
"new HashMap<String, Integer>()",
"for(int i = 0; i < n; i++){\n String check = sc.next();\n if(!hashmap.containsKey(check)){\n hashmap.put(check, 0);\n }\n }",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < n",
"i",
"n",
"i++",
"i++",
"i",
"{\n String check = sc.next();\n if(!hashmap.containsKey(check)){\n hashmap.put(check, 0);\n }\n }",
"{\n String check = sc.next();\n if(!hashmap.containsKey(check)){\n hashmap.put(check, 0);\n }\n }",
"String check = sc.next();",
"check",
"sc.next()",
"sc.next",
"sc",
"if(!hashmap.containsKey(check)){\n hashmap.put(check, 0);\n }",
"!hashmap.containsKey(check)",
"hashmap.containsKey(check)",
"hashmap.containsKey",
"hashmap",
"check",
"{\n hashmap.put(check, 0);\n }",
"hashmap.put(check, 0)",
"hashmap.put",
"hashmap",
"check",
"0",
"System.out.println(hashmap.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"hashmap.size()",
"hashmap.size",
"hashmap",
"sc.close()",
"sc.close",
"sc",
"String args[]",
"args"
] |
import java.util.*;
class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
HashMap<String, Integer> hashmap = new HashMap<String, Integer>();
for(int i = 0; i < n; i++){
String check = sc.next();
if(!hashmap.containsKey(check)){
hashmap.put(check, 0);
}
}
System.out.println(hashmap.size());
sc.close();
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
41,
13,
20,
0,
13,
4,
18,
13,
41,
13,
17,
41,
13,
20,
42,
2,
13,
13,
30,
4,
18,
13,
4,
18,
13,
40,
13,
41,
13,
13,
41,
13,
20,
4,
18,
18,
13,
13,
4,
18,
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
],
[
10,
11
],
[
10,
12
],
[
0,
13
],
[
13,
14
],
[
13,
15
],
[
0,
16
],
[
70,
17
],
[
70,
18
],
[
18,
19
],
[
18,
20
],
[
20,
21
],
[
21,
22
],
[
20,
23
],
[
23,
24
],
[
23,
25
],
[
20,
26
],
[
26,
27
],
[
26,
28
],
[
28,
29
],
[
29,
30
],
[
20,
31
],
[
31,
32
],
[
31,
33
],
[
20,
34
],
[
34,
35
],
[
34,
36
],
[
20,
37
],
[
37,
38
],
[
38,
39
],
[
38,
40
],
[
37,
41
],
[
41,
42
],
[
42,
43
],
[
43,
44
],
[
42,
45
],
[
45,
46
],
[
46,
47
],
[
41,
48
],
[
48,
49
],
[
20,
50
],
[
50,
51
],
[
50,
52
],
[
20,
53
],
[
53,
54
],
[
53,
55
],
[
20,
56
],
[
56,
57
],
[
57,
58
],
[
58,
59
],
[
58,
60
],
[
56,
61
],
[
61,
62
],
[
62,
63
],
[
20,
64
],
[
64,
65
],
[
65,
66
],
[
18,
67
],
[
67,
68
],
[
0,
69
],
[
69,
70
],
[
69,
71
]
] |
[
"import java.util.Scanner;\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.List;\nimport java.util.LinkedHashSet;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\tint N;\n Scanner sc = new Scanner(System.in);\n N = sc.nextInt();\n int i=0;\n ArrayList<String> strList = new ArrayList<String>();\n do {\n strList.add(sc.next());\n i++;\n}while(i<N);\n List<String> listA= strList;\n List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));\n\t\n System.out.println(listB.size());\n\tsc.close();\n\t\n\t\n\t}}",
"import java.util.Scanner;",
"Scanner",
"java.util",
"import java.util.ArrayList;",
"ArrayList",
"java.util",
"import java.util.Arrays;",
"Arrays",
"java.util",
"import java.util.List;",
"List",
"java.util",
"import java.util.LinkedHashSet;",
"LinkedHashSet",
"java.util",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\tint N;\n Scanner sc = new Scanner(System.in);\n N = sc.nextInt();\n int i=0;\n ArrayList<String> strList = new ArrayList<String>();\n do {\n strList.add(sc.next());\n i++;\n}while(i<N);\n List<String> listA= strList;\n List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));\n\t\n System.out.println(listB.size());\n\tsc.close();\n\t\n\t\n\t}}",
"Main",
"public static void main(String[] args) {\n\tint N;\n Scanner sc = new Scanner(System.in);\n N = sc.nextInt();\n int i=0;\n ArrayList<String> strList = new ArrayList<String>();\n do {\n strList.add(sc.next());\n i++;\n}while(i<N);\n List<String> listA= strList;\n List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));\n\t\n System.out.println(listB.size());\n\tsc.close();\n\t\n\t\n\t}",
"main",
"{\n\tint N;\n Scanner sc = new Scanner(System.in);\n N = sc.nextInt();\n int i=0;\n ArrayList<String> strList = new ArrayList<String>();\n do {\n strList.add(sc.next());\n i++;\n}while(i<N);\n List<String> listA= strList;\n List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));\n\t\n System.out.println(listB.size());\n\tsc.close();\n\t\n\t\n\t}",
"int N;",
"N",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"N = sc.nextInt()",
"N",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int i=0;",
"i",
"0",
"ArrayList<String> strList = new ArrayList<String>();",
"strList",
"new ArrayList<String>()",
"do {\n strList.add(sc.next());\n i++;\n}while(i<N);",
"i<N",
"i",
"N",
"{\n strList.add(sc.next());\n i++;\n}",
"strList.add(sc.next())",
"strList.add",
"strList",
"sc.next()",
"sc.next",
"sc",
"i++",
"i",
"List<String> listA= strList;",
"listA",
"strList",
"List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));",
"listB",
"new ArrayList<String>(new LinkedHashSet<>(listA))",
"System.out.println(listB.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"listB.size()",
"listB.size",
"listB",
"sc.close()",
"sc.close",
"sc",
"String[] args",
"args",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\tint N;\n Scanner sc = new Scanner(System.in);\n N = sc.nextInt();\n int i=0;\n ArrayList<String> strList = new ArrayList<String>();\n do {\n strList.add(sc.next());\n i++;\n}while(i<N);\n List<String> listA= strList;\n List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));\n\t\n System.out.println(listB.size());\n\tsc.close();\n\t\n\t\n\t}}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\tint N;\n Scanner sc = new Scanner(System.in);\n N = sc.nextInt();\n int i=0;\n ArrayList<String> strList = new ArrayList<String>();\n do {\n strList.add(sc.next());\n i++;\n}while(i<N);\n List<String> listA= strList;\n List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));\n\t\n System.out.println(listB.size());\n\tsc.close();\n\t\n\t\n\t}}",
"Main"
] |
import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.LinkedHashSet;
public class Main {
public static void main(String[] args) {
int N;
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
int i=0;
ArrayList<String> strList = new ArrayList<String>();
do {
strList.add(sc.next());
i++;
}while(i<N);
List<String> listA= strList;
List<String> listB = new ArrayList<String>(new LinkedHashSet<>(listA));
System.out.println(listB.size());
sc.close();
}}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
4,
18,
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
],
[
8,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
17,
20
],
[
20,
21
],
[
21,
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
],
[
37,
38
],
[
36,
39
],
[
39,
40
],
[
40,
41
],
[
8,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
42,
47
],
[
47,
48
],
[
48,
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\t\tScanner in = new Scanner(System.in);\n\t\tSet<String> items = new TreeSet<String>();\n\t\tfinal int N = Integer.parseInt(in.next());\n\t\tfor(int i = 0; i < N; i++) {\n\t\t\titems.add(in.next());\n\t\t}\n\t\tSystem.out.println(items.size());\n\t}\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner in = new Scanner(System.in);\n\t\tSet<String> items = new TreeSet<String>();\n\t\tfinal int N = Integer.parseInt(in.next());\n\t\tfor(int i = 0; i < N; i++) {\n\t\t\titems.add(in.next());\n\t\t}\n\t\tSystem.out.println(items.size());\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner in = new Scanner(System.in);\n\t\tSet<String> items = new TreeSet<String>();\n\t\tfinal int N = Integer.parseInt(in.next());\n\t\tfor(int i = 0; i < N; i++) {\n\t\t\titems.add(in.next());\n\t\t}\n\t\tSystem.out.println(items.size());\n\t}",
"main",
"{\n\t\tScanner in = new Scanner(System.in);\n\t\tSet<String> items = new TreeSet<String>();\n\t\tfinal int N = Integer.parseInt(in.next());\n\t\tfor(int i = 0; i < N; i++) {\n\t\t\titems.add(in.next());\n\t\t}\n\t\tSystem.out.println(items.size());\n\t}",
"Scanner in = new Scanner(System.in);",
"in",
"new Scanner(System.in)",
"Set<String> items = new TreeSet<String>();",
"items",
"new TreeSet<String>()",
"final int N = Integer.parseInt(in.next());",
"N",
"Integer.parseInt(in.next())",
"Integer.parseInt",
"Integer",
"in.next()",
"in.next",
"in",
"for(int i = 0; i < N; i++) {\n\t\t\titems.add(in.next());\n\t\t}",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < N",
"i",
"N",
"i++",
"i++",
"i",
"{\n\t\t\titems.add(in.next());\n\t\t}",
"{\n\t\t\titems.add(in.next());\n\t\t}",
"items.add(in.next())",
"items.add",
"items",
"in.next()",
"in.next",
"in",
"System.out.println(items.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"items.size()",
"items.size",
"items",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner in = new Scanner(System.in);\n\t\tSet<String> items = new TreeSet<String>();\n\t\tfinal int N = Integer.parseInt(in.next());\n\t\tfor(int i = 0; i < N; i++) {\n\t\t\titems.add(in.next());\n\t\t}\n\t\tSystem.out.println(items.size());\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner in = new Scanner(System.in);\n\t\tSet<String> items = new TreeSet<String>();\n\t\tfinal int N = Integer.parseInt(in.next());\n\t\tfor(int i = 0; i < N; i++) {\n\t\t\titems.add(in.next());\n\t\t}\n\t\tSystem.out.println(items.size());\n\t}\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
Set<String> items = new TreeSet<String>();
final int N = Integer.parseInt(in.next());
for(int i = 0; i < N; i++) {
items.add(in.next());
}
System.out.println(items.size());
}
}
|
[
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,
20,
41,
13,
17,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
41,
13,
4,
18,
13,
14,
40,
4,
18,
13,
13,
30,
4,
18,
13,
13,
40,
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
],
[
7,
8
],
[
7,
9
],
[
0,
10
],
[
69,
11
],
[
69,
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
],
[
14,
26
],
[
26,
27
],
[
26,
28
],
[
14,
29
],
[
29,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
29,
34
],
[
34,
35
],
[
34,
36
],
[
29,
37
],
[
37,
38
],
[
38,
39
],
[
29,
40
],
[
41,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
41,
47
],
[
47,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
49,
52
],
[
47,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
54,
57
],
[
53,
58
],
[
58,
59
],
[
14,
60
],
[
60,
61
],
[
61,
62
],
[
62,
63
],
[
62,
64
],
[
60,
65
],
[
12,
66
],
[
66,
67
],
[
0,
68
],
[
68,
69
],
[
68,
70
]
] |
[
"import java.util.HashSet;\nimport java.util.Scanner;\nimport java.util.Set;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n Set<String> set = new HashSet<>();\n int res = 0;\n for(int i = 0; i < N; i++) {\n String s = sc.next();\n if(!set.contains(s)) {\n set.add(s);\n res++;\n }\n }\n System.out.println(res);\n }\n}",
"import java.util.HashSet;",
"HashSet",
"java.util",
"import java.util.Scanner;",
"Scanner",
"java.util",
"import java.util.Set;",
"Set",
"java.util",
"public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n Set<String> set = new HashSet<>();\n int res = 0;\n for(int i = 0; i < N; i++) {\n String s = sc.next();\n if(!set.contains(s)) {\n set.add(s);\n res++;\n }\n }\n System.out.println(res);\n }\n}",
"Main",
"public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n Set<String> set = new HashSet<>();\n int res = 0;\n for(int i = 0; i < N; i++) {\n String s = sc.next();\n if(!set.contains(s)) {\n set.add(s);\n res++;\n }\n }\n System.out.println(res);\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n Set<String> set = new HashSet<>();\n int res = 0;\n for(int i = 0; i < N; i++) {\n String s = sc.next();\n if(!set.contains(s)) {\n set.add(s);\n res++;\n }\n }\n System.out.println(res);\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int N = sc.nextInt();",
"N",
"sc.nextInt()",
"sc.nextInt",
"sc",
"Set<String> set = new HashSet<>();",
"set",
"new HashSet<>()",
"int res = 0;",
"res",
"0",
"for(int i = 0; i < N; i++) {\n String s = sc.next();\n if(!set.contains(s)) {\n set.add(s);\n res++;\n }\n }",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < N",
"i",
"N",
"i++",
"i++",
"i",
"{\n String s = sc.next();\n if(!set.contains(s)) {\n set.add(s);\n res++;\n }\n }",
"{\n String s = sc.next();\n if(!set.contains(s)) {\n set.add(s);\n res++;\n }\n }",
"String s = sc.next();",
"s",
"sc.next()",
"sc.next",
"sc",
"if(!set.contains(s)) {\n set.add(s);\n res++;\n }",
"!set.contains(s)",
"set.contains(s)",
"set.contains",
"set",
"s",
"{\n set.add(s);\n res++;\n }",
"set.add(s)",
"set.add",
"set",
"s",
"res++",
"res",
"System.out.println(res)",
"System.out.println",
"System.out",
"System",
"System.out",
"res",
"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 Set<String> set = new HashSet<>();\n int res = 0;\n for(int i = 0; i < N; i++) {\n String s = sc.next();\n if(!set.contains(s)) {\n set.add(s);\n res++;\n }\n }\n System.out.println(res);\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 Set<String> set = new HashSet<>();\n int res = 0;\n for(int i = 0; i < N; i++) {\n String s = sc.next();\n if(!set.contains(s)) {\n set.add(s);\n res++;\n }\n }\n System.out.println(res);\n }\n}",
"Main"
] |
import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
Set<String> set = new HashSet<>();
int res = 0;
for(int i = 0; i < N; i++) {
String s = sc.next();
if(!set.contains(s)) {
set.add(s);
res++;
}
}
System.out.println(res);
}
}
|
[
7,
15,
13,
17,
6,
13,
41,
13,
20,
12,
13,
30,
41,
13,
4,
18,
13,
41,
13,
17,
41,
13,
17,
41,
13,
20,
13,
41,
13,
17,
11,
1,
0,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
0,
18,
13,
13,
4,
18,
13,
4,
18,
13,
13,
11,
1,
0,
13,
17,
2,
13,
2,
13,
17,
1,
40,
13,
30,
30,
14,
40,
4,
18,
18,
13,
13,
18,
13,
2,
13,
17,
40,
13,
4,
18,
18,
13,
13,
13,
23,
13
] |
[
[
0,
1
],
[
1,
2
],
[
1,
3
],
[
0,
4
],
[
4,
5
],
[
4,
6
],
[
6,
7
],
[
6,
8
],
[
4,
9
],
[
9,
10
],
[
9,
11
],
[
11,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
11,
17
],
[
17,
18
],
[
17,
19
],
[
11,
20
],
[
20,
21
],
[
20,
22
],
[
11,
23
],
[
23,
24
],
[
23,
25
],
[
11,
27
],
[
27,
28
],
[
27,
29
],
[
11,
30
],
[
30,
31
],
[
31,
32
],
[
32,
33
],
[
32,
34
],
[
30,
35
],
[
35,
36
],
[
35,
37
],
[
30,
38
],
[
38,
39
],
[
39,
40
],
[
30,
41
],
[
42,
42
],
[
42,
43
],
[
43,
44
],
[
44,
45
],
[
44,
46
],
[
43,
47
],
[
47,
48
],
[
48,
49
],
[
11,
50
],
[
50,
51
],
[
51,
52
],
[
50,
53
],
[
11,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
54,
59
],
[
59,
60
],
[
59,
61
],
[
61,
62
],
[
61,
63
],
[
54,
64
],
[
64,
65
],
[
65,
66
],
[
54,
67
],
[
68,
68
],
[
68,
69
],
[
69,
70
],
[
70,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
71,
76
],
[
76,
77
],
[
76,
78
],
[
78,
79
],
[
78,
80
],
[
69,
81
],
[
81,
82
],
[
11,
83
],
[
83,
84
],
[
84,
85
],
[
85,
86
],
[
85,
87
],
[
83,
88
],
[
9,
89
],
[
89,
90
]
] |
[
"import java.util.*;\nclass Main{\n static Scanner sc=new Scanner(System.in);\n public static void main(String[] args){\n int N = sc.nextInt();\n int i=0;\n int count=1;\n String S[]=new String[N];\n int k=0;\n for(i=0;i<N;i++){\n S[i]=sc.next();\n }\n Arrays.sort(S);\n for(i=0;i<(N-1);i++){\n if(!(S[i].equals(S[i+1])))\n count++;\n }\n System.out.println(count);\n }\n}",
"import java.util.*;",
"util.*",
"java",
"class Main{\n static Scanner sc=new Scanner(System.in);\n public static void main(String[] args){\n int N = sc.nextInt();\n int i=0;\n int count=1;\n String S[]=new String[N];\n int k=0;\n for(i=0;i<N;i++){\n S[i]=sc.next();\n }\n Arrays.sort(S);\n for(i=0;i<(N-1);i++){\n if(!(S[i].equals(S[i+1])))\n count++;\n }\n System.out.println(count);\n }\n}",
"Main",
"static Scanner sc=new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"public static void main(String[] args){\n int N = sc.nextInt();\n int i=0;\n int count=1;\n String S[]=new String[N];\n int k=0;\n for(i=0;i<N;i++){\n S[i]=sc.next();\n }\n Arrays.sort(S);\n for(i=0;i<(N-1);i++){\n if(!(S[i].equals(S[i+1])))\n count++;\n }\n System.out.println(count);\n }",
"main",
"{\n int N = sc.nextInt();\n int i=0;\n int count=1;\n String S[]=new String[N];\n int k=0;\n for(i=0;i<N;i++){\n S[i]=sc.next();\n }\n Arrays.sort(S);\n for(i=0;i<(N-1);i++){\n if(!(S[i].equals(S[i+1])))\n count++;\n }\n System.out.println(count);\n }",
"int N = sc.nextInt();",
"N",
"sc.nextInt()",
"sc.nextInt",
"sc",
"int i=0;",
"i",
"0",
"int count=1;",
"count",
"1",
"String S[]=new String[N];",
"S",
"new String[N]",
"N",
"int k=0;",
"k",
"0",
"for(i=0;i<N;i++){\n S[i]=sc.next();\n }",
"i=0;",
"i=0",
"i",
"0",
"i<N",
"i",
"N",
"i++",
"i++",
"i",
"{\n S[i]=sc.next();\n }",
"{\n S[i]=sc.next();\n }",
"S[i]=sc.next()",
"S[i]",
"S",
"i",
"sc.next()",
"sc.next",
"sc",
"Arrays.sort(S)",
"Arrays.sort",
"Arrays",
"S",
"for(i=0;i<(N-1);i++){\n if(!(S[i].equals(S[i+1])))\n count++;\n }",
"i=0;",
"i=0",
"i",
"0",
"i<(N-1)",
"i",
"(N-1)",
"N",
"1",
"i++",
"i++",
"i",
"{\n if(!(S[i].equals(S[i+1])))\n count++;\n }",
"{\n if(!(S[i].equals(S[i+1])))\n count++;\n }",
"if(!(S[i].equals(S[i+1])))\n count++;",
"!(S[i].equals(S[i+1]))",
"(S[i].equals(S[i+1]))",
"S[i].equals",
"S[i]",
"S",
"i",
"S[i+1]",
"S",
"i+1",
"i",
"1",
"count++",
"count",
"System.out.println(count)",
"System.out.println",
"System.out",
"System",
"System.out",
"count",
"String[] args",
"args"
] |
import java.util.*;
class Main{
static Scanner sc=new Scanner(System.in);
public static void main(String[] args){
int N = sc.nextInt();
int i=0;
int count=1;
String S[]=new String[N];
int k=0;
for(i=0;i<N;i++){
S[i]=sc.next();
}
Arrays.sort(S);
for(i=0;i<(N-1);i++){
if(!(S[i].equals(S[i+1])))
count++;
}
System.out.println(count);
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
13,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
41,
13,
4,
18,
13,
14,
40,
4,
18,
13,
13,
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
],
[
65,
11
],
[
65,
12
],
[
12,
13
],
[
12,
14
],
[
14,
15
],
[
15,
16
],
[
15,
17
],
[
14,
18
],
[
18,
19
],
[
18,
20
],
[
14,
21
],
[
21,
22
],
[
21,
23
],
[
23,
24
],
[
24,
25
],
[
14,
26
],
[
26,
27
],
[
27,
28
],
[
28,
29
],
[
28,
30
],
[
26,
31
],
[
31,
32
],
[
31,
33
],
[
26,
34
],
[
34,
35
],
[
35,
36
],
[
26,
37
],
[
38,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
42,
43
],
[
38,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
47,
48
],
[
46,
49
],
[
44,
50
],
[
50,
51
],
[
51,
52
],
[
50,
53
],
[
14,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
56,
58
],
[
54,
59
],
[
59,
60
],
[
60,
61
],
[
12,
62
],
[
62,
63
],
[
0,
64
],
[
64,
65
],
[
64,
66
]
] |
[
"import java.util.HashSet;\nimport java.util.Scanner;\nimport java.util.Set;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tSet<String> items = new HashSet<String>();\n\t\tint n = sc.nextInt();\n\t\tfor(int i=0;i<n;i++) {\n\t\t\tString item = sc.next();\n\t\t\tif(!items.contains(item)) items.add(item);\n\t\t}\n\t\tSystem.out.println(items.size());\n\t}\n}",
"import java.util.HashSet;",
"HashSet",
"java.util",
"import java.util.Scanner;",
"Scanner",
"java.util",
"import java.util.Set;",
"Set",
"java.util",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tSet<String> items = new HashSet<String>();\n\t\tint n = sc.nextInt();\n\t\tfor(int i=0;i<n;i++) {\n\t\t\tString item = sc.next();\n\t\t\tif(!items.contains(item)) items.add(item);\n\t\t}\n\t\tSystem.out.println(items.size());\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tSet<String> items = new HashSet<String>();\n\t\tint n = sc.nextInt();\n\t\tfor(int i=0;i<n;i++) {\n\t\t\tString item = sc.next();\n\t\t\tif(!items.contains(item)) items.add(item);\n\t\t}\n\t\tSystem.out.println(items.size());\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\tSet<String> items = new HashSet<String>();\n\t\tint n = sc.nextInt();\n\t\tfor(int i=0;i<n;i++) {\n\t\t\tString item = sc.next();\n\t\t\tif(!items.contains(item)) items.add(item);\n\t\t}\n\t\tSystem.out.println(items.size());\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"Set<String> items = new HashSet<String>();",
"items",
"new HashSet<String>()",
"int n = sc.nextInt();",
"n",
"sc.nextInt()",
"sc.nextInt",
"sc",
"for(int i=0;i<n;i++) {\n\t\t\tString item = sc.next();\n\t\t\tif(!items.contains(item)) items.add(item);\n\t\t}",
"int i=0;",
"int i=0;",
"i",
"0",
"i<n",
"i",
"n",
"i++",
"i++",
"i",
"{\n\t\t\tString item = sc.next();\n\t\t\tif(!items.contains(item)) items.add(item);\n\t\t}",
"{\n\t\t\tString item = sc.next();\n\t\t\tif(!items.contains(item)) items.add(item);\n\t\t}",
"String item = sc.next();",
"item",
"sc.next()",
"sc.next",
"sc",
"if(!items.contains(item)) items.add(item);",
"!items.contains(item)",
"items.contains(item)",
"items.contains",
"items",
"item",
"items.add(item)",
"items.add",
"items",
"item",
"System.out.println(items.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"items.size()",
"items.size",
"items",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tSet<String> items = new HashSet<String>();\n\t\tint n = sc.nextInt();\n\t\tfor(int i=0;i<n;i++) {\n\t\t\tString item = sc.next();\n\t\t\tif(!items.contains(item)) items.add(item);\n\t\t}\n\t\tSystem.out.println(items.size());\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tSet<String> items = new HashSet<String>();\n\t\tint n = sc.nextInt();\n\t\tfor(int i=0;i<n;i++) {\n\t\t\tString item = sc.next();\n\t\t\tif(!items.contains(item)) items.add(item);\n\t\t}\n\t\tSystem.out.println(items.size());\n\t}\n}",
"Main"
] |
import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
Set<String> items = new HashSet<String>();
int n = sc.nextInt();
for(int i=0;i<n;i++) {
String item = sc.next();
if(!items.contains(item)) items.add(item);
}
System.out.println(items.size());
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
20,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
41,
13,
4,
18,
13,
4,
18,
13,
13,
0,
13,
17,
41,
13,
20,
4,
18,
18,
13,
13,
4,
18,
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
],
[
8,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
25,
26
],
[
25,
27
],
[
20,
28
],
[
28,
29
],
[
29,
30
],
[
20,
31
],
[
32,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
36,
37
],
[
32,
38
],
[
38,
39
],
[
39,
40
],
[
38,
41
],
[
32,
42
],
[
42,
43
],
[
42,
44
],
[
8,
45
],
[
45,
46
],
[
45,
47
],
[
8,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
48,
53
],
[
53,
54
],
[
54,
55
],
[
6,
56
],
[
56,
57
],
[
0,
58
],
[
58,
59
],
[
58,
60
]
] |
[
"\nimport java.util.*;\npublic class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\t// 整数の入力\n\t\tint n = sc.nextInt();\n\t\tList<String> listS = new ArrayList<String>();\n\t\tfor (int i = 0; i < n; i++) {\n\t\t\tString s = sc.next();\n\t\t\tlistS.add(s);\n\t\t\ts = null;\n\t\t}\n\t\tList<String> listSsec = new ArrayList<String>(new LinkedHashSet<>(listS));\n\t\tSystem.out.println(listSsec.size());\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\t// 整数の入力\n\t\tint n = sc.nextInt();\n\t\tList<String> listS = new ArrayList<String>();\n\t\tfor (int i = 0; i < n; i++) {\n\t\t\tString s = sc.next();\n\t\t\tlistS.add(s);\n\t\t\ts = null;\n\t\t}\n\t\tList<String> listSsec = new ArrayList<String>(new LinkedHashSet<>(listS));\n\t\tSystem.out.println(listSsec.size());\n\t}\n}",
"Main",
"public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\t// 整数の入力\n\t\tint n = sc.nextInt();\n\t\tList<String> listS = new ArrayList<String>();\n\t\tfor (int i = 0; i < n; i++) {\n\t\t\tString s = sc.next();\n\t\t\tlistS.add(s);\n\t\t\ts = null;\n\t\t}\n\t\tList<String> listSsec = new ArrayList<String>(new LinkedHashSet<>(listS));\n\t\tSystem.out.println(listSsec.size());\n\t}",
"main",
"{\n\t\tScanner sc = new Scanner(System.in);\n\t\t// 整数の入力\n\t\tint n = sc.nextInt();\n\t\tList<String> listS = new ArrayList<String>();\n\t\tfor (int i = 0; i < n; i++) {\n\t\t\tString s = sc.next();\n\t\t\tlistS.add(s);\n\t\t\ts = null;\n\t\t}\n\t\tList<String> listSsec = new ArrayList<String>(new LinkedHashSet<>(listS));\n\t\tSystem.out.println(listSsec.size());\n\t}",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int n = sc.nextInt();",
"n",
"sc.nextInt()",
"sc.nextInt",
"sc",
"List<String> listS = new ArrayList<String>();",
"listS",
"new ArrayList<String>()",
"for (int i = 0; i < n; i++) {\n\t\t\tString s = sc.next();\n\t\t\tlistS.add(s);\n\t\t\ts = null;\n\t\t}",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < n",
"i",
"n",
"i++",
"i++",
"i",
"{\n\t\t\tString s = sc.next();\n\t\t\tlistS.add(s);\n\t\t\ts = null;\n\t\t}",
"{\n\t\t\tString s = sc.next();\n\t\t\tlistS.add(s);\n\t\t\ts = null;\n\t\t}",
"String s = sc.next();",
"s",
"sc.next()",
"sc.next",
"sc",
"listS.add(s)",
"listS.add",
"listS",
"s",
"s = null",
"s",
"null",
"List<String> listSsec = new ArrayList<String>(new LinkedHashSet<>(listS));",
"listSsec",
"new ArrayList<String>(new LinkedHashSet<>(listS))",
"System.out.println(listSsec.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"listSsec.size()",
"listSsec.size",
"listSsec",
"String[] args",
"args",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\t// 整数の入力\n\t\tint n = sc.nextInt();\n\t\tList<String> listS = new ArrayList<String>();\n\t\tfor (int i = 0; i < n; i++) {\n\t\t\tString s = sc.next();\n\t\t\tlistS.add(s);\n\t\t\ts = null;\n\t\t}\n\t\tList<String> listSsec = new ArrayList<String>(new LinkedHashSet<>(listS));\n\t\tSystem.out.println(listSsec.size());\n\t}\n}",
"public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\t// 整数の入力\n\t\tint n = sc.nextInt();\n\t\tList<String> listS = new ArrayList<String>();\n\t\tfor (int i = 0; i < n; i++) {\n\t\t\tString s = sc.next();\n\t\t\tlistS.add(s);\n\t\t\ts = null;\n\t\t}\n\t\tList<String> listSsec = new ArrayList<String>(new LinkedHashSet<>(listS));\n\t\tSystem.out.println(listSsec.size());\n\t}\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
// 整数の入力
int n = sc.nextInt();
List<String> listS = new ArrayList<String>();
for (int i = 0; i < n; i++) {
String s = sc.next();
listS.add(s);
s = null;
}
List<String> listSsec = new ArrayList<String>(new LinkedHashSet<>(listS));
System.out.println(listSsec.size());
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
13,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
41,
13,
4,
18,
13,
14,
40,
4,
18,
13,
13,
30,
4,
18,
13,
13,
17,
4,
18,
18,
13,
13,
4,
18,
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
],
[
8,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
25,
26
],
[
25,
27
],
[
20,
28
],
[
28,
29
],
[
29,
30
],
[
20,
31
],
[
32,
32
],
[
32,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
36,
37
],
[
32,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
41,
42
],
[
40,
43
],
[
38,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
45,
48
],
[
45,
49
],
[
8,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
50,
55
],
[
55,
56
],
[
56,
57
],
[
6,
58
],
[
58,
59
]
] |
[
"import java.util.*;\nclass Main{\n public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n HashMap<String,String> map = new HashMap<>();\n int N = sc.nextInt();\n for (int i = 0; i < N; i++) {\n String k = sc.next();\n if(!map.containsKey(k)){\n map.put(k, \"a\");\n }\n \n }\n System.out.println(map.size());\n\n }\n}",
"import java.util.*;",
"util.*",
"java",
"class Main{\n public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n HashMap<String,String> map = new HashMap<>();\n int N = sc.nextInt();\n for (int i = 0; i < N; i++) {\n String k = sc.next();\n if(!map.containsKey(k)){\n map.put(k, \"a\");\n }\n \n }\n System.out.println(map.size());\n\n }\n}",
"Main",
"public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n HashMap<String,String> map = new HashMap<>();\n int N = sc.nextInt();\n for (int i = 0; i < N; i++) {\n String k = sc.next();\n if(!map.containsKey(k)){\n map.put(k, \"a\");\n }\n \n }\n System.out.println(map.size());\n\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n HashMap<String,String> map = new HashMap<>();\n int N = sc.nextInt();\n for (int i = 0; i < N; i++) {\n String k = sc.next();\n if(!map.containsKey(k)){\n map.put(k, \"a\");\n }\n \n }\n System.out.println(map.size());\n\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"HashMap<String,String> map = new HashMap<>();",
"map",
"new HashMap<>()",
"int N = sc.nextInt();",
"N",
"sc.nextInt()",
"sc.nextInt",
"sc",
"for (int i = 0; i < N; i++) {\n String k = sc.next();\n if(!map.containsKey(k)){\n map.put(k, \"a\");\n }\n \n }",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < N",
"i",
"N",
"i++",
"i++",
"i",
"{\n String k = sc.next();\n if(!map.containsKey(k)){\n map.put(k, \"a\");\n }\n \n }",
"{\n String k = sc.next();\n if(!map.containsKey(k)){\n map.put(k, \"a\");\n }\n \n }",
"String k = sc.next();",
"k",
"sc.next()",
"sc.next",
"sc",
"if(!map.containsKey(k)){\n map.put(k, \"a\");\n }",
"!map.containsKey(k)",
"map.containsKey(k)",
"map.containsKey",
"map",
"k",
"{\n map.put(k, \"a\");\n }",
"map.put(k, \"a\")",
"map.put",
"map",
"k",
"\"a\"",
"System.out.println(map.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"map.size()",
"map.size",
"map",
"String args[]",
"args"
] |
import java.util.*;
class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
HashMap<String,String> map = new HashMap<>();
int N = sc.nextInt();
for (int i = 0; i < N; i++) {
String k = sc.next();
if(!map.containsKey(k)){
map.put(k, "a");
}
}
System.out.println(map.size());
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
13,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
41,
13,
4,
18,
13,
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
],
[
10,
11
],
[
10,
12
],
[
0,
13
],
[
62,
14
],
[
62,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
18,
20
],
[
17,
21
],
[
21,
22
],
[
21,
23
],
[
17,
24
],
[
24,
25
],
[
24,
26
],
[
26,
27
],
[
27,
28
],
[
17,
29
],
[
29,
30
],
[
30,
31
],
[
31,
32
],
[
31,
33
],
[
29,
34
],
[
34,
35
],
[
34,
36
],
[
29,
37
],
[
37,
38
],
[
38,
39
],
[
29,
40
],
[
41,
41
],
[
41,
42
],
[
42,
43
],
[
42,
44
],
[
44,
45
],
[
45,
46
],
[
41,
47
],
[
47,
48
],
[
48,
49
],
[
47,
50
],
[
17,
51
],
[
51,
52
],
[
52,
53
],
[
53,
54
],
[
53,
55
],
[
51,
56
],
[
56,
57
],
[
57,
58
],
[
15,
59
],
[
59,
60
],
[
0,
61
],
[
61,
62
],
[
61,
63
]
] |
[
"import java.util.ArrayList;\nimport java.util.HashSet;\nimport java.util.Scanner;\nimport java.util.Set;\n\npublic class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n HashSet<String> PrizeSet = new HashSet<>();\n int num = sc.nextInt();\n for(int i = 0;i < num;i++){\n String Prize = sc.next();\n PrizeSet.add(Prize);\n }\n System.out.println(PrizeSet.size());\n }\n}",
"import java.util.ArrayList;",
"ArrayList",
"java.util",
"import java.util.HashSet;",
"HashSet",
"java.util",
"import java.util.Scanner;",
"Scanner",
"java.util",
"import java.util.Set;",
"Set",
"java.util",
"public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n HashSet<String> PrizeSet = new HashSet<>();\n int num = sc.nextInt();\n for(int i = 0;i < num;i++){\n String Prize = sc.next();\n PrizeSet.add(Prize);\n }\n System.out.println(PrizeSet.size());\n }\n}",
"Main",
"public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n HashSet<String> PrizeSet = new HashSet<>();\n int num = sc.nextInt();\n for(int i = 0;i < num;i++){\n String Prize = sc.next();\n PrizeSet.add(Prize);\n }\n System.out.println(PrizeSet.size());\n }",
"main",
"{\n Scanner sc = new Scanner(System.in);\n HashSet<String> PrizeSet = new HashSet<>();\n int num = sc.nextInt();\n for(int i = 0;i < num;i++){\n String Prize = sc.next();\n PrizeSet.add(Prize);\n }\n System.out.println(PrizeSet.size());\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"HashSet<String> PrizeSet = new HashSet<>();",
"PrizeSet",
"new HashSet<>()",
"int num = sc.nextInt();",
"num",
"sc.nextInt()",
"sc.nextInt",
"sc",
"for(int i = 0;i < num;i++){\n String Prize = sc.next();\n PrizeSet.add(Prize);\n }",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < num",
"i",
"num",
"i++",
"i++",
"i",
"{\n String Prize = sc.next();\n PrizeSet.add(Prize);\n }",
"{\n String Prize = sc.next();\n PrizeSet.add(Prize);\n }",
"String Prize = sc.next();",
"Prize",
"sc.next()",
"sc.next",
"sc",
"PrizeSet.add(Prize)",
"PrizeSet.add",
"PrizeSet",
"Prize",
"System.out.println(PrizeSet.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"PrizeSet.size()",
"PrizeSet.size",
"PrizeSet",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n HashSet<String> PrizeSet = new HashSet<>();\n int num = sc.nextInt();\n for(int i = 0;i < num;i++){\n String Prize = sc.next();\n PrizeSet.add(Prize);\n }\n System.out.println(PrizeSet.size());\n }\n}",
"public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n HashSet<String> PrizeSet = new HashSet<>();\n int num = sc.nextInt();\n for(int i = 0;i < num;i++){\n String Prize = sc.next();\n PrizeSet.add(Prize);\n }\n System.out.println(PrizeSet.size());\n }\n}",
"Main"
] |
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
HashSet<String> PrizeSet = new HashSet<>();
int num = sc.nextInt();
for(int i = 0;i < num;i++){
String Prize = sc.next();
PrizeSet.add(Prize);
}
System.out.println(PrizeSet.size());
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
41,
13,
20,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
0,
13,
4,
18,
13,
4,
18,
13,
13,
4,
18,
18,
13,
13,
4,
18,
13,
4,
18,
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
],
[
21,
22
],
[
11,
23
],
[
23,
24
],
[
11,
25
],
[
25,
26
],
[
25,
27
],
[
11,
28
],
[
28,
29
],
[
29,
30
],
[
30,
31
],
[
30,
32
],
[
28,
33
],
[
33,
34
],
[
33,
35
],
[
28,
36
],
[
36,
37
],
[
37,
38
],
[
28,
39
],
[
40,
40
],
[
40,
41
],
[
41,
42
],
[
41,
43
],
[
43,
44
],
[
44,
45
],
[
40,
46
],
[
46,
47
],
[
47,
48
],
[
46,
49
],
[
11,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
52,
54
],
[
50,
55
],
[
55,
56
],
[
56,
57
],
[
11,
58
],
[
58,
59
],
[
59,
60
],
[
9,
61
],
[
61,
62
]
] |
[
"import java.util.*;\nimport java.util.stream.Collectors;\n\nclass Main {\n public static void main(String[] args) throws Exception {\n final Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n sc.nextLine();\n String str;\n Set<String> A = new HashSet<String>();\n for(int i = 0 ; i < N ; i++){\n str = sc.nextLine();\n A.add(str);\n }\n System.out.println(A.size()); \n sc.close();\n }\n}",
"import java.util.*;",
"util.*",
"java",
"import java.util.stream.Collectors;",
"Collectors",
"java.util.stream",
"class Main {\n public static void main(String[] args) throws Exception {\n final Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n sc.nextLine();\n String str;\n Set<String> A = new HashSet<String>();\n for(int i = 0 ; i < N ; i++){\n str = sc.nextLine();\n A.add(str);\n }\n System.out.println(A.size()); \n sc.close();\n }\n}",
"Main",
"public static void main(String[] args) throws Exception {\n final Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n sc.nextLine();\n String str;\n Set<String> A = new HashSet<String>();\n for(int i = 0 ; i < N ; i++){\n str = sc.nextLine();\n A.add(str);\n }\n System.out.println(A.size()); \n sc.close();\n }",
"main",
"{\n final Scanner sc = new Scanner(System.in);\n int N = sc.nextInt();\n sc.nextLine();\n String str;\n Set<String> A = new HashSet<String>();\n for(int i = 0 ; i < N ; i++){\n str = sc.nextLine();\n A.add(str);\n }\n System.out.println(A.size()); \n sc.close();\n }",
"final Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int N = sc.nextInt();",
"N",
"sc.nextInt()",
"sc.nextInt",
"sc",
"sc.nextLine()",
"sc.nextLine",
"sc",
"String str;",
"str",
"Set<String> A = new HashSet<String>();",
"A",
"new HashSet<String>()",
"for(int i = 0 ; i < N ; i++){\n str = sc.nextLine();\n A.add(str);\n }",
"int i = 0 ;",
"int i = 0 ;",
"i",
"0",
"i < N",
"i",
"N",
"i++",
"i++",
"i",
"{\n str = sc.nextLine();\n A.add(str);\n }",
"{\n str = sc.nextLine();\n A.add(str);\n }",
"str = sc.nextLine()",
"str",
"sc.nextLine()",
"sc.nextLine",
"sc",
"A.add(str)",
"A.add",
"A",
"str",
"System.out.println(A.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"A.size()",
"A.size",
"A",
"sc.close()",
"sc.close",
"sc",
"String[] args",
"args"
] |
import java.util.*;
import java.util.stream.Collectors;
class Main {
public static void main(String[] args) throws Exception {
final Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
sc.nextLine();
String str;
Set<String> A = new HashSet<String>();
for(int i = 0 ; i < N ; i++){
str = sc.nextLine();
A.add(str);
}
System.out.println(A.size());
sc.close();
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
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,
20,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
4,
18,
13,
4,
18,
13,
0,
13,
4,
18,
4,
18,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
4,
18,
13,
23,
13,
6,
13,
41,
13,
41,
13,
12,
13,
30,
0,
13,
20,
0,
13,
17,
23,
13,
12,
13,
30,
14,
2,
2,
13,
17,
40,
4,
18,
13,
30,
38,
5,
13,
30,
37,
20,
30,
0,
13,
20,
29,
4,
18,
13,
12,
13,
30,
14,
2,
2,
13,
17,
40,
4,
18,
13,
30,
38,
5,
13,
30,
37,
20,
30,
29,
4,
18,
13,
29,
4,
18,
13,
17,
12,
13,
30,
29,
4,
18,
13,
4,
13,
12,
13,
30,
29,
4,
18,
13,
4,
13,
12,
13,
30,
29,
4,
18,
13,
4,
13,
12,
13,
30,
41,
13,
20,
13,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
0,
18,
13,
13,
4,
13,
29,
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
],
[
13,
14
],
[
13,
15
],
[
0,
16
],
[
16,
17
],
[
16,
18
],
[
0,
19
],
[
19,
20
],
[
19,
21
],
[
0,
22
],
[
22,
23
],
[
22,
24
],
[
0,
25
],
[
212,
26
],
[
212,
27
],
[
27,
28
],
[
27,
29
],
[
29,
30
],
[
30,
31
],
[
30,
32
],
[
29,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
36,
37
],
[
29,
38
],
[
38,
39
],
[
38,
40
],
[
29,
41
],
[
41,
42
],
[
42,
43
],
[
43,
44
],
[
43,
45
],
[
41,
46
],
[
46,
47
],
[
46,
48
],
[
41,
49
],
[
49,
50
],
[
50,
51
],
[
41,
52
],
[
53,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
54,
57
],
[
57,
58
],
[
58,
59
],
[
29,
60
],
[
60,
61
],
[
60,
62
],
[
62,
63
],
[
63,
64
],
[
64,
65
],
[
65,
66
],
[
66,
67
],
[
67,
68
],
[
62,
69
],
[
69,
70
],
[
70,
71
],
[
29,
72
],
[
72,
73
],
[
73,
74
],
[
74,
75
],
[
74,
76
],
[
72,
77
],
[
77,
78
],
[
78,
79
],
[
27,
80
],
[
80,
81
],
[
212,
82
],
[
82,
83
],
[
82,
84
],
[
84,
85
],
[
82,
86
],
[
86,
87
],
[
82,
88
],
[
88,
89
],
[
88,
90
],
[
90,
91
],
[
91,
92
],
[
91,
93
],
[
90,
94
],
[
94,
95
],
[
94,
96
],
[
88,
97
],
[
97,
98
],
[
82,
99
],
[
99,
100
],
[
99,
101
],
[
101,
102
],
[
102,
103
],
[
103,
104
],
[
104,
105
],
[
104,
106
],
[
103,
107
],
[
107,
108
],
[
108,
109
],
[
109,
110
],
[
102,
111
],
[
111,
112
],
[
112,
113
],
[
113,
114
],
[
113,
115
],
[
115,
116
],
[
116,
117
],
[
112,
118
],
[
118,
119
],
[
119,
120
],
[
119,
121
],
[
101,
122
],
[
122,
123
],
[
123,
124
],
[
124,
125
],
[
82,
126
],
[
126,
127
],
[
126,
128
],
[
128,
129
],
[
129,
130
],
[
130,
131
],
[
131,
132
],
[
131,
133
],
[
130,
134
],
[
134,
135
],
[
135,
136
],
[
136,
137
],
[
129,
138
],
[
138,
139
],
[
139,
140
],
[
140,
141
],
[
140,
142
],
[
142,
143
],
[
143,
144
],
[
139,
145
],
[
145,
146
],
[
146,
147
],
[
147,
148
],
[
148,
149
],
[
128,
150
],
[
150,
151
],
[
151,
152
],
[
152,
153
],
[
151,
154
],
[
82,
155
],
[
155,
156
],
[
155,
157
],
[
157,
158
],
[
158,
159
],
[
159,
160
],
[
160,
161
],
[
159,
162
],
[
162,
163
],
[
82,
164
],
[
164,
165
],
[
164,
166
],
[
166,
167
],
[
167,
168
],
[
168,
169
],
[
169,
170
],
[
168,
171
],
[
171,
172
],
[
82,
173
],
[
173,
174
],
[
173,
175
],
[
175,
176
],
[
176,
177
],
[
177,
178
],
[
178,
179
],
[
177,
180
],
[
180,
181
],
[
82,
182
],
[
182,
183
],
[
182,
184
],
[
184,
185
],
[
185,
186
],
[
185,
187
],
[
184,
189
],
[
189,
190
],
[
190,
191
],
[
191,
192
],
[
191,
193
],
[
189,
194
],
[
194,
195
],
[
194,
196
],
[
189,
197
],
[
197,
198
],
[
198,
199
],
[
189,
200
],
[
200,
201
],
[
201,
202
],
[
202,
203
],
[
202,
204
],
[
201,
205
],
[
205,
206
],
[
184,
207
],
[
207,
208
],
[
182,
209
],
[
209,
210
],
[
0,
211
],
[
211,
212
],
[
211,
213
]
] |
[
"import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.InputStreamReader;\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.StringTokenizer;\nimport java.util.stream.Collectors;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\tFastScanner sc = new FastScanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tList<String> arr = new ArrayList<>();\n\t\tfor (int i = 0; i < a; i++) {\n\t\t\tarr.add(sc.next());\n\t\t}\n\t\tarr = arr.stream().distinct().collect(Collectors.toList());\n\t\tSystem.out.println(arr.size());\n\t}\n\n\tstatic class FastScanner {\n\t\tprivate BufferedReader reader;\n\t\tprivate StringTokenizer tokenizer;\n\n\t\tpublic FastScanner(InputStream in) {\n\t\t\treader = new BufferedReader(new InputStreamReader(in));\n\t\t\ttokenizer = null;\n\t\t}\n\n\t\tpublic String next() {\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn tokenizer.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() {\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\treturn reader.readLine();\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn tokenizer.nextToken(\"\\n\");\n\t\t}\n\n\t\tpublic long nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic long[] nextLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\t}\n}",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStream;",
"InputStream",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"import java.util.ArrayList;",
"ArrayList",
"java.util",
"import java.util.List;",
"List",
"java.util",
"import java.util.StringTokenizer;",
"StringTokenizer",
"java.util",
"import java.util.stream.Collectors;",
"Collectors",
"java.util.stream",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tFastScanner sc = new FastScanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tList<String> arr = new ArrayList<>();\n\t\tfor (int i = 0; i < a; i++) {\n\t\t\tarr.add(sc.next());\n\t\t}\n\t\tarr = arr.stream().distinct().collect(Collectors.toList());\n\t\tSystem.out.println(arr.size());\n\t}\n\n\tstatic class FastScanner {\n\t\tprivate BufferedReader reader;\n\t\tprivate StringTokenizer tokenizer;\n\n\t\tpublic FastScanner(InputStream in) {\n\t\t\treader = new BufferedReader(new InputStreamReader(in));\n\t\t\ttokenizer = null;\n\t\t}\n\n\t\tpublic String next() {\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn tokenizer.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() {\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\treturn reader.readLine();\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn tokenizer.nextToken(\"\\n\");\n\t\t}\n\n\t\tpublic long nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic long[] nextLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\t}\n}",
"Main",
"public static void main(String[] args) {\n\t\tFastScanner sc = new FastScanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tList<String> arr = new ArrayList<>();\n\t\tfor (int i = 0; i < a; i++) {\n\t\t\tarr.add(sc.next());\n\t\t}\n\t\tarr = arr.stream().distinct().collect(Collectors.toList());\n\t\tSystem.out.println(arr.size());\n\t}",
"main",
"{\n\t\tFastScanner sc = new FastScanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tList<String> arr = new ArrayList<>();\n\t\tfor (int i = 0; i < a; i++) {\n\t\t\tarr.add(sc.next());\n\t\t}\n\t\tarr = arr.stream().distinct().collect(Collectors.toList());\n\t\tSystem.out.println(arr.size());\n\t}",
"FastScanner sc = new FastScanner(System.in);",
"sc",
"new FastScanner(System.in)",
"int a = sc.nextInt();",
"a",
"sc.nextInt()",
"sc.nextInt",
"sc",
"List<String> arr = new ArrayList<>();",
"arr",
"new ArrayList<>()",
"for (int i = 0; i < a; i++) {\n\t\t\tarr.add(sc.next());\n\t\t}",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < a",
"i",
"a",
"i++",
"i++",
"i",
"{\n\t\t\tarr.add(sc.next());\n\t\t}",
"{\n\t\t\tarr.add(sc.next());\n\t\t}",
"arr.add(sc.next())",
"arr.add",
"arr",
"sc.next()",
"sc.next",
"sc",
"arr = arr.stream().distinct().collect(Collectors.toList())",
"arr",
"arr.stream().distinct().collect(Collectors.toList())",
"arr.stream().distinct().collect",
"arr.stream().distinct()",
"arr.stream().distinct",
"arr.stream()",
"arr.stream",
"arr",
"Collectors.toList()",
"Collectors.toList",
"Collectors",
"System.out.println(arr.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"arr.size()",
"arr.size",
"arr",
"String[] args",
"args",
"static class FastScanner {\n\t\tprivate BufferedReader reader;\n\t\tprivate StringTokenizer tokenizer;\n\n\t\tpublic FastScanner(InputStream in) {\n\t\t\treader = new BufferedReader(new InputStreamReader(in));\n\t\t\ttokenizer = null;\n\t\t}\n\n\t\tpublic String next() {\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn tokenizer.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() {\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\treturn reader.readLine();\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn tokenizer.nextToken(\"\\n\");\n\t\t}\n\n\t\tpublic long nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic long[] nextLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\t}",
"FastScanner",
"private BufferedReader reader;",
"reader",
"private StringTokenizer tokenizer;",
"tokenizer",
"public FastScanner(InputStream in) {\n\t\t\treader = new BufferedReader(new InputStreamReader(in));\n\t\t\ttokenizer = null;\n\t\t}",
"FastScanner",
"{\n\t\t\treader = new BufferedReader(new InputStreamReader(in));\n\t\t\ttokenizer = null;\n\t\t}",
"reader = new BufferedReader(new InputStreamReader(in))",
"reader",
"new BufferedReader(new InputStreamReader(in))",
"tokenizer = null",
"tokenizer",
"null",
"InputStream in",
"in",
"public String next() {\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn tokenizer.nextToken();\n\t\t}",
"next",
"{\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn tokenizer.nextToken();\n\t\t}",
"if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}",
"tokenizer == null || !tokenizer.hasMoreTokens()",
"tokenizer == null",
"tokenizer",
"null",
"!tokenizer.hasMoreTokens()",
"tokenizer.hasMoreTokens()",
"tokenizer.hasMoreTokens",
"tokenizer",
"{\n\t\t\t\ttry {\n\t\t\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}",
"try {\n\t\t\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}",
"catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}",
"IOException e",
"{\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}",
"throw new RuntimeException(e);",
"new RuntimeException(e)",
"{\n\t\t\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t\t\t}",
"tokenizer = new StringTokenizer(reader.readLine())",
"tokenizer",
"new StringTokenizer(reader.readLine())",
"return tokenizer.nextToken();",
"tokenizer.nextToken()",
"tokenizer.nextToken",
"tokenizer",
"public String nextLine() {\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\treturn reader.readLine();\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn tokenizer.nextToken(\"\\n\");\n\t\t}",
"nextLine",
"{\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\treturn reader.readLine();\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn tokenizer.nextToken(\"\\n\");\n\t\t}",
"if (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\treturn reader.readLine();\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}",
"tokenizer == null || !tokenizer.hasMoreTokens()",
"tokenizer == null",
"tokenizer",
"null",
"!tokenizer.hasMoreTokens()",
"tokenizer.hasMoreTokens()",
"tokenizer.hasMoreTokens",
"tokenizer",
"{\n\t\t\t\ttry {\n\t\t\t\t\treturn reader.readLine();\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}",
"try {\n\t\t\t\t\treturn reader.readLine();\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}",
"catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}",
"IOException e",
"{\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}",
"throw new RuntimeException(e);",
"new RuntimeException(e)",
"{\n\t\t\t\t\treturn reader.readLine();\n\t\t\t\t}",
"return reader.readLine();",
"reader.readLine()",
"reader.readLine",
"reader",
"return tokenizer.nextToken(\"\\n\");",
"tokenizer.nextToken(\"\\n\")",
"tokenizer.nextToken",
"tokenizer",
"\"\\n\"",
"public long nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}",
"nextLong",
"{\n\t\t\treturn Long.parseLong(next());\n\t\t}",
"return Long.parseLong(next());",
"Long.parseLong(next())",
"Long.parseLong",
"Long",
"next()",
"next",
"public int nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}",
"nextInt",
"{\n\t\t\treturn Integer.parseInt(next());\n\t\t}",
"return Integer.parseInt(next());",
"Integer.parseInt(next())",
"Integer.parseInt",
"Integer",
"next()",
"next",
"public double nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}",
"nextDouble",
"{\n\t\t\treturn Double.parseDouble(next());\n\t\t}",
"return Double.parseDouble(next());",
"Double.parseDouble(next())",
"Double.parseDouble",
"Double",
"next()",
"next",
"public long[] nextLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}",
"nextLongArray",
"{\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}",
"long[] a = new long[n];",
"a",
"new long[n]",
"n",
"for (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < n",
"i",
"n",
"i++",
"i++",
"i",
"a[i] = nextLong();",
"a[i] = nextLong()",
"a[i]",
"a",
"i",
"nextLong()",
"nextLong",
"return a;",
"a",
"int n",
"n",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tFastScanner sc = new FastScanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tList<String> arr = new ArrayList<>();\n\t\tfor (int i = 0; i < a; i++) {\n\t\t\tarr.add(sc.next());\n\t\t}\n\t\tarr = arr.stream().distinct().collect(Collectors.toList());\n\t\tSystem.out.println(arr.size());\n\t}\n\n\tstatic class FastScanner {\n\t\tprivate BufferedReader reader;\n\t\tprivate StringTokenizer tokenizer;\n\n\t\tpublic FastScanner(InputStream in) {\n\t\t\treader = new BufferedReader(new InputStreamReader(in));\n\t\t\ttokenizer = null;\n\t\t}\n\n\t\tpublic String next() {\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn tokenizer.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() {\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\treturn reader.readLine();\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn tokenizer.nextToken(\"\\n\");\n\t\t}\n\n\t\tpublic long nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic long[] nextLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\t}\n}",
"public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tFastScanner sc = new FastScanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tList<String> arr = new ArrayList<>();\n\t\tfor (int i = 0; i < a; i++) {\n\t\t\tarr.add(sc.next());\n\t\t}\n\t\tarr = arr.stream().distinct().collect(Collectors.toList());\n\t\tSystem.out.println(arr.size());\n\t}\n\n\tstatic class FastScanner {\n\t\tprivate BufferedReader reader;\n\t\tprivate StringTokenizer tokenizer;\n\n\t\tpublic FastScanner(InputStream in) {\n\t\t\treader = new BufferedReader(new InputStreamReader(in));\n\t\t\ttokenizer = null;\n\t\t}\n\n\t\tpublic String next() {\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\ttokenizer = new StringTokenizer(reader.readLine());\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn tokenizer.nextToken();\n\t\t}\n\n\t\tpublic String nextLine() {\n\t\t\tif (tokenizer == null || !tokenizer.hasMoreTokens()) {\n\t\t\t\ttry {\n\t\t\t\t\treturn reader.readLine();\n\t\t\t\t} catch (IOException e) {\n\t\t\t\t\tthrow new RuntimeException(e);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn tokenizer.nextToken(\"\\n\");\n\t\t}\n\n\t\tpublic long nextLong() {\n\t\t\treturn Long.parseLong(next());\n\t\t}\n\n\t\tpublic int nextInt() {\n\t\t\treturn Integer.parseInt(next());\n\t\t}\n\n\t\tpublic double nextDouble() {\n\t\t\treturn Double.parseDouble(next());\n\t\t}\n\n\t\tpublic long[] nextLongArray(int n) {\n\t\t\tlong[] a = new long[n];\n\t\t\tfor (int i = 0; i < n; i++)\n\t\t\t\ta[i] = nextLong();\n\t\t\treturn a;\n\t\t}\n\t}\n}",
"Main"
] |
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
import java.util.stream.Collectors;
public class Main {
public static void main(String[] args) {
FastScanner sc = new FastScanner(System.in);
int a = sc.nextInt();
List<String> arr = new ArrayList<>();
for (int i = 0; i < a; i++) {
arr.add(sc.next());
}
arr = arr.stream().distinct().collect(Collectors.toList());
System.out.println(arr.size());
}
static class FastScanner {
private BufferedReader reader;
private StringTokenizer tokenizer;
public FastScanner(InputStream in) {
reader = new BufferedReader(new InputStreamReader(in));
tokenizer = null;
}
public String next() {
if (tokenizer == null || !tokenizer.hasMoreTokens()) {
try {
tokenizer = new StringTokenizer(reader.readLine());
} catch (IOException e) {
throw new RuntimeException(e);
}
}
return tokenizer.nextToken();
}
public String nextLine() {
if (tokenizer == null || !tokenizer.hasMoreTokens()) {
try {
return reader.readLine();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
return tokenizer.nextToken("\n");
}
public long nextLong() {
return Long.parseLong(next());
}
public int nextInt() {
return Integer.parseInt(next());
}
public double nextDouble() {
return Double.parseDouble(next());
}
public long[] nextLongArray(int n) {
long[] a = new long[n];
for (int i = 0; i < n; i++)
a[i] = nextLong();
return a;
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
4,
18,
13,
41,
13,
20,
11,
1,
41,
13,
17,
2,
13,
2,
13,
17,
1,
40,
13,
30,
30,
4,
18,
13,
4,
18,
13,
41,
13,
20,
4,
18,
18,
13,
13,
4,
18,
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
],
[
14,
17
],
[
17,
18
],
[
18,
19
],
[
8,
20
],
[
20,
21
],
[
20,
22
],
[
8,
23
],
[
23,
24
],
[
24,
25
],
[
25,
26
],
[
25,
27
],
[
23,
28
],
[
28,
29
],
[
28,
30
],
[
30,
31
],
[
30,
32
],
[
23,
33
],
[
33,
34
],
[
34,
35
],
[
23,
36
],
[
37,
37
],
[
37,
38
],
[
38,
39
],
[
39,
40
],
[
38,
41
],
[
41,
42
],
[
42,
43
],
[
8,
44
],
[
44,
45
],
[
44,
46
],
[
8,
47
],
[
47,
48
],
[
48,
49
],
[
49,
50
],
[
49,
51
],
[
47,
52
],
[
52,
53
],
[
53,
54
],
[
6,
55
],
[
55,
56
],
[
0,
57
],
[
57,
58
],
[
57,
59
]
] |
[
"import java.util.*;\n\npublic class Main {\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n ArrayList<String> ary = new ArrayList<>();\n\n for (int i = 1; i < n + 1; i++) {\n ary.add(sc.next());\n }\n List<String> list = new ArrayList<String>(new HashSet<>(ary));\n System.out.print(list.size());\n }\n}\n",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n ArrayList<String> ary = new ArrayList<>();\n\n for (int i = 1; i < n + 1; i++) {\n ary.add(sc.next());\n }\n List<String> list = new ArrayList<String>(new HashSet<>(ary));\n System.out.print(list.size());\n }\n}",
"Main",
"public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n ArrayList<String> ary = new ArrayList<>();\n\n for (int i = 1; i < n + 1; i++) {\n ary.add(sc.next());\n }\n List<String> list = new ArrayList<String>(new HashSet<>(ary));\n System.out.print(list.size());\n }",
"main",
"{\n\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n ArrayList<String> ary = new ArrayList<>();\n\n for (int i = 1; i < n + 1; i++) {\n ary.add(sc.next());\n }\n List<String> list = new ArrayList<String>(new HashSet<>(ary));\n System.out.print(list.size());\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int n = Integer.parseInt(sc.next());",
"n",
"Integer.parseInt(sc.next())",
"Integer.parseInt",
"Integer",
"sc.next()",
"sc.next",
"sc",
"ArrayList<String> ary = new ArrayList<>();",
"ary",
"new ArrayList<>()",
"for (int i = 1; i < n + 1; i++) {\n ary.add(sc.next());\n }",
"int i = 1;",
"int i = 1;",
"i",
"1",
"i < n + 1",
"i",
"n + 1",
"n",
"1",
"i++",
"i++",
"i",
"{\n ary.add(sc.next());\n }",
"{\n ary.add(sc.next());\n }",
"ary.add(sc.next())",
"ary.add",
"ary",
"sc.next()",
"sc.next",
"sc",
"List<String> list = new ArrayList<String>(new HashSet<>(ary));",
"list",
"new ArrayList<String>(new HashSet<>(ary))",
"System.out.print(list.size())",
"System.out.print",
"System.out",
"System",
"System.out",
"list.size()",
"list.size",
"list",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n ArrayList<String> ary = new ArrayList<>();\n\n for (int i = 1; i < n + 1; i++) {\n ary.add(sc.next());\n }\n List<String> list = new ArrayList<String>(new HashSet<>(ary));\n System.out.print(list.size());\n }\n}",
"public class Main {\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n int n = Integer.parseInt(sc.next());\n ArrayList<String> ary = new ArrayList<>();\n\n for (int i = 1; i < n + 1; i++) {\n ary.add(sc.next());\n }\n List<String> list = new ArrayList<String>(new HashSet<>(ary));\n System.out.print(list.size());\n }\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = Integer.parseInt(sc.next());
ArrayList<String> ary = new ArrayList<>();
for (int i = 1; i < n + 1; i++) {
ary.add(sc.next());
}
List<String> list = new ArrayList<String>(new HashSet<>(ary));
System.out.print(list.size());
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
41,
13,
17,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
20,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
41,
13,
4,
18,
13,
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
],
[
59,
8
],
[
59,
9
],
[
9,
10
],
[
9,
11
],
[
59,
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
],
[
14,
26
],
[
26,
27
],
[
27,
28
],
[
28,
29
],
[
28,
30
],
[
26,
31
],
[
31,
32
],
[
31,
33
],
[
26,
34
],
[
34,
35
],
[
35,
36
],
[
26,
37
],
[
38,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
42,
43
],
[
38,
44
],
[
44,
45
],
[
45,
46
],
[
44,
47
],
[
14,
48
],
[
48,
49
],
[
49,
50
],
[
50,
51
],
[
50,
52
],
[
48,
53
],
[
53,
54
],
[
54,
55
],
[
12,
56
],
[
56,
57
],
[
0,
58
],
[
58,
59
],
[
58,
60
]
] |
[
"import java.util.*;\nimport java.util.stream.*;\n\npublic class Main {\n private static final boolean IS_TAKAHASHI_TURN = true;\n\n public static void main(String[] args) {\n\t // write your code here\n Scanner sc = new Scanner(System.in);\n long giftCount = sc.nextLong();\n Set<String> giftList = new HashSet<>();\n for (int i = 0; i < giftCount; i++) {\n String gift = sc.next();\n giftList.add(gift);\n }\n System.out.println(giftList.size());\n }\n}",
"import java.util.*;",
"util.*",
"java",
"import java.util.stream.*;",
"stream.*",
"java.util",
"public class Main {\n private static final boolean IS_TAKAHASHI_TURN = true;\n\n public static void main(String[] args) {\n\t // write your code here\n Scanner sc = new Scanner(System.in);\n long giftCount = sc.nextLong();\n Set<String> giftList = new HashSet<>();\n for (int i = 0; i < giftCount; i++) {\n String gift = sc.next();\n giftList.add(gift);\n }\n System.out.println(giftList.size());\n }\n}",
"Main",
"private static final boolean IS_TAKAHASHI_TURN = true;",
"IS_TAKAHASHI_TURN",
"true",
"public static void main(String[] args) {\n\t // write your code here\n Scanner sc = new Scanner(System.in);\n long giftCount = sc.nextLong();\n Set<String> giftList = new HashSet<>();\n for (int i = 0; i < giftCount; i++) {\n String gift = sc.next();\n giftList.add(gift);\n }\n System.out.println(giftList.size());\n }",
"main",
"{\n\t // write your code here\n Scanner sc = new Scanner(System.in);\n long giftCount = sc.nextLong();\n Set<String> giftList = new HashSet<>();\n for (int i = 0; i < giftCount; i++) {\n String gift = sc.next();\n giftList.add(gift);\n }\n System.out.println(giftList.size());\n }",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"long giftCount = sc.nextLong();",
"giftCount",
"sc.nextLong()",
"sc.nextLong",
"sc",
"Set<String> giftList = new HashSet<>();",
"giftList",
"new HashSet<>()",
"for (int i = 0; i < giftCount; i++) {\n String gift = sc.next();\n giftList.add(gift);\n }",
"int i = 0;",
"int i = 0;",
"i",
"0",
"i < giftCount",
"i",
"giftCount",
"i++",
"i++",
"i",
"{\n String gift = sc.next();\n giftList.add(gift);\n }",
"{\n String gift = sc.next();\n giftList.add(gift);\n }",
"String gift = sc.next();",
"gift",
"sc.next()",
"sc.next",
"sc",
"giftList.add(gift)",
"giftList.add",
"giftList",
"gift",
"System.out.println(giftList.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"giftList.size()",
"giftList.size",
"giftList",
"String[] args",
"args",
"public class Main {\n private static final boolean IS_TAKAHASHI_TURN = true;\n\n public static void main(String[] args) {\n\t // write your code here\n Scanner sc = new Scanner(System.in);\n long giftCount = sc.nextLong();\n Set<String> giftList = new HashSet<>();\n for (int i = 0; i < giftCount; i++) {\n String gift = sc.next();\n giftList.add(gift);\n }\n System.out.println(giftList.size());\n }\n}",
"public class Main {\n private static final boolean IS_TAKAHASHI_TURN = true;\n\n public static void main(String[] args) {\n\t // write your code here\n Scanner sc = new Scanner(System.in);\n long giftCount = sc.nextLong();\n Set<String> giftList = new HashSet<>();\n for (int i = 0; i < giftCount; i++) {\n String gift = sc.next();\n giftList.add(gift);\n }\n System.out.println(giftList.size());\n }\n}",
"Main"
] |
import java.util.*;
import java.util.stream.*;
public class Main {
private static final boolean IS_TAKAHASHI_TURN = true;
public static void main(String[] args) {
// write your code here
Scanner sc = new Scanner(System.in);
long giftCount = sc.nextLong();
Set<String> giftList = new HashSet<>();
for (int i = 0; i < giftCount; i++) {
String gift = sc.next();
giftList.add(gift);
}
System.out.println(giftList.size());
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
41,
13,
12,
13,
30,
0,
13,
20,
41,
13,
4,
13,
41,
13,
20,
13,
41,
13,
20,
41,
13,
17,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
0,
18,
13,
13,
4,
13,
14,
40,
4,
18,
13,
18,
13,
13,
30,
40,
13,
4,
18,
13,
18,
13,
13,
17,
4,
18,
18,
13,
13,
13,
23,
13,
12,
13,
30,
29,
4,
18,
13,
12,
13,
30,
29,
4,
18,
13,
4,
18,
13,
12,
13,
30,
29,
4,
18,
13,
4,
18,
13,
12,
13,
30,
29,
4,
18,
13,
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
],
[
117,
11
],
[
117,
12
],
[
12,
13
],
[
117,
14
],
[
14,
15
],
[
14,
16
],
[
16,
17
],
[
17,
18
],
[
17,
19
],
[
16,
20
],
[
20,
21
],
[
20,
22
],
[
22,
23
],
[
16,
24
],
[
24,
25
],
[
24,
26
],
[
16,
28
],
[
28,
29
],
[
28,
30
],
[
16,
31
],
[
31,
32
],
[
31,
33
],
[
16,
34
],
[
34,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
34,
39
],
[
39,
40
],
[
39,
41
],
[
34,
42
],
[
42,
43
],
[
43,
44
],
[
34,
45
],
[
46,
46
],
[
46,
47
],
[
47,
48
],
[
48,
49
],
[
48,
50
],
[
47,
51
],
[
51,
52
],
[
46,
53
],
[
53,
54
],
[
54,
55
],
[
55,
56
],
[
56,
57
],
[
55,
58
],
[
58,
59
],
[
58,
60
],
[
53,
61
],
[
61,
62
],
[
62,
63
],
[
61,
64
],
[
64,
65
],
[
65,
66
],
[
64,
67
],
[
67,
68
],
[
67,
69
],
[
64,
70
],
[
16,
71
],
[
71,
72
],
[
72,
73
],
[
73,
74
],
[
73,
75
],
[
71,
76
],
[
14,
77
],
[
77,
78
],
[
117,
79
],
[
79,
80
],
[
79,
81
],
[
81,
82
],
[
82,
83
],
[
83,
84
],
[
84,
85
],
[
117,
86
],
[
86,
87
],
[
86,
88
],
[
88,
89
],
[
89,
90
],
[
90,
91
],
[
91,
92
],
[
90,
93
],
[
93,
94
],
[
94,
95
],
[
117,
96
],
[
96,
97
],
[
96,
98
],
[
98,
99
],
[
99,
100
],
[
100,
101
],
[
101,
102
],
[
100,
103
],
[
103,
104
],
[
104,
105
],
[
117,
106
],
[
106,
107
],
[
106,
108
],
[
108,
109
],
[
109,
110
],
[
110,
111
],
[
111,
112
],
[
110,
113
],
[
113,
114
],
[
114,
115
],
[
0,
116
],
[
116,
117
],
[
116,
118
]
] |
[
"import java.util.HashMap;\nimport java.util.Map;\nimport java.util.Scanner;\n\npublic class Main {\n\n\tstatic Scanner scanner;\n\tpublic static void main(String[] args) {\n\t scanner = new Scanner(System.in);\n\n\t int n=gi();\n\t String[] s= new String[n];\n\t Map<String, Integer> m=new HashMap<String,Integer>();\n\t int c=0;\n\t for (int i=0; i<n; i++) {\n\t \ts[i]=gs();\n\t \tif (!m.containsKey(s[i])) {\n\t \t\tc++;\n\t \t\tm.put(s[i], 0);\n\t \t}\n\t }\n\t \n\t \n\t System.out.println(c);\n\t \n //System.out.println(Math.pow(l/3, 3));\n// if (a<b) {\n// \tSystem.out.print(Math.max(b-a-w, 0));\n// }else {\n// \tSystem.out.print(Math.max(a-b-w, 0));\n// }\n\n\n\t}\n\n\t// 文字列として入力を取得\n\tpublic static String gs() {\n\t\treturn scanner.next();\n\t}\n\n\t// intとして入力を取得\n\tpublic static int gi() {\n\t\treturn Integer.parseInt(scanner.next());\n\t}\n\n\t// longとして入力を取得\n\tpublic static long gl() {\n\t\treturn Long.parseLong(scanner.next());\n\t}\n\n\t// doubleとして入力を取得\n\tpublic static double gd() {\n\t\treturn Double.parseDouble(scanner.next());\n\t}\n}",
"import java.util.HashMap;",
"HashMap",
"java.util",
"import java.util.Map;",
"Map",
"java.util",
"import java.util.Scanner;",
"Scanner",
"java.util",
"public class Main {\n\n\tstatic Scanner scanner;\n\tpublic static void main(String[] args) {\n\t scanner = new Scanner(System.in);\n\n\t int n=gi();\n\t String[] s= new String[n];\n\t Map<String, Integer> m=new HashMap<String,Integer>();\n\t int c=0;\n\t for (int i=0; i<n; i++) {\n\t \ts[i]=gs();\n\t \tif (!m.containsKey(s[i])) {\n\t \t\tc++;\n\t \t\tm.put(s[i], 0);\n\t \t}\n\t }\n\t \n\t \n\t System.out.println(c);\n\t \n //System.out.println(Math.pow(l/3, 3));\n// if (a<b) {\n// \tSystem.out.print(Math.max(b-a-w, 0));\n// }else {\n// \tSystem.out.print(Math.max(a-b-w, 0));\n// }\n\n\n\t}\n\n\t// 文字列として入力を取得\n\tpublic static String gs() {\n\t\treturn scanner.next();\n\t}\n\n\t// intとして入力を取得\n\tpublic static int gi() {\n\t\treturn Integer.parseInt(scanner.next());\n\t}\n\n\t// longとして入力を取得\n\tpublic static long gl() {\n\t\treturn Long.parseLong(scanner.next());\n\t}\n\n\t// doubleとして入力を取得\n\tpublic static double gd() {\n\t\treturn Double.parseDouble(scanner.next());\n\t}\n}",
"Main",
"static Scanner scanner;",
"scanner",
"public static void main(String[] args) {\n\t scanner = new Scanner(System.in);\n\n\t int n=gi();\n\t String[] s= new String[n];\n\t Map<String, Integer> m=new HashMap<String,Integer>();\n\t int c=0;\n\t for (int i=0; i<n; i++) {\n\t \ts[i]=gs();\n\t \tif (!m.containsKey(s[i])) {\n\t \t\tc++;\n\t \t\tm.put(s[i], 0);\n\t \t}\n\t }\n\t \n\t \n\t System.out.println(c);\n\t \n //System.out.println(Math.pow(l/3, 3));\n// if (a<b) {\n// \tSystem.out.print(Math.max(b-a-w, 0));\n// }else {\n// \tSystem.out.print(Math.max(a-b-w, 0));\n// }\n\n\n\t}",
"main",
"{\n\t scanner = new Scanner(System.in);\n\n\t int n=gi();\n\t String[] s= new String[n];\n\t Map<String, Integer> m=new HashMap<String,Integer>();\n\t int c=0;\n\t for (int i=0; i<n; i++) {\n\t \ts[i]=gs();\n\t \tif (!m.containsKey(s[i])) {\n\t \t\tc++;\n\t \t\tm.put(s[i], 0);\n\t \t}\n\t }\n\t \n\t \n\t System.out.println(c);\n\t \n //System.out.println(Math.pow(l/3, 3));\n// if (a<b) {\n// \tSystem.out.print(Math.max(b-a-w, 0));\n// }else {\n// \tSystem.out.print(Math.max(a-b-w, 0));\n// }\n\n\n\t}",
"scanner = new Scanner(System.in)",
"scanner",
"new Scanner(System.in)",
"int n=gi();",
"n",
"gi()",
"gi",
"String[] s= new String[n];",
"s",
"new String[n]",
"n",
"Map<String, Integer> m=new HashMap<String,Integer>();",
"m",
"new HashMap<String,Integer>()",
"int c=0;",
"c",
"0",
"for (int i=0; i<n; i++) {\n\t \ts[i]=gs();\n\t \tif (!m.containsKey(s[i])) {\n\t \t\tc++;\n\t \t\tm.put(s[i], 0);\n\t \t}\n\t }",
"int i=0;",
"int i=0;",
"i",
"0",
"i<n",
"i",
"n",
"i++",
"i++",
"i",
"{\n\t \ts[i]=gs();\n\t \tif (!m.containsKey(s[i])) {\n\t \t\tc++;\n\t \t\tm.put(s[i], 0);\n\t \t}\n\t }",
"{\n\t \ts[i]=gs();\n\t \tif (!m.containsKey(s[i])) {\n\t \t\tc++;\n\t \t\tm.put(s[i], 0);\n\t \t}\n\t }",
"s[i]=gs()",
"s[i]",
"s",
"i",
"gs()",
"gs",
"if (!m.containsKey(s[i])) {\n\t \t\tc++;\n\t \t\tm.put(s[i], 0);\n\t \t}",
"!m.containsKey(s[i])",
"m.containsKey(s[i])",
"m.containsKey",
"m",
"s[i]",
"s",
"i",
"{\n\t \t\tc++;\n\t \t\tm.put(s[i], 0);\n\t \t}",
"c++",
"c",
"m.put(s[i], 0)",
"m.put",
"m",
"s[i]",
"s",
"i",
"0",
"System.out.println(c)",
"System.out.println",
"System.out",
"System",
"System.out",
"c",
"String[] args",
"args",
"// 文字列として入力を取得\n\tpublic static String gs() {\n\t\treturn scanner.next();\n\t}",
"gs",
"{\n\t\treturn scanner.next();\n\t}",
"return scanner.next();",
"scanner.next()",
"scanner.next",
"scanner",
"// intとして入力を取得\n\tpublic static int gi() {\n\t\treturn Integer.parseInt(scanner.next());\n\t}",
"gi",
"{\n\t\treturn Integer.parseInt(scanner.next());\n\t}",
"return Integer.parseInt(scanner.next());",
"Integer.parseInt(scanner.next())",
"Integer.parseInt",
"Integer",
"scanner.next()",
"scanner.next",
"scanner",
"// longとして入力を取得\n\tpublic static long gl() {\n\t\treturn Long.parseLong(scanner.next());\n\t}",
"gl",
"{\n\t\treturn Long.parseLong(scanner.next());\n\t}",
"return Long.parseLong(scanner.next());",
"Long.parseLong(scanner.next())",
"Long.parseLong",
"Long",
"scanner.next()",
"scanner.next",
"scanner",
"// doubleとして入力を取得\n\tpublic static double gd() {\n\t\treturn Double.parseDouble(scanner.next());\n\t}",
"gd",
"{\n\t\treturn Double.parseDouble(scanner.next());\n\t}",
"return Double.parseDouble(scanner.next());",
"Double.parseDouble(scanner.next())",
"Double.parseDouble",
"Double",
"scanner.next()",
"scanner.next",
"scanner",
"public class Main {\n\n\tstatic Scanner scanner;\n\tpublic static void main(String[] args) {\n\t scanner = new Scanner(System.in);\n\n\t int n=gi();\n\t String[] s= new String[n];\n\t Map<String, Integer> m=new HashMap<String,Integer>();\n\t int c=0;\n\t for (int i=0; i<n; i++) {\n\t \ts[i]=gs();\n\t \tif (!m.containsKey(s[i])) {\n\t \t\tc++;\n\t \t\tm.put(s[i], 0);\n\t \t}\n\t }\n\t \n\t \n\t System.out.println(c);\n\t \n //System.out.println(Math.pow(l/3, 3));\n// if (a<b) {\n// \tSystem.out.print(Math.max(b-a-w, 0));\n// }else {\n// \tSystem.out.print(Math.max(a-b-w, 0));\n// }\n\n\n\t}\n\n\t// 文字列として入力を取得\n\tpublic static String gs() {\n\t\treturn scanner.next();\n\t}\n\n\t// intとして入力を取得\n\tpublic static int gi() {\n\t\treturn Integer.parseInt(scanner.next());\n\t}\n\n\t// longとして入力を取得\n\tpublic static long gl() {\n\t\treturn Long.parseLong(scanner.next());\n\t}\n\n\t// doubleとして入力を取得\n\tpublic static double gd() {\n\t\treturn Double.parseDouble(scanner.next());\n\t}\n}",
"public class Main {\n\n\tstatic Scanner scanner;\n\tpublic static void main(String[] args) {\n\t scanner = new Scanner(System.in);\n\n\t int n=gi();\n\t String[] s= new String[n];\n\t Map<String, Integer> m=new HashMap<String,Integer>();\n\t int c=0;\n\t for (int i=0; i<n; i++) {\n\t \ts[i]=gs();\n\t \tif (!m.containsKey(s[i])) {\n\t \t\tc++;\n\t \t\tm.put(s[i], 0);\n\t \t}\n\t }\n\t \n\t \n\t System.out.println(c);\n\t \n //System.out.println(Math.pow(l/3, 3));\n// if (a<b) {\n// \tSystem.out.print(Math.max(b-a-w, 0));\n// }else {\n// \tSystem.out.print(Math.max(a-b-w, 0));\n// }\n\n\n\t}\n\n\t// 文字列として入力を取得\n\tpublic static String gs() {\n\t\treturn scanner.next();\n\t}\n\n\t// intとして入力を取得\n\tpublic static int gi() {\n\t\treturn Integer.parseInt(scanner.next());\n\t}\n\n\t// longとして入力を取得\n\tpublic static long gl() {\n\t\treturn Long.parseLong(scanner.next());\n\t}\n\n\t// doubleとして入力を取得\n\tpublic static double gd() {\n\t\treturn Double.parseDouble(scanner.next());\n\t}\n}",
"Main"
] |
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class Main {
static Scanner scanner;
public static void main(String[] args) {
scanner = new Scanner(System.in);
int n=gi();
String[] s= new String[n];
Map<String, Integer> m=new HashMap<String,Integer>();
int c=0;
for (int i=0; i<n; i++) {
s[i]=gs();
if (!m.containsKey(s[i])) {
c++;
m.put(s[i], 0);
}
}
System.out.println(c);
//System.out.println(Math.pow(l/3, 3));
// if (a<b) {
// System.out.print(Math.max(b-a-w, 0));
// }else {
// System.out.print(Math.max(a-b-w, 0));
// }
}
// 文字列として入力を取得
public static String gs() {
return scanner.next();
}
// intとして入力を取得
public static int gi() {
return Integer.parseInt(scanner.next());
}
// longとして入力を取得
public static long gl() {
return Long.parseLong(scanner.next());
}
// doubleとして入力を取得
public static double gd() {
return Double.parseDouble(scanner.next());
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
18,
13,
13,
41,
13,
18,
13,
13,
41,
13,
20,
41,
13,
20,
41,
13,
20,
4,
18,
13,
17,
13,
13,
4,
18,
13,
23,
13,
6,
13,
12,
13,
30,
41,
13,
4,
18,
13,
41,
13,
20,
42,
2,
40,
13,
17,
30,
4,
18,
13,
4,
18,
13,
4,
18,
13,
4,
18,
13,
23,
13,
23,
13,
23,
13,
6,
13,
41,
13,
41,
13,
12,
13,
30,
0,
13,
20,
0,
13,
17,
23,
13,
12,
13,
30,
42,
2,
2,
13,
17,
40,
4,
18,
13,
30,
38,
5,
13,
30,
37,
20,
30,
0,
13,
20,
29,
4,
18,
13,
12,
13,
30,
29,
4,
18,
13,
4,
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
],
[
13,
14
],
[
13,
15
],
[
0,
16
],
[
16,
17
],
[
16,
18
],
[
0,
19
],
[
19,
20
],
[
19,
21
],
[
0,
22
],
[
22,
23
],
[
22,
24
],
[
0,
25
],
[
25,
26
],
[
25,
27
],
[
0,
28
],
[
28,
29
],
[
28,
30
],
[
0,
31
],
[
157,
32
],
[
157,
33
],
[
33,
34
],
[
33,
35
],
[
35,
36
],
[
36,
37
],
[
36,
38
],
[
38,
39
],
[
38,
40
],
[
35,
41
],
[
41,
42
],
[
41,
43
],
[
43,
44
],
[
43,
45
],
[
35,
46
],
[
46,
47
],
[
46,
48
],
[
35,
49
],
[
49,
50
],
[
49,
51
],
[
35,
52
],
[
52,
53
],
[
52,
54
],
[
35,
55
],
[
55,
56
],
[
56,
57
],
[
55,
58
],
[
55,
59
],
[
55,
60
],
[
35,
61
],
[
61,
62
],
[
62,
63
],
[
33,
64
],
[
64,
65
],
[
157,
66
],
[
66,
67
],
[
66,
68
],
[
68,
69
],
[
68,
70
],
[
70,
71
],
[
71,
72
],
[
71,
73
],
[
73,
74
],
[
74,
75
],
[
70,
76
],
[
76,
77
],
[
76,
78
],
[
70,
79
],
[
79,
80
],
[
80,
81
],
[
81,
82
],
[
80,
83
],
[
79,
84
],
[
84,
85
],
[
85,
86
],
[
86,
87
],
[
85,
88
],
[
88,
89
],
[
89,
90
],
[
70,
91
],
[
91,
92
],
[
92,
93
],
[
91,
94
],
[
94,
95
],
[
95,
96
],
[
68,
97
],
[
97,
98
],
[
68,
99
],
[
99,
100
],
[
68,
101
],
[
101,
102
],
[
157,
103
],
[
103,
104
],
[
103,
105
],
[
105,
106
],
[
103,
107
],
[
107,
108
],
[
103,
109
],
[
109,
110
],
[
109,
111
],
[
111,
112
],
[
112,
113
],
[
112,
114
],
[
111,
115
],
[
115,
116
],
[
115,
117
],
[
109,
118
],
[
118,
119
],
[
103,
120
],
[
120,
121
],
[
120,
122
],
[
122,
123
],
[
123,
124
],
[
124,
125
],
[
125,
126
],
[
125,
127
],
[
124,
128
],
[
128,
129
],
[
129,
130
],
[
130,
131
],
[
123,
132
],
[
132,
133
],
[
133,
134
],
[
134,
135
],
[
134,
136
],
[
136,
137
],
[
137,
138
],
[
133,
139
],
[
139,
140
],
[
140,
141
],
[
140,
142
],
[
122,
143
],
[
143,
144
],
[
144,
145
],
[
145,
146
],
[
103,
147
],
[
147,
148
],
[
147,
149
],
[
149,
150
],
[
150,
151
],
[
151,
152
],
[
152,
153
],
[
151,
154
],
[
154,
155
],
[
0,
156
],
[
156,
157
],
[
156,
158
]
] |
[
"import java.io.OutputStream;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.io.PrintWriter;\nimport java.util.StringTokenizer;\nimport java.io.IOException;\nimport java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.util.TreeSet;\nimport java.io.InputStream;\n\n/**\n * Built using CHelper plug-in\n * Actual solution is at the top\n *\n * @author Tarek\n */\npublic class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n CGacha solver = new CGacha();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class CGacha {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n int n = in.nextInt();\n TreeSet<String> h = new TreeSet<>();\n while (n-- > 0) {\n h.add(in.next());\n }\n out.println(h.size());\n }\n\n }\n\n static class InputReader {\n public BufferedReader reader;\n public StringTokenizer tokenizer;\n\n public InputReader(InputStream stream) {\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }\n}\n",
"import java.io.OutputStream;",
"OutputStream",
"java.io",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.InputStream;",
"InputStream",
"java.io",
"import java.io.PrintWriter;",
"PrintWriter",
"java.io",
"import java.util.StringTokenizer;",
"StringTokenizer",
"java.util",
"import java.io.IOException;",
"IOException",
"java.io",
"import java.io.BufferedReader;",
"BufferedReader",
"java.io",
"import java.io.InputStreamReader;",
"InputStreamReader",
"java.io",
"import java.util.TreeSet;",
"TreeSet",
"java.util",
"import java.io.InputStream;",
"InputStream",
"java.io",
"public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n CGacha solver = new CGacha();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class CGacha {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n int n = in.nextInt();\n TreeSet<String> h = new TreeSet<>();\n while (n-- > 0) {\n h.add(in.next());\n }\n out.println(h.size());\n }\n\n }\n\n static class InputReader {\n public BufferedReader reader;\n public StringTokenizer tokenizer;\n\n public InputReader(InputStream stream) {\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }\n}",
"Main",
"public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n CGacha solver = new CGacha();\n solver.solve(1, in, out);\n out.close();\n }",
"main",
"{\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n CGacha solver = new CGacha();\n solver.solve(1, in, out);\n out.close();\n }",
"InputStream inputStream = System.in;",
"inputStream",
"System.in",
"System",
"System.in",
"OutputStream outputStream = System.out;",
"outputStream",
"System.out",
"System",
"System.out",
"InputReader in = new InputReader(inputStream);",
"in",
"new InputReader(inputStream)",
"PrintWriter out = new PrintWriter(outputStream);",
"out",
"new PrintWriter(outputStream)",
"CGacha solver = new CGacha();",
"solver",
"new CGacha()",
"solver.solve(1, in, out)",
"solver.solve",
"solver",
"1",
"in",
"out",
"out.close()",
"out.close",
"out",
"String[] args",
"args",
"static class CGacha {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n int n = in.nextInt();\n TreeSet<String> h = new TreeSet<>();\n while (n-- > 0) {\n h.add(in.next());\n }\n out.println(h.size());\n }\n\n }",
"CGacha",
"public void solve(int testNumber, InputReader in, PrintWriter out) {\n int n = in.nextInt();\n TreeSet<String> h = new TreeSet<>();\n while (n-- > 0) {\n h.add(in.next());\n }\n out.println(h.size());\n }",
"solve",
"{\n int n = in.nextInt();\n TreeSet<String> h = new TreeSet<>();\n while (n-- > 0) {\n h.add(in.next());\n }\n out.println(h.size());\n }",
"int n = in.nextInt();",
"n",
"in.nextInt()",
"in.nextInt",
"in",
"TreeSet<String> h = new TreeSet<>();",
"h",
"new TreeSet<>()",
"while (n-- > 0) {\n h.add(in.next());\n }",
"n-- > 0",
"n--",
"n",
"0",
"{\n h.add(in.next());\n }",
"h.add(in.next())",
"h.add",
"h",
"in.next()",
"in.next",
"in",
"out.println(h.size())",
"out.println",
"out",
"h.size()",
"h.size",
"h",
"int testNumber",
"testNumber",
"InputReader in",
"in",
"PrintWriter out",
"out",
"static class InputReader {\n public BufferedReader reader;\n public StringTokenizer tokenizer;\n\n public InputReader(InputStream stream) {\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }",
"InputReader",
"public BufferedReader reader;",
"reader",
"public StringTokenizer tokenizer;",
"tokenizer",
"public InputReader(InputStream stream) {\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }",
"InputReader",
"{\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }",
"reader = new BufferedReader(new InputStreamReader(stream), 32768)",
"reader",
"new BufferedReader(new InputStreamReader(stream), 32768)",
"tokenizer = null",
"tokenizer",
"null",
"InputStream stream",
"stream",
"public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }",
"next",
"{\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }",
"while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }",
"tokenizer == null || !tokenizer.hasMoreTokens()",
"tokenizer == null",
"tokenizer",
"null",
"!tokenizer.hasMoreTokens()",
"tokenizer.hasMoreTokens()",
"tokenizer.hasMoreTokens",
"tokenizer",
"{\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }",
"try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }",
"catch (IOException e) {\n throw new RuntimeException(e);\n }",
"IOException e",
"{\n throw new RuntimeException(e);\n }",
"throw new RuntimeException(e);",
"new RuntimeException(e)",
"{\n tokenizer = new StringTokenizer(reader.readLine());\n }",
"tokenizer = new StringTokenizer(reader.readLine())",
"tokenizer",
"new StringTokenizer(reader.readLine())",
"return tokenizer.nextToken();",
"tokenizer.nextToken()",
"tokenizer.nextToken",
"tokenizer",
"public int nextInt() {\n return Integer.parseInt(next());\n }",
"nextInt",
"{\n return Integer.parseInt(next());\n }",
"return Integer.parseInt(next());",
"Integer.parseInt(next())",
"Integer.parseInt",
"Integer",
"next()",
"next",
"public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n CGacha solver = new CGacha();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class CGacha {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n int n = in.nextInt();\n TreeSet<String> h = new TreeSet<>();\n while (n-- > 0) {\n h.add(in.next());\n }\n out.println(h.size());\n }\n\n }\n\n static class InputReader {\n public BufferedReader reader;\n public StringTokenizer tokenizer;\n\n public InputReader(InputStream stream) {\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }\n}",
"public class Main {\n public static void main(String[] args) {\n InputStream inputStream = System.in;\n OutputStream outputStream = System.out;\n InputReader in = new InputReader(inputStream);\n PrintWriter out = new PrintWriter(outputStream);\n CGacha solver = new CGacha();\n solver.solve(1, in, out);\n out.close();\n }\n\n static class CGacha {\n public void solve(int testNumber, InputReader in, PrintWriter out) {\n int n = in.nextInt();\n TreeSet<String> h = new TreeSet<>();\n while (n-- > 0) {\n h.add(in.next());\n }\n out.println(h.size());\n }\n\n }\n\n static class InputReader {\n public BufferedReader reader;\n public StringTokenizer tokenizer;\n\n public InputReader(InputStream stream) {\n reader = new BufferedReader(new InputStreamReader(stream), 32768);\n tokenizer = null;\n }\n\n public String next() {\n while (tokenizer == null || !tokenizer.hasMoreTokens()) {\n try {\n tokenizer = new StringTokenizer(reader.readLine());\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n }\n return tokenizer.nextToken();\n }\n\n public int nextInt() {\n return Integer.parseInt(next());\n }\n\n }\n}",
"Main"
] |
import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.StringTokenizer;
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.TreeSet;
import java.io.InputStream;
/**
* Built using CHelper plug-in
* Actual solution is at the top
*
* @author Tarek
*/
public class Main {
public static void main(String[] args) {
InputStream inputStream = System.in;
OutputStream outputStream = System.out;
InputReader in = new InputReader(inputStream);
PrintWriter out = new PrintWriter(outputStream);
CGacha solver = new CGacha();
solver.solve(1, in, out);
out.close();
}
static class CGacha {
public void solve(int testNumber, InputReader in, PrintWriter out) {
int n = in.nextInt();
TreeSet<String> h = new TreeSet<>();
while (n-- > 0) {
h.add(in.next());
}
out.println(h.size());
}
}
static class InputReader {
public BufferedReader reader;
public StringTokenizer tokenizer;
public InputReader(InputStream stream) {
reader = new BufferedReader(new InputStreamReader(stream), 32768);
tokenizer = null;
}
public String next() {
while (tokenizer == null || !tokenizer.hasMoreTokens()) {
try {
tokenizer = new StringTokenizer(reader.readLine());
} catch (IOException e) {
throw new RuntimeException(e);
}
}
return tokenizer.nextToken();
}
public int nextInt() {
return Integer.parseInt(next());
}
}
}
|
[
7,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
20,
41,
13,
4,
18,
13,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
4,
18,
13,
4,
18,
13,
4,
18,
18,
13,
13,
4,
18,
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
],
[
8,
15
],
[
15,
16
],
[
15,
17
],
[
17,
18
],
[
18,
19
],
[
8,
20
],
[
20,
21
],
[
21,
22
],
[
22,
23
],
[
22,
24
],
[
20,
25
],
[
25,
26
],
[
25,
27
],
[
20,
28
],
[
28,
29
],
[
29,
30
],
[
20,
31
],
[
31,
32
],
[
32,
33
],
[
33,
34
],
[
32,
35
],
[
35,
36
],
[
36,
37
],
[
8,
38
],
[
38,
39
],
[
39,
40
],
[
40,
41
],
[
40,
42
],
[
38,
43
],
[
43,
44
],
[
44,
45
],
[
6,
46
],
[
46,
47
],
[
0,
48
],
[
48,
49
],
[
48,
50
]
] |
[
"import java.util.*;\n\npublic class Main {\n public static void main(String[] args) {\n HashSet<String> seen = new HashSet<>();\n Scanner sc = new Scanner(System.in);\n int tests = sc.nextInt();\n for (int t = 0; t < tests; t++) seen.add(sc.next());\n System.out.println(seen.size());\n\n }\n}",
"import java.util.*;",
"util.*",
"java",
"public class Main {\n public static void main(String[] args) {\n HashSet<String> seen = new HashSet<>();\n Scanner sc = new Scanner(System.in);\n int tests = sc.nextInt();\n for (int t = 0; t < tests; t++) seen.add(sc.next());\n System.out.println(seen.size());\n\n }\n}",
"Main",
"public static void main(String[] args) {\n HashSet<String> seen = new HashSet<>();\n Scanner sc = new Scanner(System.in);\n int tests = sc.nextInt();\n for (int t = 0; t < tests; t++) seen.add(sc.next());\n System.out.println(seen.size());\n\n }",
"main",
"{\n HashSet<String> seen = new HashSet<>();\n Scanner sc = new Scanner(System.in);\n int tests = sc.nextInt();\n for (int t = 0; t < tests; t++) seen.add(sc.next());\n System.out.println(seen.size());\n\n }",
"HashSet<String> seen = new HashSet<>();",
"seen",
"new HashSet<>()",
"Scanner sc = new Scanner(System.in);",
"sc",
"new Scanner(System.in)",
"int tests = sc.nextInt();",
"tests",
"sc.nextInt()",
"sc.nextInt",
"sc",
"for (int t = 0; t < tests; t++) seen.add(sc.next());",
"int t = 0;",
"int t = 0;",
"t",
"0",
"t < tests",
"t",
"tests",
"t++",
"t++",
"t",
"seen.add(sc.next());",
"seen.add(sc.next())",
"seen.add",
"seen",
"sc.next()",
"sc.next",
"sc",
"System.out.println(seen.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"seen.size()",
"seen.size",
"seen",
"String[] args",
"args",
"public class Main {\n public static void main(String[] args) {\n HashSet<String> seen = new HashSet<>();\n Scanner sc = new Scanner(System.in);\n int tests = sc.nextInt();\n for (int t = 0; t < tests; t++) seen.add(sc.next());\n System.out.println(seen.size());\n\n }\n}",
"public class Main {\n public static void main(String[] args) {\n HashSet<String> seen = new HashSet<>();\n Scanner sc = new Scanner(System.in);\n int tests = sc.nextInt();\n for (int t = 0; t < tests; t++) seen.add(sc.next());\n System.out.println(seen.size());\n\n }\n}",
"Main"
] |
import java.util.*;
public class Main {
public static void main(String[] args) {
HashSet<String> seen = new HashSet<>();
Scanner sc = new Scanner(System.in);
int tests = sc.nextInt();
for (int t = 0; t < tests; t++) seen.add(sc.next());
System.out.println(seen.size());
}
}
|
[
7,
15,
13,
17,
15,
13,
17,
6,
13,
12,
13,
30,
41,
13,
20,
41,
13,
4,
18,
13,
41,
13,
20,
41,
13,
17,
11,
1,
41,
13,
17,
2,
13,
13,
1,
40,
13,
30,
30,
0,
13,
4,
18,
13,
14,
40,
4,
18,
13,
13,
30,
4,
18,
13,
13,
17,
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
],
[
67,
8
],
[
67,
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
],
[
23,
25
],
[
11,
26
],
[
26,
27
],
[
27,
28
],
[
28,
29
],
[
28,
30
],
[
26,
31
],
[
31,
32
],
[
31,
33
],
[
26,
34
],
[
34,
35
],
[
35,
36
],
[
26,
37
],
[
38,
38
],
[
38,
39
],
[
39,
40
],
[
39,
41
],
[
41,
42
],
[
42,
43
],
[
38,
44
],
[
44,
45
],
[
45,
46
],
[
46,
47
],
[
47,
48
],
[
46,
49
],
[
44,
50
],
[
50,
51
],
[
51,
52
],
[
52,
53
],
[
51,
54
],
[
51,
55
],
[
11,
56
],
[
56,
57
],
[
57,
58
],
[
58,
59
],
[
58,
60
],
[
56,
61
],
[
61,
62
],
[
62,
63
],
[
9,
64
],
[
64,
65
],
[
0,
66
],
[
66,
67
],
[
66,
68
]
] |
[
"import java.util.*;\nimport java.util.HashMap;\n\npublic class Main{\n//public class abc164_c{\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tHashMap<String, Integer> hmap = new HashMap<String, Integer>();\n\t\tString s = \"\";\n\n\t\tfor(int i=0; i <n; i++){\n\t\t\ts = scan.next();\n\t\t\tif( ! hmap.containsKey(s)){\n\t\t\t\thmap.put(s, 1);\n\t\t\t}\n\n\t\t}\n\n\t\tSystem.out.println(hmap.size());\n\t}\n\n}",
"import java.util.*;",
"util.*",
"java",
"import java.util.HashMap;",
"HashMap",
"java.util",
"public class Main{\n//public class abc164_c{\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tHashMap<String, Integer> hmap = new HashMap<String, Integer>();\n\t\tString s = \"\";\n\n\t\tfor(int i=0; i <n; i++){\n\t\t\ts = scan.next();\n\t\t\tif( ! hmap.containsKey(s)){\n\t\t\t\thmap.put(s, 1);\n\t\t\t}\n\n\t\t}\n\n\t\tSystem.out.println(hmap.size());\n\t}\n\n}",
"Main",
"//public class abc164_c{\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tHashMap<String, Integer> hmap = new HashMap<String, Integer>();\n\t\tString s = \"\";\n\n\t\tfor(int i=0; i <n; i++){\n\t\t\ts = scan.next();\n\t\t\tif( ! hmap.containsKey(s)){\n\t\t\t\thmap.put(s, 1);\n\t\t\t}\n\n\t\t}\n\n\t\tSystem.out.println(hmap.size());\n\t}",
"main",
"{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tHashMap<String, Integer> hmap = new HashMap<String, Integer>();\n\t\tString s = \"\";\n\n\t\tfor(int i=0; i <n; i++){\n\t\t\ts = scan.next();\n\t\t\tif( ! hmap.containsKey(s)){\n\t\t\t\thmap.put(s, 1);\n\t\t\t}\n\n\t\t}\n\n\t\tSystem.out.println(hmap.size());\n\t}",
"Scanner scan = new Scanner(System.in);",
"scan",
"new Scanner(System.in)",
"int n = scan.nextInt();",
"n",
"scan.nextInt()",
"scan.nextInt",
"scan",
"HashMap<String, Integer> hmap = new HashMap<String, Integer>();",
"hmap",
"new HashMap<String, Integer>()",
"String s = \"\";",
"s",
"\"\"",
"for(int i=0; i <n; i++){\n\t\t\ts = scan.next();\n\t\t\tif( ! hmap.containsKey(s)){\n\t\t\t\thmap.put(s, 1);\n\t\t\t}\n\n\t\t}",
"int i=0;",
"int i=0;",
"i",
"0",
"i <n",
"i",
"n",
"i++",
"i++",
"i",
"{\n\t\t\ts = scan.next();\n\t\t\tif( ! hmap.containsKey(s)){\n\t\t\t\thmap.put(s, 1);\n\t\t\t}\n\n\t\t}",
"{\n\t\t\ts = scan.next();\n\t\t\tif( ! hmap.containsKey(s)){\n\t\t\t\thmap.put(s, 1);\n\t\t\t}\n\n\t\t}",
"s = scan.next()",
"s",
"scan.next()",
"scan.next",
"scan",
"if( ! hmap.containsKey(s)){\n\t\t\t\thmap.put(s, 1);\n\t\t\t}",
"! hmap.containsKey(s)",
"hmap.containsKey(s)",
"hmap.containsKey",
"hmap",
"s",
"{\n\t\t\t\thmap.put(s, 1);\n\t\t\t}",
"hmap.put(s, 1)",
"hmap.put",
"hmap",
"s",
"1",
"System.out.println(hmap.size())",
"System.out.println",
"System.out",
"System",
"System.out",
"hmap.size()",
"hmap.size",
"hmap",
"String[] args",
"args",
"public class Main{\n//public class abc164_c{\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tHashMap<String, Integer> hmap = new HashMap<String, Integer>();\n\t\tString s = \"\";\n\n\t\tfor(int i=0; i <n; i++){\n\t\t\ts = scan.next();\n\t\t\tif( ! hmap.containsKey(s)){\n\t\t\t\thmap.put(s, 1);\n\t\t\t}\n\n\t\t}\n\n\t\tSystem.out.println(hmap.size());\n\t}\n\n}",
"public class Main{\n//public class abc164_c{\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint n = scan.nextInt();\n\t\tHashMap<String, Integer> hmap = new HashMap<String, Integer>();\n\t\tString s = \"\";\n\n\t\tfor(int i=0; i <n; i++){\n\t\t\ts = scan.next();\n\t\t\tif( ! hmap.containsKey(s)){\n\t\t\t\thmap.put(s, 1);\n\t\t\t}\n\n\t\t}\n\n\t\tSystem.out.println(hmap.size());\n\t}\n\n}",
"Main"
] |
import java.util.*;
import java.util.HashMap;
public class Main{
//public class abc164_c{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
HashMap<String, Integer> hmap = new HashMap<String, Integer>();
String s = "";
for(int i=0; i <n; i++){
s = scan.next();
if( ! hmap.containsKey(s)){
hmap.put(s, 1);
}
}
System.out.println(hmap.size());
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.