node_ids
sequencelengths
4
1.4k
edge_index
sequencelengths
1
2.22k
text
sequencelengths
4
1.4k
source
stringlengths
14
427k
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 17, 12, 13, 30, 38, 5, 13, 30, 4, 18, 13, 40, 17, 30, 41, 13, 20, 41, 13, 42, 2, 0, 13, 4, 18, 13, 17, 30, 41, 13, 4, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 14, 2, 13, 17, 4, 18, 13, 40, 17, 4, 18, 18, 13, 13, 2, 2, 13, 2, 13, 13, 13, 4, 18, 18, 13, 13, 13, 4, 18, 18, 13, 13, 2, 13, 13, 4, 18, 18, 13, 13, 13, 41, 13, 2, 13, 13, 41, 13, 4, 18, 13, 17, 13, 4, 18, 18, 13, 13, 13, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 126, 8 ], [ 126, 9 ], [ 9, 10 ], [ 9, 11 ], [ 126, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 16, 17 ], [ 16, 18 ], [ 18, 19 ], [ 19, 20 ], [ 20, 21 ], [ 19, 22 ], [ 22, 23 ], [ 15, 24 ], [ 24, 25 ], [ 25, 26 ], [ 25, 27 ], [ 24, 28 ], [ 28, 29 ], [ 24, 30 ], [ 30, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 31, 37 ], [ 30, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 42, 43 ], [ 41, 44 ], [ 38, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 48, 49 ], [ 47, 50 ], [ 50, 51 ], [ 50, 52 ], [ 38, 53 ], [ 53, 54 ], [ 53, 55 ], [ 55, 56 ], [ 56, 57 ], [ 55, 58 ], [ 58, 59 ], [ 58, 60 ], [ 38, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 61, 65 ], [ 65, 66 ], [ 66, 67 ], [ 65, 68 ], [ 68, 69 ], [ 38, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 70, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 78, 80 ], [ 75, 81 ], [ 38, 82 ], [ 82, 83 ], [ 83, 84 ], [ 84, 85 ], [ 84, 86 ], [ 82, 87 ], [ 38, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 88, 93 ], [ 93, 94 ], [ 93, 95 ], [ 38, 96 ], [ 96, 97 ], [ 97, 98 ], [ 98, 99 ], [ 98, 100 ], [ 96, 101 ], [ 38, 102 ], [ 102, 103 ], [ 102, 104 ], [ 104, 105 ], [ 104, 106 ], [ 38, 107 ], [ 107, 108 ], [ 107, 109 ], [ 109, 110 ], [ 110, 111 ], [ 109, 112 ], [ 109, 113 ], [ 38, 114 ], [ 114, 115 ], [ 115, 116 ], [ 116, 117 ], [ 116, 118 ], [ 114, 119 ], [ 24, 120 ], [ 120, 121 ], [ 121, 122 ], [ 12, 123 ], [ 123, 124 ], [ 0, 125 ], [ 125, 126 ], [ 125, 127 ] ]
[ "import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\n/**\n * http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=ITP1_4_A\n * \n * @author chrone\n * \n */\npublic class Main {\n \n private final static String SPACE = \" \";\n \n public static void main(String[] args) {\n try {\n BufferedReader stdReader = new BufferedReader(\n new InputStreamReader(System.in));\n \n String sStr;\n while ((sStr = stdReader.readLine()) != null) {\n String[] inputs = sStr.split(\" \");\n \n int a = Integer.valueOf(inputs[0]);\n int b = Integer.valueOf(inputs[1]);\n // int c = Integer.valueOf(inputs[2]);\n \n // Zero Divide\n if (b == 0)\n System.exit(-1);\n \n System.out.print((a - a % b) / b);\n System.out.print(SPACE);\n System.out.print(a % b);\n System.out.print(SPACE);\n double divide = (double)a / (double)b;\n String divideStr = String.format(\"%.5f\", divide);\n System.out.print(divideStr);\n \n }\n stdReader.close();\n } catch (Exception e) {\n System.exit(-1);\n }\n }\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n \n private final static String SPACE = \" \";\n \n public static void main(String[] args) {\n try {\n BufferedReader stdReader = new BufferedReader(\n new InputStreamReader(System.in));\n \n String sStr;\n while ((sStr = stdReader.readLine()) != null) {\n String[] inputs = sStr.split(\" \");\n \n int a = Integer.valueOf(inputs[0]);\n int b = Integer.valueOf(inputs[1]);\n // int c = Integer.valueOf(inputs[2]);\n \n // Zero Divide\n if (b == 0)\n System.exit(-1);\n \n System.out.print((a - a % b) / b);\n System.out.print(SPACE);\n System.out.print(a % b);\n System.out.print(SPACE);\n double divide = (double)a / (double)b;\n String divideStr = String.format(\"%.5f\", divide);\n System.out.print(divideStr);\n \n }\n stdReader.close();\n } catch (Exception e) {\n System.exit(-1);\n }\n }\n}", "Main", "private final static String SPACE = \" \";", "SPACE", "\" \"", "public static void main(String[] args) {\n try {\n BufferedReader stdReader = new BufferedReader(\n new InputStreamReader(System.in));\n \n String sStr;\n while ((sStr = stdReader.readLine()) != null) {\n String[] inputs = sStr.split(\" \");\n \n int a = Integer.valueOf(inputs[0]);\n int b = Integer.valueOf(inputs[1]);\n // int c = Integer.valueOf(inputs[2]);\n \n // Zero Divide\n if (b == 0)\n System.exit(-1);\n \n System.out.print((a - a % b) / b);\n System.out.print(SPACE);\n System.out.print(a % b);\n System.out.print(SPACE);\n double divide = (double)a / (double)b;\n String divideStr = String.format(\"%.5f\", divide);\n System.out.print(divideStr);\n \n }\n stdReader.close();\n } catch (Exception e) {\n System.exit(-1);\n }\n }", "main", "{\n try {\n BufferedReader stdReader = new BufferedReader(\n new InputStreamReader(System.in));\n \n String sStr;\n while ((sStr = stdReader.readLine()) != null) {\n String[] inputs = sStr.split(\" \");\n \n int a = Integer.valueOf(inputs[0]);\n int b = Integer.valueOf(inputs[1]);\n // int c = Integer.valueOf(inputs[2]);\n \n // Zero Divide\n if (b == 0)\n System.exit(-1);\n \n System.out.print((a - a % b) / b);\n System.out.print(SPACE);\n System.out.print(a % b);\n System.out.print(SPACE);\n double divide = (double)a / (double)b;\n String divideStr = String.format(\"%.5f\", divide);\n System.out.print(divideStr);\n \n }\n stdReader.close();\n } catch (Exception e) {\n System.exit(-1);\n }\n }", "try {\n BufferedReader stdReader = new BufferedReader(\n new InputStreamReader(System.in));\n \n String sStr;\n while ((sStr = stdReader.readLine()) != null) {\n String[] inputs = sStr.split(\" \");\n \n int a = Integer.valueOf(inputs[0]);\n int b = Integer.valueOf(inputs[1]);\n // int c = Integer.valueOf(inputs[2]);\n \n // Zero Divide\n if (b == 0)\n System.exit(-1);\n \n System.out.print((a - a % b) / b);\n System.out.print(SPACE);\n System.out.print(a % b);\n System.out.print(SPACE);\n double divide = (double)a / (double)b;\n String divideStr = String.format(\"%.5f\", divide);\n System.out.print(divideStr);\n \n }\n stdReader.close();\n } catch (Exception e) {\n System.exit(-1);\n }", "catch (Exception e) {\n System.exit(-1);\n }", "Exception e", "{\n System.exit(-1);\n }", "System.exit(-1)", "System.exit", "System", "-1", "1", "{\n BufferedReader stdReader = new BufferedReader(\n new InputStreamReader(System.in));\n \n String sStr;\n while ((sStr = stdReader.readLine()) != null) {\n String[] inputs = sStr.split(\" \");\n \n int a = Integer.valueOf(inputs[0]);\n int b = Integer.valueOf(inputs[1]);\n // int c = Integer.valueOf(inputs[2]);\n \n // Zero Divide\n if (b == 0)\n System.exit(-1);\n \n System.out.print((a - a % b) / b);\n System.out.print(SPACE);\n System.out.print(a % b);\n System.out.print(SPACE);\n double divide = (double)a / (double)b;\n String divideStr = String.format(\"%.5f\", divide);\n System.out.print(divideStr);\n \n }\n stdReader.close();\n }", "BufferedReader stdReader = new BufferedReader(\n new InputStreamReader(System.in));", "stdReader", "new BufferedReader(\n new InputStreamReader(System.in))", "String sStr;", "sStr", "while ((sStr = stdReader.readLine()) != null) {\n String[] inputs = sStr.split(\" \");\n \n int a = Integer.valueOf(inputs[0]);\n int b = Integer.valueOf(inputs[1]);\n // int c = Integer.valueOf(inputs[2]);\n \n // Zero Divide\n if (b == 0)\n System.exit(-1);\n \n System.out.print((a - a % b) / b);\n System.out.print(SPACE);\n System.out.print(a % b);\n System.out.print(SPACE);\n double divide = (double)a / (double)b;\n String divideStr = String.format(\"%.5f\", divide);\n System.out.print(divideStr);\n \n }", "(sStr = stdReader.readLine()) != null", "(sStr = stdReader.readLine())", "sStr", "stdReader.readLine()", "stdReader.readLine", "stdReader", "null", "{\n String[] inputs = sStr.split(\" \");\n \n int a = Integer.valueOf(inputs[0]);\n int b = Integer.valueOf(inputs[1]);\n // int c = Integer.valueOf(inputs[2]);\n \n // Zero Divide\n if (b == 0)\n System.exit(-1);\n \n System.out.print((a - a % b) / b);\n System.out.print(SPACE);\n System.out.print(a % b);\n System.out.print(SPACE);\n double divide = (double)a / (double)b;\n String divideStr = String.format(\"%.5f\", divide);\n System.out.print(divideStr);\n \n }", "String[] inputs = sStr.split(\" \");", "inputs", "sStr.split(\" \")", "sStr.split", "sStr", "\" \"", "int a = Integer.valueOf(inputs[0]);", "a", "Integer.valueOf(inputs[0])", "Integer.valueOf", "Integer", "inputs[0]", "inputs", "0", "int b = Integer.valueOf(inputs[1]);", "b", "Integer.valueOf(inputs[1])", "Integer.valueOf", "Integer", "inputs[1]", "inputs", "1", "if (b == 0)\n System.exit(-1);", "b == 0", "b", "0", "System.exit(-1)", "System.exit", "System", "-1", "1", "System.out.print((a - a % b) / b)", "System.out.print", "System.out", "System", "System.out", "(a - a % b) / b", "(a - a % b)", "a", "a % b", "a", "b", "b", "System.out.print(SPACE)", "System.out.print", "System.out", "System", "System.out", "SPACE", "System.out.print(a % b)", "System.out.print", "System.out", "System", "System.out", "a % b", "a", "b", "System.out.print(SPACE)", "System.out.print", "System.out", "System", "System.out", "SPACE", "double divide = (double)a / (double)b;", "divide", "(double)a / (double)b", "(double)a", "(double)b", "String divideStr = String.format(\"%.5f\", divide);", "divideStr", "String.format(\"%.5f\", divide)", "String.format", "String", "\"%.5f\"", "divide", "System.out.print(divideStr)", "System.out.print", "System.out", "System", "System.out", "divideStr", "stdReader.close()", "stdReader.close", "stdReader", "String[] args", "args", "public class Main {\n \n private final static String SPACE = \" \";\n \n public static void main(String[] args) {\n try {\n BufferedReader stdReader = new BufferedReader(\n new InputStreamReader(System.in));\n \n String sStr;\n while ((sStr = stdReader.readLine()) != null) {\n String[] inputs = sStr.split(\" \");\n \n int a = Integer.valueOf(inputs[0]);\n int b = Integer.valueOf(inputs[1]);\n // int c = Integer.valueOf(inputs[2]);\n \n // Zero Divide\n if (b == 0)\n System.exit(-1);\n \n System.out.print((a - a % b) / b);\n System.out.print(SPACE);\n System.out.print(a % b);\n System.out.print(SPACE);\n double divide = (double)a / (double)b;\n String divideStr = String.format(\"%.5f\", divide);\n System.out.print(divideStr);\n \n }\n stdReader.close();\n } catch (Exception e) {\n System.exit(-1);\n }\n }\n}", "public class Main {\n \n private final static String SPACE = \" \";\n \n public static void main(String[] args) {\n try {\n BufferedReader stdReader = new BufferedReader(\n new InputStreamReader(System.in));\n \n String sStr;\n while ((sStr = stdReader.readLine()) != null) {\n String[] inputs = sStr.split(\" \");\n \n int a = Integer.valueOf(inputs[0]);\n int b = Integer.valueOf(inputs[1]);\n // int c = Integer.valueOf(inputs[2]);\n \n // Zero Divide\n if (b == 0)\n System.exit(-1);\n \n System.out.print((a - a % b) / b);\n System.out.print(SPACE);\n System.out.print(a % b);\n System.out.print(SPACE);\n double divide = (double)a / (double)b;\n String divideStr = String.format(\"%.5f\", divide);\n System.out.print(divideStr);\n \n }\n stdReader.close();\n } catch (Exception e) {\n System.exit(-1);\n }\n }\n}", "Main" ]
import java.io.BufferedReader; import java.io.InputStreamReader; /** * http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=ITP1_4_A * * @author chrone * */ public class Main { private final static String SPACE = " "; public static void main(String[] args) { try { BufferedReader stdReader = new BufferedReader( new InputStreamReader(System.in)); String sStr; while ((sStr = stdReader.readLine()) != null) { String[] inputs = sStr.split(" "); int a = Integer.valueOf(inputs[0]); int b = Integer.valueOf(inputs[1]); // int c = Integer.valueOf(inputs[2]); // Zero Divide if (b == 0) System.exit(-1); System.out.print((a - a % b) / b); System.out.print(SPACE); System.out.print(a % b); System.out.print(SPACE); double divide = (double)a / (double)b; String divideStr = String.format("%.5f", divide); System.out.print(divideStr); } stdReader.close(); } catch (Exception e) { System.exit(-1); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 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, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 58, 5 ], [ 58, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 29, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 34, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 37, 42 ], [ 45, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 44, 48 ], [ 43, 49 ], [ 45, 50 ], [ 50, 51 ], [ 51, 52 ], [ 50, 53 ], [ 50, 54 ], [ 6, 55 ], [ 55, 56 ], [ 0, 57 ], [ 57, 58 ], [ 57, 59 ] ]
[ "import java.util.Scanner; \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 d = a/b;\n int r = a%b;\n double f = (double)a/b;\n System.out.println(d+\" \"+r+\" \"+String.format(\"%.5f\",f));\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 d = a/b;\n int r = a%b;\n double f = (double)a/b;\n System.out.println(d+\" \"+r+\" \"+String.format(\"%.5f\",f));\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 d = a/b;\n int r = a%b;\n double f = (double)a/b;\n System.out.println(d+\" \"+r+\" \"+String.format(\"%.5f\",f));\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n int d = a/b;\n int r = a%b;\n double f = (double)a/b;\n System.out.println(d+\" \"+r+\" \"+String.format(\"%.5f\",f));\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 d = a/b;", "d", "a/b", "a", "b", "int r = a%b;", "r", "a%b", "a", "b", "double f = (double)a/b;", "f", "(double)a/b", "(double)a", "b", "System.out.println(d+\" \"+r+\" \"+String.format(\"%.5f\",f))", "System.out.println", "System.out", "System", "System.out", "d+\" \"+r+\" \"+String.format(\"%.5f\",f)", "\" \"", "r", "d+\" \"+r+\" \"+String.format(\"%.5f\",f)", "d", "\" \"", "r", "\" \"", "String.format(\"%.5f\",f)", "String.format", "String", "\"%.5f\"", "f", "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 d = a/b;\n int r = a%b;\n double f = (double)a/b;\n System.out.println(d+\" \"+r+\" \"+String.format(\"%.5f\",f));\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 d = a/b;\n int r = a%b;\n double f = (double)a/b;\n System.out.println(d+\" \"+r+\" \"+String.format(\"%.5f\",f));\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 d = a/b; int r = a%b; double f = (double)a/b; System.out.println(d+" "+r+" "+String.format("%.5f",f)); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 41, 13, 41, 13, 17, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 17, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 8, 11 ], [ 11, 12 ], [ 8, 13 ], [ 13, 14 ], [ 13, 15 ], [ 8, 16 ], [ 16, 17 ], [ 16, 18 ], [ 8, 19 ], [ 19, 20 ], [ 19, 21 ], [ 21, 22 ], [ 22, 23 ], [ 8, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 8, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 31, 33 ], [ 8, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 36, 38 ], [ 8, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 41, 43 ], [ 8, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 44, 49 ], [ 52, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 50, 56 ], [ 52, 57 ], [ 57, 58 ], [ 58, 59 ], [ 57, 60 ], [ 57, 61 ], [ 6, 62 ], [ 62, 63 ] ]
[ "import java.util.Scanner;\nclass Main{\n public static void main(String[] args){\n \n int d,r;\n double f = 0;\n\n Scanner sc = new Scanner(System.in);\n \n int a = sc.nextInt();\n int b = sc.nextInt();\n \n d = a / b;\n r = a % b;\n f = (double)a / b;\n \n \n System.out.println(d + \" \" + r + \" \" + (String.format(\"%.5f\",f)));\n }\n}\n", "import java.util.Scanner;", "Scanner", "java.util", "class Main{\n public static void main(String[] args){\n \n int d,r;\n double f = 0;\n\n Scanner sc = new Scanner(System.in);\n \n int a = sc.nextInt();\n int b = sc.nextInt();\n \n d = a / b;\n r = a % b;\n f = (double)a / b;\n \n \n System.out.println(d + \" \" + r + \" \" + (String.format(\"%.5f\",f)));\n }\n}", "Main", "public static void main(String[] args){\n \n int d,r;\n double f = 0;\n\n Scanner sc = new Scanner(System.in);\n \n int a = sc.nextInt();\n int b = sc.nextInt();\n \n d = a / b;\n r = a % b;\n f = (double)a / b;\n \n \n System.out.println(d + \" \" + r + \" \" + (String.format(\"%.5f\",f)));\n }", "main", "{\n \n int d,r;\n double f = 0;\n\n Scanner sc = new Scanner(System.in);\n \n int a = sc.nextInt();\n int b = sc.nextInt();\n \n d = a / b;\n r = a % b;\n f = (double)a / b;\n \n \n System.out.println(d + \" \" + r + \" \" + (String.format(\"%.5f\",f)));\n }", "int d", "d", "r;", "r", "double f = 0;", "f", "0", "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", "d = a / b", "d", "a / b", "a", "b", "r = a % b", "r", "a % b", "a", "b", "f = (double)a / b", "f", "(double)a / b", "(double)a", "b", "System.out.println(d + \" \" + r + \" \" + (String.format(\"%.5f\",f)))", "System.out.println", "System.out", "System", "System.out", "d + \" \" + r + \" \" + (String.format(\"%.5f\",f))", "\" \"", "r", "d + \" \" + r + \" \" + (String.format(\"%.5f\",f))", "d", "\" \"", "r", "\" \"", "(String.format(\"%.5f\",f))", "String.format", "String", "\"%.5f\"", "f", "String[] args", "args" ]
import java.util.Scanner; class Main{ public static void main(String[] args){ int d,r; double f = 0; Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); d = a / b; r = a % b; f = (double)a / b; System.out.println(d + " " + r + " " + (String.format("%.5f",f))); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 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, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 17, 2, 13, 13, 12, 13, 30, 4, 18, 20, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 63, 5 ], [ 63, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 29, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 34, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 37, 42 ], [ 45, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 44, 48 ], [ 43, 49 ], [ 45, 50 ], [ 37, 51 ], [ 51, 52 ], [ 51, 53 ], [ 63, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 54, 60 ], [ 60, 61 ], [ 0, 62 ], [ 62, 63 ], [ 62, 64 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tvoid run(){\n\t\tScanner s = new Scanner(System.in);\n\t double a = s.nextDouble();\n\t double b = s.nextDouble();\n\t int d = (int)(a / b);\n\t int r = (int)(a % b);\n\t double f = a / b;\n\t System.out.printf(d+\" \"+ r +\" \" + \"%f\", a/b);\n\t \n\t}\n\tpublic static void main(String[] args) {\n\t\t\n\t\tnew Main().run();\n\t\t\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tvoid run(){\n\t\tScanner s = new Scanner(System.in);\n\t double a = s.nextDouble();\n\t double b = s.nextDouble();\n\t int d = (int)(a / b);\n\t int r = (int)(a % b);\n\t double f = a / b;\n\t System.out.printf(d+\" \"+ r +\" \" + \"%f\", a/b);\n\t \n\t}\n\tpublic static void main(String[] args) {\n\t\t\n\t\tnew Main().run();\n\t\t\n\t}\n}", "Main", "void run(){\n\t\tScanner s = new Scanner(System.in);\n\t double a = s.nextDouble();\n\t double b = s.nextDouble();\n\t int d = (int)(a / b);\n\t int r = (int)(a % b);\n\t double f = a / b;\n\t System.out.printf(d+\" \"+ r +\" \" + \"%f\", a/b);\n\t \n\t}", "run", "{\n\t\tScanner s = new Scanner(System.in);\n\t double a = s.nextDouble();\n\t double b = s.nextDouble();\n\t int d = (int)(a / b);\n\t int r = (int)(a % b);\n\t double f = a / b;\n\t System.out.printf(d+\" \"+ r +\" \" + \"%f\", a/b);\n\t \n\t}", "Scanner s = new Scanner(System.in);", "s", "new Scanner(System.in)", "double a = s.nextDouble();", "a", "s.nextDouble()", "s.nextDouble", "s", "double b = s.nextDouble();", "b", "s.nextDouble()", "s.nextDouble", "s", "int d = (int)(a / b);", "d", "(int)(a / b)", "a", "b", "int r = (int)(a % b);", "r", "(int)(a % b)", "a", "b", "double f = a / b;", "f", "a / b", "a", "b", "System.out.printf(d+\" \"+ r +\" \" + \"%f\", a/b)", "System.out.printf", "System.out", "System", "System.out", "d+\" \"+ r +\" \" + \"%f\"", "\" \"", "r", "d+\" \"+ r +\" \" + \"%f\"", "d", "\" \"", "r", "\" \"", "\"%f\"", "a/b", "a", "b", "public static void main(String[] args) {\n\t\t\n\t\tnew Main().run();\n\t\t\n\t}", "main", "{\n\t\t\n\t\tnew Main().run();\n\t\t\n\t}", "new Main().run()", "new Main().run", "new Main()", "String[] args", "args", "public class Main {\n\tvoid run(){\n\t\tScanner s = new Scanner(System.in);\n\t double a = s.nextDouble();\n\t double b = s.nextDouble();\n\t int d = (int)(a / b);\n\t int r = (int)(a % b);\n\t double f = a / b;\n\t System.out.printf(d+\" \"+ r +\" \" + \"%f\", a/b);\n\t \n\t}\n\tpublic static void main(String[] args) {\n\t\t\n\t\tnew Main().run();\n\t\t\n\t}\n}", "public class Main {\n\tvoid run(){\n\t\tScanner s = new Scanner(System.in);\n\t double a = s.nextDouble();\n\t double b = s.nextDouble();\n\t int d = (int)(a / b);\n\t int r = (int)(a % b);\n\t double f = a / b;\n\t System.out.printf(d+\" \"+ r +\" \" + \"%f\", a/b);\n\t \n\t}\n\tpublic static void main(String[] args) {\n\t\t\n\t\tnew Main().run();\n\t\t\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { void run(){ Scanner s = new Scanner(System.in); double a = s.nextDouble(); double b = s.nextDouble(); int d = (int)(a / b); int r = (int)(a % b); double f = a / b; System.out.printf(d+" "+ r +" " + "%f", a/b); } public static void main(String[] args) { new Main().run(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 17, 41, 13, 17, 41, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 55, 5 ], [ 55, 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 ], [ 8, 25 ], [ 25, 26 ], [ 25, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 30, 32 ], [ 8, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 35, 37 ], [ 8, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 40, 42 ], [ 8, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 43, 48 ], [ 43, 49 ], [ 43, 50 ], [ 43, 51 ], [ 6, 52 ], [ 52, 53 ], [ 0, 54 ], [ 54, 55 ], [ 54, 56 ] ]
[ "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\t\tint a = sc.nextInt();\n\t\t\tint b = sc.nextInt();\n\t\t\tint d = 0;\n\t\t\tint r = 0;\n\t\t\tdouble f = (double)a / b;\n\t\t\td = a / b;\n\t\t\tr = a % b;\n\t\t\tSystem.out.printf(\"%d %d %f\",d ,r ,f);\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\t\tint a = sc.nextInt();\n\t\t\tint b = sc.nextInt();\n\t\t\tint d = 0;\n\t\t\tint r = 0;\n\t\t\tdouble f = (double)a / b;\n\t\t\td = a / b;\n\t\t\tr = a % b;\n\t\t\tSystem.out.printf(\"%d %d %f\",d ,r ,f);\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\t\tint a = sc.nextInt();\n\t\t\tint b = sc.nextInt();\n\t\t\tint d = 0;\n\t\t\tint r = 0;\n\t\t\tdouble f = (double)a / b;\n\t\t\td = a / b;\n\t\t\tr = a % b;\n\t\t\tSystem.out.printf(\"%d %d %f\",d ,r ,f);\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\t\tint a = sc.nextInt();\n\t\t\tint b = sc.nextInt();\n\t\t\tint d = 0;\n\t\t\tint r = 0;\n\t\t\tdouble f = (double)a / b;\n\t\t\td = a / b;\n\t\t\tr = a % b;\n\t\t\tSystem.out.printf(\"%d %d %f\",d ,r ,f);\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 d = 0;", "d", "0", "int r = 0;", "r", "0", "double f = (double)a / b;", "f", "(double)a / b", "(double)a", "b", "d = a / b", "d", "a / b", "a", "b", "r = a % b", "r", "a % b", "a", "b", "System.out.printf(\"%d %d %f\",d ,r ,f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\"", "d", "r", "f", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\t\tint a = sc.nextInt();\n\t\t\tint b = sc.nextInt();\n\t\t\tint d = 0;\n\t\t\tint r = 0;\n\t\t\tdouble f = (double)a / b;\n\t\t\td = a / b;\n\t\t\tr = a % b;\n\t\t\tSystem.out.printf(\"%d %d %f\",d ,r ,f);\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\t\tint a = sc.nextInt();\n\t\t\tint b = sc.nextInt();\n\t\t\tint d = 0;\n\t\t\tint r = 0;\n\t\t\tdouble f = (double)a / b;\n\t\t\td = a / b;\n\t\t\tr = a % b;\n\t\t\tSystem.out.printf(\"%d %d %f\",d ,r ,f);\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 d = 0; int r = 0; double f = (double)a / b; d = a / b; r = a % b; System.out.printf("%d %d %f",d ,r ,f); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 17, 2, 13, 13, 2, 13, 13, 2, 2, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 42, 5 ], [ 42, 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 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 22, 28 ], [ 28, 29 ], [ 28, 30 ], [ 22, 31 ], [ 31, 32 ], [ 31, 33 ], [ 22, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 34, 38 ], [ 6, 39 ], [ 39, 40 ], [ 0, 41 ], [ 41, 42 ], [ 41, 43 ] ]
[ "import java.util.*;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\t@SuppressWarnings(\"resource\")\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tSystem.out.printf(\"%d %d %f\", a / b, a % b, a * 1.0 / b);\n\t}\n}", "import java.util.*;", "util.*", "java", "public class Main {\n\tpublic static void main(String[] args) {\n\t\t@SuppressWarnings(\"resource\")\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tSystem.out.printf(\"%d %d %f\", a / b, a % b, a * 1.0 / b);\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\t@SuppressWarnings(\"resource\")\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tSystem.out.printf(\"%d %d %f\", a / b, a % b, a * 1.0 / b);\n\t}", "main", "{\n\t\t@SuppressWarnings(\"resource\")\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tSystem.out.printf(\"%d %d %f\", a / b, a % b, a * 1.0 / b);\n\t}", "@SuppressWarnings(\"resource\")\n\t\tScanner 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", "System.out.printf(\"%d %d %f\", a / b, a % b, a * 1.0 / b)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\"", "a / b", "a", "b", "a % b", "a", "b", "a * 1.0 / b", "a * 1.0", "a", "1.0", "b", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) {\n\t\t@SuppressWarnings(\"resource\")\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tSystem.out.printf(\"%d %d %f\", a / b, a % b, a * 1.0 / b);\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\t@SuppressWarnings(\"resource\")\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tSystem.out.printf(\"%d %d %f\", a / b, a % b, a * 1.0 / b);\n\t}\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args) { @SuppressWarnings("resource") Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); System.out.printf("%d %d %f", a / b, a % b, a * 1.0 / b); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 38, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 17, 2, 13, 13, 2, 13, 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 ], [ 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 ], [ 25, 26 ], [ 26, 27 ], [ 26, 28 ], [ 24, 29 ], [ 24, 30 ], [ 30, 31 ], [ 30, 32 ], [ 24, 33 ], [ 33, 34 ], [ 33, 35 ], [ 24, 36 ], [ 36, 37 ], [ 36, 38 ], [ 6, 39 ], [ 39, 40 ] ]
[ "import java.util.*;\n\nclass Main {\n public static void main(String args[]) {\n try (Scanner sc = new Scanner(System.in)) {\n int a = sc.nextInt(), b = sc.nextInt();\n System.out.printf(\"%d %d %f\\n\", a / b, a % b, (double)a / (double)b);\n }\n }\n}", "import java.util.*;", "util.*", "java", "class Main {\n public static void main(String args[]) {\n try (Scanner sc = new Scanner(System.in)) {\n int a = sc.nextInt(), b = sc.nextInt();\n System.out.printf(\"%d %d %f\\n\", a / b, a % b, (double)a / (double)b);\n }\n }\n}", "Main", "public static void main(String args[]) {\n try (Scanner sc = new Scanner(System.in)) {\n int a = sc.nextInt(), b = sc.nextInt();\n System.out.printf(\"%d %d %f\\n\", a / b, a % b, (double)a / (double)b);\n }\n }", "main", "{\n try (Scanner sc = new Scanner(System.in)) {\n int a = sc.nextInt(), b = sc.nextInt();\n System.out.printf(\"%d %d %f\\n\", a / b, a % b, (double)a / (double)b);\n }\n }", "try (Scanner sc = new Scanner(System.in)) {\n int a = sc.nextInt(), b = sc.nextInt();\n System.out.printf(\"%d %d %f\\n\", a / b, a % b, (double)a / (double)b);\n }", "{\n int a = sc.nextInt(), b = sc.nextInt();\n System.out.printf(\"%d %d %f\\n\", a / b, a % b, (double)a / (double)b);\n }", "Scanner sc = new Scanner(System.in)", "Scanner sc = new Scanner(System.in)", "new Scanner(System.in)", "int a = sc.nextInt()", "a", "sc.nextInt()", "sc.nextInt", "sc", "b = sc.nextInt();", "b", "sc.nextInt()", "sc.nextInt", "sc", "System.out.printf(\"%d %d %f\\n\", a / b, a % b, (double)a / (double)b)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\\n\"", "a / b", "a", "b", "a % b", "a", "b", "(double)a / (double)b", "(double)a", "(double)b", "String args[]", "args" ]
import java.util.*; class Main { public static void main(String args[]) { try (Scanner sc = new Scanner(System.in)) { int a = sc.nextInt(), b = sc.nextInt(); System.out.printf("%d %d %f\n", a / b, a % b, (double)a / (double)b); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 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, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 13, 17, 2, 13, 13, 17, 4, 18, 18, 13, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 70, 5 ], [ 70, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 19, 22 ], [ 8, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 25, 28 ], [ 28, 29 ], [ 28, 30 ], [ 8, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 34, 35 ], [ 33, 36 ], [ 36, 37 ], [ 36, 38 ], [ 8, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 41, 43 ], [ 8, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 44, 49 ], [ 51, 50 ], [ 56, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 56, 56 ], [ 56, 57 ], [ 56, 58 ], [ 51, 59 ], [ 8, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 60, 65 ], [ 60, 66 ], [ 6, 67 ], [ 67, 68 ], [ 0, 69 ], [ 69, 70 ], [ 69, 71 ] ]
[ "import java.io.*;\npublic class Main {\n\tpublic static void main(String[] args)throws IOException {\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] i=str.split(\" \");\n\t\tint a= Integer.parseInt(i[0]);\n\t\tint b= Integer.parseInt(i[1]);\n\t\tdouble c=(double)a/(double)b;\n\t\tSystem.out.print(a/b+\" \"+a%b+\" \");\n\t\tSystem.out.printf(\"%.8f\\n\",c);\n\t}\n}", "import java.io.*;", "io.*", "java", "public class Main {\n\tpublic static void main(String[] args)throws IOException {\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] i=str.split(\" \");\n\t\tint a= Integer.parseInt(i[0]);\n\t\tint b= Integer.parseInt(i[1]);\n\t\tdouble c=(double)a/(double)b;\n\t\tSystem.out.print(a/b+\" \"+a%b+\" \");\n\t\tSystem.out.printf(\"%.8f\\n\",c);\n\t}\n}", "Main", "public static void main(String[] args)throws IOException {\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] i=str.split(\" \");\n\t\tint a= Integer.parseInt(i[0]);\n\t\tint b= Integer.parseInt(i[1]);\n\t\tdouble c=(double)a/(double)b;\n\t\tSystem.out.print(a/b+\" \"+a%b+\" \");\n\t\tSystem.out.printf(\"%.8f\\n\",c);\n\t}", "main", "{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] i=str.split(\" \");\n\t\tint a= Integer.parseInt(i[0]);\n\t\tint b= Integer.parseInt(i[1]);\n\t\tdouble c=(double)a/(double)b;\n\t\tSystem.out.print(a/b+\" \"+a%b+\" \");\n\t\tSystem.out.printf(\"%.8f\\n\",c);\n\t}", "BufferedReader br=new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String str = br.readLine();", "str", "br.readLine()", "br.readLine", "br", "String[] i=str.split(\" \");", "i", "str.split(\" \")", "str.split", "str", "\" \"", "int a= Integer.parseInt(i[0]);", "a", "Integer.parseInt(i[0])", "Integer.parseInt", "Integer", "i[0]", "i", "0", "int b= Integer.parseInt(i[1]);", "b", "Integer.parseInt(i[1])", "Integer.parseInt", "Integer", "i[1]", "i", "1", "double c=(double)a/(double)b;", "c", "(double)a/(double)b", "(double)a", "(double)b", "System.out.print(a/b+\" \"+a%b+\" \")", "System.out.print", "System.out", "System", "System.out", "a/b+\" \"+a%b+\" \"", "a%b", "a/b+\" \"+a%b+\" \"", "a/b", "a", "b", "\" \"", "a%b", "a", "b", "\" \"", "System.out.printf(\"%.8f\\n\",c)", "System.out.printf", "System.out", "System", "System.out", "\"%.8f\\n\"", "c", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args)throws IOException {\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] i=str.split(\" \");\n\t\tint a= Integer.parseInt(i[0]);\n\t\tint b= Integer.parseInt(i[1]);\n\t\tdouble c=(double)a/(double)b;\n\t\tSystem.out.print(a/b+\" \"+a%b+\" \");\n\t\tSystem.out.printf(\"%.8f\\n\",c);\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args)throws IOException {\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] i=str.split(\" \");\n\t\tint a= Integer.parseInt(i[0]);\n\t\tint b= Integer.parseInt(i[1]);\n\t\tdouble c=(double)a/(double)b;\n\t\tSystem.out.print(a/b+\" \"+a%b+\" \");\n\t\tSystem.out.printf(\"%.8f\\n\",c);\n\t}\n}", "Main" ]
import java.io.*; public class Main { public static void main(String[] args)throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String str = br.readLine(); String[] i=str.split(" "); int a= Integer.parseInt(i[0]); int b= Integer.parseInt(i[1]); double c=(double)a/(double)b; System.out.print(a/b+" "+a%b+" "); System.out.printf("%.8f\n",c); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 20, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 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 ], [ 8, 11 ], [ 11, 12 ], [ 8, 13 ], [ 13, 14 ], [ 8, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 8, 19 ], [ 19, 20 ], [ 19, 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 ], [ 48, 49 ], [ 49, 50 ], [ 49, 51 ], [ 47, 52 ], [ 47, 53 ], [ 47, 54 ], [ 47, 55 ], [ 8, 56 ], [ 56, 57 ], [ 57, 58 ], [ 6, 59 ], [ 59, 60 ] ]
[ "import java.util.Scanner;\n\nclass Main{\n public static void main(String[] args){\n int a,b,d,r;\n double f;\n \t//?¨??????\\??????????????????????????§????????????\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\ta = scanner.nextInt();\n \tb = scanner.nextInt();\n\n \td = a/b;\n \tr = a%b;\n \t//?????°????¨?????????????int???????????£??????\n \tf = (double)a/b;\n\n \tSystem.out.printf(\"%d %d %5f\",d,r,f);\n \tscanner.close();\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main{\n public static void main(String[] args){\n int a,b,d,r;\n double f;\n \t//?¨??????\\??????????????????????????§????????????\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\ta = scanner.nextInt();\n \tb = scanner.nextInt();\n\n \td = a/b;\n \tr = a%b;\n \t//?????°????¨?????????????int???????????£??????\n \tf = (double)a/b;\n\n \tSystem.out.printf(\"%d %d %5f\",d,r,f);\n \tscanner.close();\n }\n}", "Main", "public static void main(String[] args){\n int a,b,d,r;\n double f;\n \t//?¨??????\\??????????????????????????§????????????\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\ta = scanner.nextInt();\n \tb = scanner.nextInt();\n\n \td = a/b;\n \tr = a%b;\n \t//?????°????¨?????????????int???????????£??????\n \tf = (double)a/b;\n\n \tSystem.out.printf(\"%d %d %5f\",d,r,f);\n \tscanner.close();\n }", "main", "{\n int a,b,d,r;\n double f;\n \t//?¨??????\\??????????????????????????§????????????\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\ta = scanner.nextInt();\n \tb = scanner.nextInt();\n\n \td = a/b;\n \tr = a%b;\n \t//?????°????¨?????????????int???????????£??????\n \tf = (double)a/b;\n\n \tSystem.out.printf(\"%d %d %5f\",d,r,f);\n \tscanner.close();\n }", "int a", "a", "b", "b", "d", "d", "r;", "r", "double f;", "f", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "a = scanner.nextInt()", "a", "scanner.nextInt()", "scanner.nextInt", "scanner", "b = scanner.nextInt()", "b", "scanner.nextInt()", "scanner.nextInt", "scanner", "d = a/b", "d", "a/b", "a", "b", "r = a%b", "r", "a%b", "a", "b", "f = (double)a/b", "f", "(double)a/b", "(double)a", "b", "System.out.printf(\"%d %d %5f\",d,r,f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %5f\"", "d", "r", "f", "scanner.close()", "scanner.close", "scanner", "String[] args", "args" ]
import java.util.Scanner; class Main{ public static void main(String[] args){ int a,b,d,r; double f; //?¨??????\??????????????????????????§???????????? Scanner scanner = new Scanner(System.in); a = scanner.nextInt(); b = scanner.nextInt(); d = a/b; r = a%b; //?????°????¨?????????????int???????????£?????? f = (double)a/b; System.out.printf("%d %d %5f",d,r,f); scanner.close(); } }
[ 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 4, 18, 13, 17, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 63, 5 ], [ 63, 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 ], [ 26, 28 ], [ 10, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 31, 33 ], [ 10, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 36, 38 ], [ 10, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 42, 43 ], [ 41, 44 ], [ 41, 45 ], [ 10, 46 ], [ 46, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 46, 51 ], [ 54, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 53, 57 ], [ 52, 58 ], [ 54, 59 ], [ 6, 60 ], [ 60, 61 ], [ 0, 62 ], [ 62, 63 ], [ 62, 64 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry(Scanner scan = new Scanner(System.in)) {\n\t\t\tint a = scan.nextInt();\n\t\t\tint b = scan.nextInt();\n\n\t\t\tint div = a / b;\n\t\t\tint rem = a % b;\n\t\t\tdouble flo = (double)a / (double)b;\n\n\t\t\tString f = String.format(\"%.5f\",flo);\n\t\t\tSystem.out.println(div + \" \" + rem + \" \" + f);\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 scan = new Scanner(System.in)) {\n\t\t\tint a = scan.nextInt();\n\t\t\tint b = scan.nextInt();\n\n\t\t\tint div = a / b;\n\t\t\tint rem = a % b;\n\t\t\tdouble flo = (double)a / (double)b;\n\n\t\t\tString f = String.format(\"%.5f\",flo);\n\t\t\tSystem.out.println(div + \" \" + rem + \" \" + f);\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\ttry(Scanner scan = new Scanner(System.in)) {\n\t\t\tint a = scan.nextInt();\n\t\t\tint b = scan.nextInt();\n\n\t\t\tint div = a / b;\n\t\t\tint rem = a % b;\n\t\t\tdouble flo = (double)a / (double)b;\n\n\t\t\tString f = String.format(\"%.5f\",flo);\n\t\t\tSystem.out.println(div + \" \" + rem + \" \" + f);\n\t\t}\n\t}", "main", "{\n\t\ttry(Scanner scan = new Scanner(System.in)) {\n\t\t\tint a = scan.nextInt();\n\t\t\tint b = scan.nextInt();\n\n\t\t\tint div = a / b;\n\t\t\tint rem = a % b;\n\t\t\tdouble flo = (double)a / (double)b;\n\n\t\t\tString f = String.format(\"%.5f\",flo);\n\t\t\tSystem.out.println(div + \" \" + rem + \" \" + f);\n\t\t}\n\t}", "try(Scanner scan = new Scanner(System.in)) {\n\t\t\tint a = scan.nextInt();\n\t\t\tint b = scan.nextInt();\n\n\t\t\tint div = a / b;\n\t\t\tint rem = a % b;\n\t\t\tdouble flo = (double)a / (double)b;\n\n\t\t\tString f = String.format(\"%.5f\",flo);\n\t\t\tSystem.out.println(div + \" \" + rem + \" \" + f);\n\t\t}", "{\n\t\t\tint a = scan.nextInt();\n\t\t\tint b = scan.nextInt();\n\n\t\t\tint div = a / b;\n\t\t\tint rem = a % b;\n\t\t\tdouble flo = (double)a / (double)b;\n\n\t\t\tString f = String.format(\"%.5f\",flo);\n\t\t\tSystem.out.println(div + \" \" + rem + \" \" + f);\n\t\t}", "Scanner scan = new Scanner(System.in)", "Scanner scan = new Scanner(System.in)", "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 div = a / b;", "div", "a / b", "a", "b", "int rem = a % b;", "rem", "a % b", "a", "b", "double flo = (double)a / (double)b;", "flo", "(double)a / (double)b", "(double)a", "(double)b", "String f = String.format(\"%.5f\",flo);", "f", "String.format(\"%.5f\",flo)", "String.format", "String", "\"%.5f\"", "flo", "System.out.println(div + \" \" + rem + \" \" + f)", "System.out.println", "System.out", "System", "System.out", "div + \" \" + rem + \" \" + f", "\" \"", "rem", "div + \" \" + rem + \" \" + f", "div", "\" \"", "rem", "\" \"", "f", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry(Scanner scan = new Scanner(System.in)) {\n\t\t\tint a = scan.nextInt();\n\t\t\tint b = scan.nextInt();\n\n\t\t\tint div = a / b;\n\t\t\tint rem = a % b;\n\t\t\tdouble flo = (double)a / (double)b;\n\n\t\t\tString f = String.format(\"%.5f\",flo);\n\t\t\tSystem.out.println(div + \" \" + rem + \" \" + f);\n\t\t}\n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry(Scanner scan = new Scanner(System.in)) {\n\t\t\tint a = scan.nextInt();\n\t\t\tint b = scan.nextInt();\n\n\t\t\tint div = a / b;\n\t\t\tint rem = a % b;\n\t\t\tdouble flo = (double)a / (double)b;\n\n\t\t\tString f = String.format(\"%.5f\",flo);\n\t\t\tSystem.out.println(div + \" \" + rem + \" \" + f);\n\t\t}\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { try(Scanner scan = new Scanner(System.in)) { int a = scan.nextInt(); int b = scan.nextInt(); int div = a / b; int rem = a % b; double flo = (double)a / (double)b; String f = String.format("%.5f",flo); System.out.println(div + " " + rem + " " + f); } } }
[ 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, 13, 41, 13, 4, 18, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 13, 4, 18, 18, 13, 13, 13, 4, 18, 18, 13, 13, 4, 18, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 74, 5 ], [ 74, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 24, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 30, 33 ], [ 8, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 36, 38 ], [ 8, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 41, 43 ], [ 8, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 46, 48 ], [ 8, 49 ], [ 49, 50 ], [ 50, 51 ], [ 51, 52 ], [ 51, 53 ], [ 49, 54 ], [ 8, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 55, 60 ], [ 8, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 61, 66 ], [ 66, 67 ], [ 67, 68 ], [ 66, 69 ], [ 66, 70 ], [ 6, 71 ], [ 71, 72 ], [ 0, 73 ], [ 73, 74 ], [ 73, 75 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tString a1 = sc.next();\n\t\tString b1 = sc.next();\n\n\t\tint a = Integer.parseInt(a1);\n\t\tint b = Integer.parseInt(b1);\n\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tdouble f = a/(double)b;\n\n\t\tSystem.out.println(d);\n\t\tSystem.out.println(r);\n\n\t\tSystem.out.println(String.format(\"%f\", f));\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tString a1 = sc.next();\n\t\tString b1 = sc.next();\n\n\t\tint a = Integer.parseInt(a1);\n\t\tint b = Integer.parseInt(b1);\n\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tdouble f = a/(double)b;\n\n\t\tSystem.out.println(d);\n\t\tSystem.out.println(r);\n\n\t\tSystem.out.println(String.format(\"%f\", f));\n\t}\n}", "Main", "public static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tString a1 = sc.next();\n\t\tString b1 = sc.next();\n\n\t\tint a = Integer.parseInt(a1);\n\t\tint b = Integer.parseInt(b1);\n\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tdouble f = a/(double)b;\n\n\t\tSystem.out.println(d);\n\t\tSystem.out.println(r);\n\n\t\tSystem.out.println(String.format(\"%f\", f));\n\t}", "main", "{\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tString a1 = sc.next();\n\t\tString b1 = sc.next();\n\n\t\tint a = Integer.parseInt(a1);\n\t\tint b = Integer.parseInt(b1);\n\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tdouble f = a/(double)b;\n\n\t\tSystem.out.println(d);\n\t\tSystem.out.println(r);\n\n\t\tSystem.out.println(String.format(\"%f\", f));\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "String a1 = sc.next();", "a1", "sc.next()", "sc.next", "sc", "String b1 = sc.next();", "b1", "sc.next()", "sc.next", "sc", "int a = Integer.parseInt(a1);", "a", "Integer.parseInt(a1)", "Integer.parseInt", "Integer", "a1", "int b = Integer.parseInt(b1);", "b", "Integer.parseInt(b1)", "Integer.parseInt", "Integer", "b1", "int d = a/b;", "d", "a/b", "a", "b", "int r = a%b;", "r", "a%b", "a", "b", "double f = a/(double)b;", "f", "a/(double)b", "a", "(double)b", "System.out.println(d)", "System.out.println", "System.out", "System", "System.out", "d", "System.out.println(r)", "System.out.println", "System.out", "System", "System.out", "r", "System.out.println(String.format(\"%f\", f))", "System.out.println", "System.out", "System", "System.out", "String.format(\"%f\", f)", "String.format", "String", "\"%f\"", "f", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tString a1 = sc.next();\n\t\tString b1 = sc.next();\n\n\t\tint a = Integer.parseInt(a1);\n\t\tint b = Integer.parseInt(b1);\n\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tdouble f = a/(double)b;\n\n\t\tSystem.out.println(d);\n\t\tSystem.out.println(r);\n\n\t\tSystem.out.println(String.format(\"%f\", f));\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args){\n\n\t\tScanner sc = new Scanner(System.in);\n\t\tString a1 = sc.next();\n\t\tString b1 = sc.next();\n\n\t\tint a = Integer.parseInt(a1);\n\t\tint b = Integer.parseInt(b1);\n\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tdouble f = a/(double)b;\n\n\t\tSystem.out.println(d);\n\t\tSystem.out.println(r);\n\n\t\tSystem.out.println(String.format(\"%f\", f));\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); String a1 = sc.next(); String b1 = sc.next(); int a = Integer.parseInt(a1); int b = Integer.parseInt(b1); int d = a/b; int r = a%b; double f = a/(double)b; System.out.println(d); System.out.println(r); System.out.println(String.format("%f", f)); } }
[ 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, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 17, 13, 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 ], [ 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 ], [ 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 ], [ 48, 49 ], [ 49, 50 ], [ 49, 51 ], [ 47, 52 ], [ 55, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 54, 58 ], [ 53, 59 ], [ 55, 60 ], [ 60, 61 ], [ 61, 62 ], [ 60, 63 ], [ 60, 64 ], [ 6, 65 ], [ 65, 66 ], [ 0, 67 ], [ 67, 68 ], [ 67, 69 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scan = new Scanner(System.in); \n\t\tint a, b;\n\t\tint d, e;\n\t\tdouble f;\n\t\t\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\t\t\n\t\td = a / b;\n\t\te = a % b;\n\t\tf = (double)a / b;\n\t\t\n\tSystem.out.println(d + \" \" + e + \" \" + String.format(\"%.09f\", f));\n\t\t\n\t}\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scan = new Scanner(System.in); \n\t\tint a, b;\n\t\tint d, e;\n\t\tdouble f;\n\t\t\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\t\t\n\t\td = a / b;\n\t\te = a % b;\n\t\tf = (double)a / b;\n\t\t\n\tSystem.out.println(d + \" \" + e + \" \" + String.format(\"%.09f\", f));\n\t\t\n\t}\n\n}", "Main", "public static void main(String args[]){\n\t\tScanner scan = new Scanner(System.in); \n\t\tint a, b;\n\t\tint d, e;\n\t\tdouble f;\n\t\t\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\t\t\n\t\td = a / b;\n\t\te = a % b;\n\t\tf = (double)a / b;\n\t\t\n\tSystem.out.println(d + \" \" + e + \" \" + String.format(\"%.09f\", f));\n\t\t\n\t}", "main", "{\n\t\tScanner scan = new Scanner(System.in); \n\t\tint a, b;\n\t\tint d, e;\n\t\tdouble f;\n\t\t\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\t\t\n\t\td = a / b;\n\t\te = a % b;\n\t\tf = (double)a / b;\n\t\t\n\tSystem.out.println(d + \" \" + e + \" \" + String.format(\"%.09f\", f));\n\t\t\n\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int a", "a", "b;", "b", "int d", "d", "e;", "e", "double f;", "f", "a = scan.nextInt()", "a", "scan.nextInt()", "scan.nextInt", "scan", "b = scan.nextInt()", "b", "scan.nextInt()", "scan.nextInt", "scan", "d = a / b", "d", "a / b", "a", "b", "e = a % b", "e", "a % b", "a", "b", "f = (double)a / b", "f", "(double)a / b", "(double)a", "b", "System.out.println(d + \" \" + e + \" \" + String.format(\"%.09f\", f))", "System.out.println", "System.out", "System", "System.out", "d + \" \" + e + \" \" + String.format(\"%.09f\", f)", "\" \"", "e", "d + \" \" + e + \" \" + String.format(\"%.09f\", f)", "d", "\" \"", "e", "\" \"", "String.format(\"%.09f\", f)", "String.format", "String", "\"%.09f\"", "f", "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, b;\n\t\tint d, e;\n\t\tdouble f;\n\t\t\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\t\t\n\t\td = a / b;\n\t\te = a % b;\n\t\tf = (double)a / b;\n\t\t\n\tSystem.out.println(d + \" \" + e + \" \" + String.format(\"%.09f\", f));\n\t\t\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, b;\n\t\tint d, e;\n\t\tdouble f;\n\t\t\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\t\t\n\t\td = a / b;\n\t\te = a % b;\n\t\tf = (double)a / b;\n\t\t\n\tSystem.out.println(d + \" \" + e + \" \" + String.format(\"%.09f\", f));\n\t\t\n\t}\n\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String args[]){ Scanner scan = new Scanner(System.in); int a, b; int d, e; double f; a = scan.nextInt(); b = scan.nextInt(); d = a / b; e = a % b; f = (double)a / b; System.out.println(d + " " + e + " " + String.format("%.09f", f)); } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 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, 4, 18, 18, 13, 13, 17, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 49, 5 ], [ 49, 6 ], [ 6, 7 ], [ 6, 8 ], [ 49, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 11, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 11, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 24, 26 ], [ 11, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 29, 31 ], [ 11, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 34, 36 ], [ 11, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 37, 42 ], [ 37, 43 ], [ 37, 44 ], [ 37, 45 ], [ 9, 46 ], [ 46, 47 ], [ 0, 48 ], [ 48, 49 ], [ 48, 50 ] ]
[ "import java.util.*;\n\npublic class Main{\n\tprivate static final Scanner scan = new Scanner(System.in);\n\n\tpublic static void main(String[] args){\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double) a / (double) b;\n\t\tSystem.out.printf(\"%d %d %f\\n\", d, r, f);\n\t}\n}", "import java.util.*;", "util.*", "java", "public class Main{\n\tprivate static final Scanner scan = new Scanner(System.in);\n\n\tpublic static void main(String[] args){\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double) a / (double) b;\n\t\tSystem.out.printf(\"%d %d %f\\n\", d, r, f);\n\t}\n}", "Main", "private static final Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "public static void main(String[] args){\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double) a / (double) b;\n\t\tSystem.out.printf(\"%d %d %f\\n\", d, r, f);\n\t}", "main", "{\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double) a / (double) b;\n\t\tSystem.out.printf(\"%d %d %f\\n\", d, r, f);\n\t}", "int a = scan.nextInt();", "a", "scan.nextInt()", "scan.nextInt", "scan", "int b = scan.nextInt();", "b", "scan.nextInt()", "scan.nextInt", "scan", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = (double) a / (double) b;", "f", "(double) a / (double) b", "(double) a", "(double) b", "System.out.printf(\"%d %d %f\\n\", d, r, f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\\n\"", "d", "r", "f", "String[] args", "args", "public class Main{\n\tprivate static final Scanner scan = new Scanner(System.in);\n\n\tpublic static void main(String[] args){\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double) a / (double) b;\n\t\tSystem.out.printf(\"%d %d %f\\n\", d, r, f);\n\t}\n}", "public class Main{\n\tprivate static final Scanner scan = new Scanner(System.in);\n\n\tpublic static void main(String[] args){\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double) a / (double) b;\n\t\tSystem.out.printf(\"%d %d %f\\n\", d, r, f);\n\t}\n}", "Main" ]
import java.util.*; public class Main{ private static final Scanner scan = new Scanner(System.in); public static void main(String[] args){ int a = scan.nextInt(); int b = scan.nextInt(); int d = a / b; int r = a % b; double f = (double) a / (double) b; System.out.printf("%d %d %f\n", d, r, f); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 4, 18, 13, 17, 2, 13, 13, 2, 13, 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 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 28, 29 ], [ 29, 30 ], [ 29, 31 ], [ 27, 32 ], [ 32, 33 ], [ 33, 34 ], [ 32, 35 ], [ 32, 36 ], [ 36, 37 ], [ 36, 38 ], [ 32, 39 ], [ 39, 40 ], [ 39, 41 ], [ 32, 42 ], [ 8, 43 ], [ 43, 44 ], [ 44, 45 ], [ 6, 46 ], [ 46, 47 ], [ 0, 48 ], [ 48, 49 ], [ 48, 50 ] ]
[ "import java.util.Scanner;\n\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\t\n\t\tdouble ab = (double)a / b;\n\t\t\n\t\tSystem.out.println(String.format(\"%d %d %.6f\", a/b, a%b, ab));\n\t\tsc.close();\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\t\n\t\tdouble ab = (double)a / b;\n\t\t\n\t\tSystem.out.println(String.format(\"%d %d %.6f\", a/b, a%b, ab));\n\t\tsc.close();\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\t\n\t\tdouble ab = (double)a / b;\n\t\t\n\t\tSystem.out.println(String.format(\"%d %d %.6f\", a/b, a%b, ab));\n\t\tsc.close();\n\t}", "main", "{\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\t\n\t\tdouble ab = (double)a / b;\n\t\t\n\t\tSystem.out.println(String.format(\"%d %d %.6f\", a/b, a%b, ab));\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", "double ab = (double)a / b;", "ab", "(double)a / b", "(double)a", "b", "System.out.println(String.format(\"%d %d %.6f\", a/b, a%b, ab))", "System.out.println", "System.out", "System", "System.out", "String.format(\"%d %d %.6f\", a/b, a%b, ab)", "String.format", "String", "\"%d %d %.6f\"", "a/b", "a", "b", "a%b", "a", "b", "ab", "sc.close()", "sc.close", "sc", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\t\n\t\tdouble ab = (double)a / b;\n\t\t\n\t\tSystem.out.println(String.format(\"%d %d %.6f\", a/b, a%b, ab));\n\t\tsc.close();\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\t\n\t\tdouble ab = (double)a / b;\n\t\t\n\t\tSystem.out.println(String.format(\"%d %d %.6f\", a/b, a%b, ab));\n\t\tsc.close();\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(); double ab = (double)a / b; System.out.println(String.format("%d %d %.6f", a/b, a%b, ab)); sc.close(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 17, 2, 13, 13, 2, 13, 13, 2, 13, 13, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 43, 5 ], [ 43, 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 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 22, 28 ], [ 28, 29 ], [ 28, 30 ], [ 22, 31 ], [ 31, 32 ], [ 31, 33 ], [ 22, 34 ], [ 34, 35 ], [ 34, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 6, 40 ], [ 40, 41 ], [ 0, 42 ], [ 42, 43 ], [ 42, 44 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\t\t\n\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\n\t\tSystem.out.printf(\"%d %d %f\\n\", (a / b), (a % b), (double)a / b);\n\t\tscan.close();\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\t\t\n\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\n\t\tSystem.out.printf(\"%d %d %f\\n\", (a / b), (a % b), (double)a / b);\n\t\tscan.close();\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\t\t\n\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\n\t\tSystem.out.printf(\"%d %d %f\\n\", (a / b), (a % b), (double)a / b);\n\t\tscan.close();\n\t}", "main", "{\n\t\tScanner scan = new Scanner(System.in);\t\t\n\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\n\t\tSystem.out.printf(\"%d %d %f\\n\", (a / b), (a % b), (double)a / b);\n\t\tscan.close();\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", "System.out.printf(\"%d %d %f\\n\", (a / b), (a % b), (double)a / b)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\\n\"", "(a / b)", "a", "b", "(a % b)", "a", "b", "(double)a / b", "(double)a", "b", "scan.close()", "scan.close", "scan", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\t\t\n\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\n\t\tSystem.out.printf(\"%d %d %f\\n\", (a / b), (a % b), (double)a / b);\n\t\tscan.close();\n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\t\t\n\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\n\t\tSystem.out.printf(\"%d %d %f\\n\", (a / b), (a % b), (double)a / b);\n\t\tscan.close();\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int a = scan.nextInt(); int b = scan.nextInt(); System.out.printf("%d %d %f\n", (a / b), (a % b), (double)a / b); scan.close(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 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, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 13, 13, 17, 2, 13, 13, 17, 4, 18, 13, 17, 2, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 66, 5 ], [ 66, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 19, 22 ], [ 8, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 25, 28 ], [ 28, 29 ], [ 28, 30 ], [ 8, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 34, 35 ], [ 33, 36 ], [ 36, 37 ], [ 36, 38 ], [ 8, 39 ], [ 39, 40 ], [ 40, 41 ], [ 41, 42 ], [ 41, 43 ], [ 39, 44 ], [ 47, 45 ], [ 45, 46 ], [ 52, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 47, 51 ], [ 52, 52 ], [ 52, 53 ], [ 52, 54 ], [ 45, 55 ], [ 47, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 56, 60 ], [ 60, 61 ], [ 60, 62 ], [ 6, 63 ], [ 63, 64 ], [ 0, 65 ], [ 65, 66 ], [ 65, 67 ] ]
[ "import java.io.*;\npublic class Main{\n\tpublic static void main(String[] args)throws Exception{\n\t\tBufferedReader input=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str=input.readLine();\n\t\tString[] str2=str.split(\" \");\n\t\tint a=Integer.parseInt(str2[0]);\n\t\tint b=Integer.parseInt(str2[1]);\n\t\tSystem.out.println(a/b+\" \"+a%b+\" \"+(String.format(\"%.5f\",(double)a/(double)b)));\n\t}\n}", "import java.io.*;", "io.*", "java", "public class Main{\n\tpublic static void main(String[] args)throws Exception{\n\t\tBufferedReader input=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str=input.readLine();\n\t\tString[] str2=str.split(\" \");\n\t\tint a=Integer.parseInt(str2[0]);\n\t\tint b=Integer.parseInt(str2[1]);\n\t\tSystem.out.println(a/b+\" \"+a%b+\" \"+(String.format(\"%.5f\",(double)a/(double)b)));\n\t}\n}", "Main", "public static void main(String[] args)throws Exception{\n\t\tBufferedReader input=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str=input.readLine();\n\t\tString[] str2=str.split(\" \");\n\t\tint a=Integer.parseInt(str2[0]);\n\t\tint b=Integer.parseInt(str2[1]);\n\t\tSystem.out.println(a/b+\" \"+a%b+\" \"+(String.format(\"%.5f\",(double)a/(double)b)));\n\t}", "main", "{\n\t\tBufferedReader input=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str=input.readLine();\n\t\tString[] str2=str.split(\" \");\n\t\tint a=Integer.parseInt(str2[0]);\n\t\tint b=Integer.parseInt(str2[1]);\n\t\tSystem.out.println(a/b+\" \"+a%b+\" \"+(String.format(\"%.5f\",(double)a/(double)b)));\n\t}", "BufferedReader input=new BufferedReader(new InputStreamReader(System.in));", "input", "new BufferedReader(new InputStreamReader(System.in))", "String str=input.readLine();", "str", "input.readLine()", "input.readLine", "input", "String[] str2=str.split(\" \");", "str2", "str.split(\" \")", "str.split", "str", "\" \"", "int a=Integer.parseInt(str2[0]);", "a", "Integer.parseInt(str2[0])", "Integer.parseInt", "Integer", "str2[0]", "str2", "0", "int b=Integer.parseInt(str2[1]);", "b", "Integer.parseInt(str2[1])", "Integer.parseInt", "Integer", "str2[1]", "str2", "1", "System.out.println(a/b+\" \"+a%b+\" \"+(String.format(\"%.5f\",(double)a/(double)b)))", "System.out.println", "System.out", "System", "System.out", "a/b+\" \"+a%b+\" \"+(String.format(\"%.5f\",(double)a/(double)b))", "\" \"", "a%b", "a/b+\" \"+a%b+\" \"+(String.format(\"%.5f\",(double)a/(double)b))", "a/b", "a", "b", "\" \"", "a%b", "a", "b", "\" \"", "(String.format(\"%.5f\",(double)a/(double)b))", "String.format", "String", "\"%.5f\"", "(double)a/(double)b", "(double)a", "(double)b", "String[] args", "args", "public class Main{\n\tpublic static void main(String[] args)throws Exception{\n\t\tBufferedReader input=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str=input.readLine();\n\t\tString[] str2=str.split(\" \");\n\t\tint a=Integer.parseInt(str2[0]);\n\t\tint b=Integer.parseInt(str2[1]);\n\t\tSystem.out.println(a/b+\" \"+a%b+\" \"+(String.format(\"%.5f\",(double)a/(double)b)));\n\t}\n}", "public class Main{\n\tpublic static void main(String[] args)throws Exception{\n\t\tBufferedReader input=new BufferedReader(new InputStreamReader(System.in));\n\t\tString str=input.readLine();\n\t\tString[] str2=str.split(\" \");\n\t\tint a=Integer.parseInt(str2[0]);\n\t\tint b=Integer.parseInt(str2[1]);\n\t\tSystem.out.println(a/b+\" \"+a%b+\" \"+(String.format(\"%.5f\",(double)a/(double)b)));\n\t}\n}", "Main" ]
import java.io.*; public class Main{ public static void main(String[] args)throws Exception{ BufferedReader input=new BufferedReader(new InputStreamReader(System.in)); String str=input.readLine(); String[] str2=str.split(" "); int a=Integer.parseInt(str2[0]); int b=Integer.parseInt(str2[1]); System.out.println(a/b+" "+a%b+" "+(String.format("%.5f",(double)a/(double)b))); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 41, 13, 41, 13, 20, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 13, 17, 18, 13, 13, 41, 13, 20, 4, 18, 13, 17, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 13, 13, 17, 2, 13, 13, 17, 4, 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 ], [ 14, 17 ], [ 17, 18 ], [ 14, 19 ], [ 19, 20 ], [ 19, 21 ], [ 14, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 14, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 14, 32 ], [ 32, 33 ], [ 32, 34 ], [ 14, 35 ], [ 35, 36 ], [ 35, 37 ], [ 14, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 40, 44 ], [ 40, 45 ], [ 45, 46 ], [ 45, 47 ], [ 14, 48 ], [ 48, 49 ], [ 48, 50 ], [ 14, 51 ], [ 51, 52 ], [ 52, 53 ], [ 51, 54 ], [ 14, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 55, 60 ], [ 63, 61 ], [ 61, 62 ], [ 68, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 68, 68 ], [ 68, 69 ], [ 68, 70 ], [ 61, 71 ], [ 63, 72 ], [ 72, 73 ], [ 73, 74 ], [ 72, 75 ], [ 14, 76 ], [ 76, 77 ], [ 77, 78 ], [ 12, 79 ], [ 79, 80 ] ]
[ "import java.math.BigDecimal;\nimport java.text.DecimalFormat;\nimport java.util.Scanner;\n\nclass Main{\n\n public static void main(String[] args) {\n\n int a,b;\n\n Scanner scan = new Scanner(System.in);\n\n a = scan.nextInt();\n b = scan.nextInt();\n\n BigDecimal aa = new BigDecimal(a);\n BigDecimal bb = new BigDecimal(b);\n\n //BigDecimal div = new BigDecimal(\"0.00000000\");\n\n BigDecimal div = aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP);\n\n DecimalFormat format = new DecimalFormat(\"#.#\");\n //format.setMinimumFractionDigits(8);//?°?????????¨???8????????§??????\n format.setMaximumFractionDigits(8);//?????§8????????§??????\n\n System.out.println(a/b + \" \" + a%b + \" \"+ format.format(div) );\n scan.close();\n }\n}", "import java.math.BigDecimal;", "BigDecimal", "java.math", "import java.text.DecimalFormat;", "DecimalFormat", "java.text", "import java.util.Scanner;", "Scanner", "java.util", "class Main{\n\n public static void main(String[] args) {\n\n int a,b;\n\n Scanner scan = new Scanner(System.in);\n\n a = scan.nextInt();\n b = scan.nextInt();\n\n BigDecimal aa = new BigDecimal(a);\n BigDecimal bb = new BigDecimal(b);\n\n //BigDecimal div = new BigDecimal(\"0.00000000\");\n\n BigDecimal div = aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP);\n\n DecimalFormat format = new DecimalFormat(\"#.#\");\n //format.setMinimumFractionDigits(8);//?°?????????¨???8????????§??????\n format.setMaximumFractionDigits(8);//?????§8????????§??????\n\n System.out.println(a/b + \" \" + a%b + \" \"+ format.format(div) );\n scan.close();\n }\n}", "Main", "public static void main(String[] args) {\n\n int a,b;\n\n Scanner scan = new Scanner(System.in);\n\n a = scan.nextInt();\n b = scan.nextInt();\n\n BigDecimal aa = new BigDecimal(a);\n BigDecimal bb = new BigDecimal(b);\n\n //BigDecimal div = new BigDecimal(\"0.00000000\");\n\n BigDecimal div = aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP);\n\n DecimalFormat format = new DecimalFormat(\"#.#\");\n //format.setMinimumFractionDigits(8);//?°?????????¨???8????????§??????\n format.setMaximumFractionDigits(8);//?????§8????????§??????\n\n System.out.println(a/b + \" \" + a%b + \" \"+ format.format(div) );\n scan.close();\n }", "main", "{\n\n int a,b;\n\n Scanner scan = new Scanner(System.in);\n\n a = scan.nextInt();\n b = scan.nextInt();\n\n BigDecimal aa = new BigDecimal(a);\n BigDecimal bb = new BigDecimal(b);\n\n //BigDecimal div = new BigDecimal(\"0.00000000\");\n\n BigDecimal div = aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP);\n\n DecimalFormat format = new DecimalFormat(\"#.#\");\n //format.setMinimumFractionDigits(8);//?°?????????¨???8????????§??????\n format.setMaximumFractionDigits(8);//?????§8????????§??????\n\n System.out.println(a/b + \" \" + a%b + \" \"+ format.format(div) );\n scan.close();\n }", "int a", "a", "b;", "b", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "a = scan.nextInt()", "a", "scan.nextInt()", "scan.nextInt", "scan", "b = scan.nextInt()", "b", "scan.nextInt()", "scan.nextInt", "scan", "BigDecimal aa = new BigDecimal(a);", "aa", "new BigDecimal(a)", "BigDecimal bb = new BigDecimal(b);", "bb", "new BigDecimal(b)", "BigDecimal div = aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP);", "div", "aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP)", "aa.divide", "aa", "bb", "8", "BigDecimal.ROUND_HALF_UP", "BigDecimal", "BigDecimal.ROUND_HALF_UP", "DecimalFormat format = new DecimalFormat(\"#.#\");", "format", "new DecimalFormat(\"#.#\")", "format.setMaximumFractionDigits(8)", "format.setMaximumFractionDigits", "format", "8", "System.out.println(a/b + \" \" + a%b + \" \"+ format.format(div) )", "System.out.println", "System.out", "System", "System.out", "a/b + \" \" + a%b + \" \"+ format.format(div)", "\" \"", "a%b", "a/b + \" \" + a%b + \" \"+ format.format(div)", "a/b", "a", "b", "\" \"", "a%b", "a", "b", "\" \"", "format.format(div)", "format.format", "format", "div", "scan.close()", "scan.close", "scan", "String[] args", "args" ]
import java.math.BigDecimal; import java.text.DecimalFormat; import java.util.Scanner; class Main{ public static void main(String[] args) { int a,b; Scanner scan = new Scanner(System.in); a = scan.nextInt(); b = scan.nextInt(); BigDecimal aa = new BigDecimal(a); BigDecimal bb = new BigDecimal(b); //BigDecimal div = new BigDecimal("0.00000000"); BigDecimal div = aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP); DecimalFormat format = new DecimalFormat("#.#"); //format.setMinimumFractionDigits(8);//?°?????????¨???8????????§?????? format.setMaximumFractionDigits(8);//?????§8????????§?????? System.out.println(a/b + " " + a%b + " "+ format.format(div) ); scan.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, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 64, 5 ], [ 64, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 14, 17 ], [ 17, 18 ], [ 18, 19 ], [ 8, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 25, 26 ], [ 26, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 30, 32 ], [ 8, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 35, 37 ], [ 8, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 40, 42 ], [ 8, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 43, 48 ], [ 51, 49 ], [ 49, 50 ], [ 50, 51 ], [ 51, 52 ], [ 51, 53 ], [ 50, 54 ], [ 49, 55 ], [ 51, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 56, 60 ], [ 6, 61 ], [ 61, 62 ], [ 0, 63 ], [ 63, 64 ], [ 63, 65 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int a = Integer.parseInt(scanner.next());\n int b = Integer.parseInt(scanner.next());\n\n int d = a / b;\n int r = a % b;\n double f = (double) a / (double) b;\n\n System.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f));\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int a = Integer.parseInt(scanner.next());\n int b = Integer.parseInt(scanner.next());\n\n int d = a / b;\n int r = a % b;\n double f = (double) a / (double) b;\n\n System.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f));\n }\n}", "Main", "public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int a = Integer.parseInt(scanner.next());\n int b = Integer.parseInt(scanner.next());\n\n int d = a / b;\n int r = a % b;\n double f = (double) a / (double) b;\n\n System.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f));\n }", "main", "{\n Scanner scanner = new Scanner(System.in);\n int a = Integer.parseInt(scanner.next());\n int b = Integer.parseInt(scanner.next());\n\n int d = a / b;\n int r = a % b;\n double f = (double) a / (double) b;\n\n System.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f));\n }", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "int a = Integer.parseInt(scanner.next());", "a", "Integer.parseInt(scanner.next())", "Integer.parseInt", "Integer", "scanner.next()", "scanner.next", "scanner", "int b = Integer.parseInt(scanner.next());", "b", "Integer.parseInt(scanner.next())", "Integer.parseInt", "Integer", "scanner.next()", "scanner.next", "scanner", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = (double) a / (double) b;", "f", "(double) a / (double) b", "(double) a", "(double) b", "System.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f))", "System.out.println", "System.out", "System", "System.out", "d + \" \" + r + \" \" + String.format(\"%.5f\", f)", "\" \"", "r", "d + \" \" + r + \" \" + String.format(\"%.5f\", f)", "d", "\" \"", "r", "\" \"", "String.format(\"%.5f\", f)", "String.format", "String", "\"%.5f\"", "f", "String[] args", "args", "public class Main {\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int a = Integer.parseInt(scanner.next());\n int b = Integer.parseInt(scanner.next());\n\n int d = a / b;\n int r = a % b;\n double f = (double) a / (double) b;\n\n System.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f));\n }\n}", "public class Main {\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int a = Integer.parseInt(scanner.next());\n int b = Integer.parseInt(scanner.next());\n\n int d = a / b;\n int r = a % b;\n double f = (double) a / (double) b;\n\n System.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f));\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = Integer.parseInt(scanner.next()); int b = Integer.parseInt(scanner.next()); int d = a / b; int r = a % b; double f = (double) a / (double) b; System.out.println(d + " " + r + " " + String.format("%.5f", f)); } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 41, 13, 12, 13, 30, 41, 13, 20, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 18, 13, 13, 17, 2, 13, 13, 2, 13, 13, 2, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 44, 5 ], [ 44, 6 ], [ 6, 7 ], [ 44, 8 ], [ 8, 9 ], [ 44, 10 ], [ 10, 11 ], [ 10, 12 ], [ 12, 13 ], [ 13, 14 ], [ 13, 15 ], [ 12, 16 ], [ 16, 17 ], [ 16, 18 ], [ 18, 19 ], [ 19, 20 ], [ 12, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 12, 26 ], [ 26, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 26, 31 ], [ 26, 32 ], [ 32, 33 ], [ 32, 34 ], [ 26, 35 ], [ 35, 36 ], [ 35, 37 ], [ 26, 38 ], [ 38, 39 ], [ 38, 40 ], [ 10, 41 ], [ 41, 42 ], [ 0, 43 ], [ 43, 44 ], [ 43, 45 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n private static int a, b;\n public static void main(String[] args) {\n Scanner stdIn = new Scanner(System.in);\n a = stdIn.nextInt();\n b = stdIn.nextInt();\n\n System.out.printf(\"%d %d %.5f\\n\", (a/b), (a%b), ((double)a/b));\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n private static int a, b;\n public static void main(String[] args) {\n Scanner stdIn = new Scanner(System.in);\n a = stdIn.nextInt();\n b = stdIn.nextInt();\n\n System.out.printf(\"%d %d %.5f\\n\", (a/b), (a%b), ((double)a/b));\n }\n}", "Main", "private static int a", "a", "b;", "b", "public static void main(String[] args) {\n Scanner stdIn = new Scanner(System.in);\n a = stdIn.nextInt();\n b = stdIn.nextInt();\n\n System.out.printf(\"%d %d %.5f\\n\", (a/b), (a%b), ((double)a/b));\n }", "main", "{\n Scanner stdIn = new Scanner(System.in);\n a = stdIn.nextInt();\n b = stdIn.nextInt();\n\n System.out.printf(\"%d %d %.5f\\n\", (a/b), (a%b), ((double)a/b));\n }", "Scanner stdIn = new Scanner(System.in);", "stdIn", "new Scanner(System.in)", "a = stdIn.nextInt()", "a", "stdIn.nextInt()", "stdIn.nextInt", "stdIn", "b = stdIn.nextInt()", "b", "stdIn.nextInt()", "stdIn.nextInt", "stdIn", "System.out.printf(\"%d %d %.5f\\n\", (a/b), (a%b), ((double)a/b))", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %.5f\\n\"", "(a/b)", "a", "b", "(a%b)", "a", "b", "((double)a/b)", "(double)a", "b", "String[] args", "args", "public class Main {\n private static int a, b;\n public static void main(String[] args) {\n Scanner stdIn = new Scanner(System.in);\n a = stdIn.nextInt();\n b = stdIn.nextInt();\n\n System.out.printf(\"%d %d %.5f\\n\", (a/b), (a%b), ((double)a/b));\n }\n}", "public class Main {\n private static int a, b;\n public static void main(String[] args) {\n Scanner stdIn = new Scanner(System.in);\n a = stdIn.nextInt();\n b = stdIn.nextInt();\n\n System.out.printf(\"%d %d %.5f\\n\", (a/b), (a%b), ((double)a/b));\n }\n}", "Main" ]
import java.util.Scanner; public class Main { private static int a, b; public static void main(String[] args) { Scanner stdIn = new Scanner(System.in); a = stdIn.nextInt(); b = stdIn.nextInt(); System.out.printf("%d %d %.5f\n", (a/b), (a%b), ((double)a/b)); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 41, 13, 41, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 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 ], [ 8, 24 ], [ 24, 25 ], [ 8, 26 ], [ 26, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 30, 32 ], [ 8, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 35, 37 ], [ 8, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 40, 42 ], [ 8, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 43, 48 ], [ 43, 49 ], [ 43, 50 ], [ 43, 51 ], [ 6, 52 ], [ 52, 53 ] ]
[ "import java.util.*;\n \nclass Main{\n public static void main(String[] args){\n Scanner stdId = new Scanner(System.in);\n long a = stdId.nextLong(); \n long b = stdId.nextLong(); \n long d,r;\n double f;\n d = a/b;\n r = a%b;\n f = (double)a/b;\n System.out.printf(\"%d %d %f\\n\",d,r,f);\n }\n}", "import java.util.*;", "util.*", "java", "class Main{\n public static void main(String[] args){\n Scanner stdId = new Scanner(System.in);\n long a = stdId.nextLong(); \n long b = stdId.nextLong(); \n long d,r;\n double f;\n d = a/b;\n r = a%b;\n f = (double)a/b;\n System.out.printf(\"%d %d %f\\n\",d,r,f);\n }\n}", "Main", "public static void main(String[] args){\n Scanner stdId = new Scanner(System.in);\n long a = stdId.nextLong(); \n long b = stdId.nextLong(); \n long d,r;\n double f;\n d = a/b;\n r = a%b;\n f = (double)a/b;\n System.out.printf(\"%d %d %f\\n\",d,r,f);\n }", "main", "{\n Scanner stdId = new Scanner(System.in);\n long a = stdId.nextLong(); \n long b = stdId.nextLong(); \n long d,r;\n double f;\n d = a/b;\n r = a%b;\n f = (double)a/b;\n System.out.printf(\"%d %d %f\\n\",d,r,f);\n }", "Scanner stdId = new Scanner(System.in);", "stdId", "new Scanner(System.in)", "long a = stdId.nextLong();", "a", "stdId.nextLong()", "stdId.nextLong", "stdId", "long b = stdId.nextLong();", "b", "stdId.nextLong()", "stdId.nextLong", "stdId", "long d", "d", "r;", "r", "double f;", "f", "d = a/b", "d", "a/b", "a", "b", "r = a%b", "r", "a%b", "a", "b", "f = (double)a/b", "f", "(double)a/b", "(double)a", "b", "System.out.printf(\"%d %d %f\\n\",d,r,f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\\n\"", "d", "r", "f", "String[] args", "args" ]
import java.util.*; class Main{ public static void main(String[] args){ Scanner stdId = new Scanner(System.in); long a = stdId.nextLong(); long b = stdId.nextLong(); long d,r; double f; d = a/b; r = a%b; f = (double)a/b; System.out.printf("%d %d %f\n",d,r,f); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 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, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 58, 5 ], [ 58, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 29, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 34, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 37, 42 ], [ 45, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 44, 48 ], [ 43, 49 ], [ 45, 50 ], [ 50, 51 ], [ 51, 52 ], [ 50, 53 ], [ 50, 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\n Scanner scanner = new Scanner(System.in);\n Integer a = scanner.nextInt();\n Integer b = scanner.nextInt();\n\n Integer x = a / b;\n Integer y = a % b;\n double z = (double) a / (double) b;\n System.out.println(x + \" \" + y + \" \" + String.format(\"%.5f\", z));\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args) {\n\n Scanner scanner = new Scanner(System.in);\n Integer a = scanner.nextInt();\n Integer b = scanner.nextInt();\n\n Integer x = a / b;\n Integer y = a % b;\n double z = (double) a / (double) b;\n System.out.println(x + \" \" + y + \" \" + String.format(\"%.5f\", z));\n }\n}", "Main", "public static void main(String[] args) {\n\n Scanner scanner = new Scanner(System.in);\n Integer a = scanner.nextInt();\n Integer b = scanner.nextInt();\n\n Integer x = a / b;\n Integer y = a % b;\n double z = (double) a / (double) b;\n System.out.println(x + \" \" + y + \" \" + String.format(\"%.5f\", z));\n }", "main", "{\n\n Scanner scanner = new Scanner(System.in);\n Integer a = scanner.nextInt();\n Integer b = scanner.nextInt();\n\n Integer x = a / b;\n Integer y = a % b;\n double z = (double) a / (double) b;\n System.out.println(x + \" \" + y + \" \" + String.format(\"%.5f\", z));\n }", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "Integer a = scanner.nextInt();", "a", "scanner.nextInt()", "scanner.nextInt", "scanner", "Integer b = scanner.nextInt();", "b", "scanner.nextInt()", "scanner.nextInt", "scanner", "Integer x = a / b;", "x", "a / b", "a", "b", "Integer y = a % b;", "y", "a % b", "a", "b", "double z = (double) a / (double) b;", "z", "(double) a / (double) b", "(double) a", "(double) b", "System.out.println(x + \" \" + y + \" \" + String.format(\"%.5f\", z))", "System.out.println", "System.out", "System", "System.out", "x + \" \" + y + \" \" + String.format(\"%.5f\", z)", "\" \"", "y", "x + \" \" + y + \" \" + String.format(\"%.5f\", z)", "x", "\" \"", "y", "\" \"", "String.format(\"%.5f\", z)", "String.format", "String", "\"%.5f\"", "z", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n\n Scanner scanner = new Scanner(System.in);\n Integer a = scanner.nextInt();\n Integer b = scanner.nextInt();\n\n Integer x = a / b;\n Integer y = a % b;\n double z = (double) a / (double) b;\n System.out.println(x + \" \" + y + \" \" + String.format(\"%.5f\", z));\n }\n}", "public class Main {\n public static void main(String[] args) {\n\n Scanner scanner = new Scanner(System.in);\n Integer a = scanner.nextInt();\n Integer b = scanner.nextInt();\n\n Integer x = a / b;\n Integer y = a % b;\n double z = (double) a / (double) b;\n System.out.println(x + \" \" + y + \" \" + String.format(\"%.5f\", z));\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); Integer a = scanner.nextInt(); Integer b = scanner.nextInt(); Integer x = a / b; Integer y = a % b; double z = (double) a / (double) b; System.out.println(x + " " + y + " " + String.format("%.5f", z)); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 17, 41, 13, 17, 41, 13, 17, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 17, 13, 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 ], [ 8, 25 ], [ 25, 26 ], [ 25, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 8, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 33, 35 ], [ 8, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 38, 40 ], [ 8, 41 ], [ 41, 42 ], [ 41, 43 ], [ 43, 44 ], [ 43, 45 ], [ 8, 46 ], [ 46, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 46, 51 ], [ 54, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 53, 57 ], [ 52, 58 ], [ 54, 59 ], [ 59, 60 ], [ 60, 61 ], [ 59, 62 ], [ 59, 63 ], [ 6, 64 ], [ 64, 65 ], [ 0, 66 ], [ 66, 67 ], [ 66, 68 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String [] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\t\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\t\n\t\tint d=0, r=0;\n\t\tdouble f=0.00000; \n\t\t\n\t\td = a/b;\n\t\tr = a%b;\n\t\tf = (double)a/b;\n\t\t\n\t\tSystem.out.println(d+\" \"+r+\" \"+String.format(\"%5f\", f));\t\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String [] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\t\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\t\n\t\tint d=0, r=0;\n\t\tdouble f=0.00000; \n\t\t\n\t\td = a/b;\n\t\tr = a%b;\n\t\tf = (double)a/b;\n\t\t\n\t\tSystem.out.println(d+\" \"+r+\" \"+String.format(\"%5f\", f));\t\n\t}\n}", "Main", "public static void main(String [] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\t\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\t\n\t\tint d=0, r=0;\n\t\tdouble f=0.00000; \n\t\t\n\t\td = a/b;\n\t\tr = a%b;\n\t\tf = (double)a/b;\n\t\t\n\t\tSystem.out.println(d+\" \"+r+\" \"+String.format(\"%5f\", f));\t\n\t}", "main", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\t\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\t\n\t\tint d=0, r=0;\n\t\tdouble f=0.00000; \n\t\t\n\t\td = a/b;\n\t\tr = a%b;\n\t\tf = (double)a/b;\n\t\t\n\t\tSystem.out.println(d+\" \"+r+\" \"+String.format(\"%5f\", f));\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 d=0", "d", "0", "r=0;", "r", "0", "double f=0.00000;", "f", "0.00000", "d = a/b", "d", "a/b", "a", "b", "r = a%b", "r", "a%b", "a", "b", "f = (double)a/b", "f", "(double)a/b", "(double)a", "b", "System.out.println(d+\" \"+r+\" \"+String.format(\"%5f\", f))", "System.out.println", "System.out", "System", "System.out", "d+\" \"+r+\" \"+String.format(\"%5f\", f)", "\" \"", "r", "d+\" \"+r+\" \"+String.format(\"%5f\", f)", "d", "\" \"", "r", "\" \"", "String.format(\"%5f\", f)", "String.format", "String", "\"%5f\"", "f", "String [] args", "args", "public class Main {\n\tpublic static void main(String [] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\t\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\t\n\t\tint d=0, r=0;\n\t\tdouble f=0.00000; \n\t\t\n\t\td = a/b;\n\t\tr = a%b;\n\t\tf = (double)a/b;\n\t\t\n\t\tSystem.out.println(d+\" \"+r+\" \"+String.format(\"%5f\", f));\t\n\t}\n}", "public class Main {\n\tpublic static void main(String [] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\t\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\t\n\t\tint d=0, r=0;\n\t\tdouble f=0.00000; \n\t\t\n\t\td = a/b;\n\t\tr = a%b;\n\t\tf = (double)a/b;\n\t\t\n\t\tSystem.out.println(d+\" \"+r+\" \"+String.format(\"%5f\", f));\t\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String [] args){ Scanner scan = new Scanner(System.in); int a = scan.nextInt(); int b = scan.nextInt(); int d=0, r=0; double f=0.00000; d = a/b; r = a%b; f = (double)a/b; System.out.println(d+" "+r+" "+String.format("%5f", f)); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 2, 17, 13, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 51, 5 ], [ 51, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 29, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 34, 38 ], [ 8, 39 ], [ 39, 40 ], [ 40, 41 ], [ 41, 42 ], [ 41, 43 ], [ 39, 44 ], [ 39, 45 ], [ 39, 46 ], [ 39, 47 ], [ 6, 48 ], [ 48, 49 ], [ 0, 50 ], [ 50, 51 ], [ 50, 52 ] ]
[ "import java.util.Scanner;\n\npublic class Main{\n public static void main(String[] args){\n Scanner in = new Scanner(System.in);\n int a = in.nextInt();\n int b = in.nextInt();\n int d = a / b;\n int r = a % b;\n double f = 1.0 * a / b;\n \n System.out.printf(\"%d %d %.5f\",d,r,(double)f);\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main{\n public static void main(String[] args){\n Scanner in = new Scanner(System.in);\n int a = in.nextInt();\n int b = in.nextInt();\n int d = a / b;\n int r = a % b;\n double f = 1.0 * a / b;\n \n System.out.printf(\"%d %d %.5f\",d,r,(double)f);\n }\n}", "Main", "public static void main(String[] args){\n Scanner in = new Scanner(System.in);\n int a = in.nextInt();\n int b = in.nextInt();\n int d = a / b;\n int r = a % b;\n double f = 1.0 * a / b;\n \n System.out.printf(\"%d %d %.5f\",d,r,(double)f);\n }", "main", "{\n Scanner in = new Scanner(System.in);\n int a = in.nextInt();\n int b = in.nextInt();\n int d = a / b;\n int r = a % b;\n double f = 1.0 * a / b;\n \n System.out.printf(\"%d %d %.5f\",d,r,(double)f);\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 d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = 1.0 * a / b;", "f", "1.0 * a / b", "1.0 * a", "1.0", "a", "b", "System.out.printf(\"%d %d %.5f\",d,r,(double)f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %.5f\"", "d", "r", "(double)f", "String[] args", "args", "public class Main{\n public static void main(String[] args){\n Scanner in = new Scanner(System.in);\n int a = in.nextInt();\n int b = in.nextInt();\n int d = a / b;\n int r = a % b;\n double f = 1.0 * a / b;\n \n System.out.printf(\"%d %d %.5f\",d,r,(double)f);\n }\n}", "public class Main{\n public static void main(String[] args){\n Scanner in = new Scanner(System.in);\n int a = in.nextInt();\n int b = in.nextInt();\n int d = a / b;\n int r = a % b;\n double f = 1.0 * a / b;\n \n System.out.printf(\"%d %d %.5f\",d,r,(double)f);\n }\n}", "Main" ]
import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner in = new Scanner(System.in); int a = in.nextInt(); int b = in.nextInt(); int d = a / b; int r = a % b; double f = 1.0 * a / b; System.out.printf("%d %d %.5f",d,r,(double)f); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 14, 2, 2, 17, 13, 2, 13, 4, 18, 13, 17, 17, 30, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 85, 11 ], [ 85, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 14, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 25, 28 ], [ 14, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 31, 34 ], [ 34, 35 ], [ 34, 36 ], [ 14, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 39, 42 ], [ 42, 43 ], [ 42, 44 ], [ 14, 45 ], [ 45, 46 ], [ 46, 47 ], [ 47, 48 ], [ 47, 49 ], [ 46, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 53, 54 ], [ 52, 55 ], [ 52, 56 ], [ 45, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 60, 61 ], [ 60, 62 ], [ 57, 63 ], [ 63, 64 ], [ 63, 65 ], [ 65, 66 ], [ 65, 67 ], [ 57, 68 ], [ 68, 69 ], [ 68, 70 ], [ 70, 71 ], [ 70, 72 ], [ 57, 73 ], [ 73, 74 ], [ 74, 75 ], [ 75, 76 ], [ 75, 77 ], [ 73, 78 ], [ 73, 79 ], [ 73, 80 ], [ 73, 81 ], [ 12, 82 ], [ 82, 83 ], [ 0, 84 ], [ 84, 85 ], [ 84, 86 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] s = str.split(\" \");\n\n\t\tint a = Integer.parseInt(s[0]);\n\t\tint b = Integer.parseInt(s[1]);\n\n\t\tif((0 < a) && (b < Math.pow(10,9))){ //10???9???\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = ((double)a / b);\n\n\n\t\t\tSystem.out.printf(\"%d %d %05f\",d ,r ,f);\n\t\t}\n\t}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] s = str.split(\" \");\n\n\t\tint a = Integer.parseInt(s[0]);\n\t\tint b = Integer.parseInt(s[1]);\n\n\t\tif((0 < a) && (b < Math.pow(10,9))){ //10???9???\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = ((double)a / b);\n\n\n\t\t\tSystem.out.printf(\"%d %d %05f\",d ,r ,f);\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] s = str.split(\" \");\n\n\t\tint a = Integer.parseInt(s[0]);\n\t\tint b = Integer.parseInt(s[1]);\n\n\t\tif((0 < a) && (b < Math.pow(10,9))){ //10???9???\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = ((double)a / b);\n\n\n\t\t\tSystem.out.printf(\"%d %d %05f\",d ,r ,f);\n\t\t}\n\t}", "main", "{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] s = str.split(\" \");\n\n\t\tint a = Integer.parseInt(s[0]);\n\t\tint b = Integer.parseInt(s[1]);\n\n\t\tif((0 < a) && (b < Math.pow(10,9))){ //10???9???\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = ((double)a / b);\n\n\n\t\t\tSystem.out.printf(\"%d %d %05f\",d ,r ,f);\n\t\t}\n\t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String str = br.readLine();", "str", "br.readLine()", "br.readLine", "br", "String[] s = str.split(\" \");", "s", "str.split(\" \")", "str.split", "str", "\" \"", "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", "if((0 < a) && (b < Math.pow(10,9))){ //10???9???\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = ((double)a / b);\n\n\n\t\t\tSystem.out.printf(\"%d %d %05f\",d ,r ,f);\n\t\t}", "(0 < a) && (b < Math.pow(10,9))", "(0 < a)", "0", "a", "(b < Math.pow(10,9))", "b", "Math.pow(10,9)", "Math.pow", "Math", "10", "9", "{ //10???9???\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = ((double)a / b);\n\n\n\t\t\tSystem.out.printf(\"%d %d %05f\",d ,r ,f);\n\t\t}", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = ((double)a / b);", "f", "((double)a / b)", "(double)a", "b", "System.out.printf(\"%d %d %05f\",d ,r ,f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %05f\"", "d", "r", "f", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] s = str.split(\" \");\n\n\t\tint a = Integer.parseInt(s[0]);\n\t\tint b = Integer.parseInt(s[1]);\n\n\t\tif((0 < a) && (b < Math.pow(10,9))){ //10???9???\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = ((double)a / b);\n\n\n\t\t\tSystem.out.printf(\"%d %d %05f\",d ,r ,f);\n\t\t}\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args)throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] s = str.split(\" \");\n\n\t\tint a = Integer.parseInt(s[0]);\n\t\tint b = Integer.parseInt(s[1]);\n\n\t\tif((0 < a) && (b < Math.pow(10,9))){ //10???9???\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = ((double)a / b);\n\n\n\t\t\tSystem.out.printf(\"%d %d %05f\",d ,r ,f);\n\t\t}\n\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args)throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String str = br.readLine(); String[] s = str.split(" "); int a = Integer.parseInt(s[0]); int b = Integer.parseInt(s[1]); if((0 < a) && (b < Math.pow(10,9))){ //10???9??? int d = a / b; int r = a % b; double f = ((double)a / b); System.out.printf("%d %d %05f",d ,r ,f); } } }
[ 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 13, 4, 18, 18, 13, 13, 4, 18, 4, 18, 4, 18, 4, 18, 4, 18, 20, 13, 17, 13, 17, 4, 18, 4, 18, 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 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 11, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 27, 29 ], [ 11, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 32, 34 ], [ 11, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 37, 39 ], [ 11, 40 ], [ 40, 41 ], [ 41, 42 ], [ 11, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 43, 48 ], [ 48, 49 ], [ 49, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 54, 60 ], [ 52, 61 ], [ 50, 62 ], [ 48, 63 ], [ 63, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 65, 68 ], [ 9, 69 ], [ 69, 70 ] ]
[ "import java.math.BigDecimal;\nimport java.util.Scanner;\n\nclass Main{\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 long d = a/b;\n int r = a%b;\n double f = (double)a/b;\n sc.close();\n\n System.out.println(new StringBuilder()\n .append(d).append(\" \")\n .append(r).append(\" \")\n .append(BigDecimal.valueOf(f).toPlainString()));\n }\n}", "import java.math.BigDecimal;", "BigDecimal", "java.math", "import java.util.Scanner;", "Scanner", "java.util", "class Main{\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 long d = a/b;\n int r = a%b;\n double f = (double)a/b;\n sc.close();\n\n System.out.println(new StringBuilder()\n .append(d).append(\" \")\n .append(r).append(\" \")\n .append(BigDecimal.valueOf(f).toPlainString()));\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 long d = a/b;\n int r = a%b;\n double f = (double)a/b;\n sc.close();\n\n System.out.println(new StringBuilder()\n .append(d).append(\" \")\n .append(r).append(\" \")\n .append(BigDecimal.valueOf(f).toPlainString()));\n }", "main", "{\n\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n long d = a/b;\n int r = a%b;\n double f = (double)a/b;\n sc.close();\n\n System.out.println(new StringBuilder()\n .append(d).append(\" \")\n .append(r).append(\" \")\n .append(BigDecimal.valueOf(f).toPlainString()));\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", "long d = a/b;", "d", "a/b", "a", "b", "int r = a%b;", "r", "a%b", "a", "b", "double f = (double)a/b;", "f", "(double)a/b", "(double)a", "b", "sc.close()", "sc.close", "sc", "System.out.println(new StringBuilder()\n .append(d).append(\" \")\n .append(r).append(\" \")\n .append(BigDecimal.valueOf(f).toPlainString()))", "System.out.println", "System.out", "System", "System.out", "new StringBuilder()\n .append(d).append(\" \")\n .append(r).append(\" \")\n .append(BigDecimal.valueOf(f).toPlainString())", "new StringBuilder()\n .append(d).append(\" \")\n .append(r).append(\" \")\n .append", "new StringBuilder()\n .append(d).append(\" \")\n .append(r).append(\" \")", "new StringBuilder()\n .append(d).append(\" \")\n .append(r).append", "new StringBuilder()\n .append(d).append(\" \")\n .append(r)", "new StringBuilder()\n .append(d).append(\" \")\n .append", "new StringBuilder()\n .append(d).append(\" \")", "new StringBuilder()\n .append(d).append", "new StringBuilder()\n .append(d)", "new StringBuilder()\n .append", "new StringBuilder()", "d", "\" \"", "r", "\" \"", "BigDecimal.valueOf(f).toPlainString()", "BigDecimal.valueOf(f).toPlainString", "BigDecimal.valueOf(f)", "BigDecimal.valueOf", "BigDecimal", "f", "String args[]", "args" ]
import java.math.BigDecimal; 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(); long d = a/b; int r = a%b; double f = (double)a/b; sc.close(); System.out.println(new StringBuilder() .append(d).append(" ") .append(r).append(" ") .append(BigDecimal.valueOf(f).toPlainString())); } }
[ 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, 4, 18, 18, 13, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 13, 13, 41, 13, 13, 4, 18, 18, 13, 13, 4, 18, 13, 17, 2, 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 ], [ 76, 11 ], [ 76, 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 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 42, 47 ], [ 47, 48 ], [ 47, 49 ], [ 14, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 50, 55 ], [ 55, 56 ], [ 55, 57 ], [ 14, 58 ], [ 58, 59 ], [ 58, 60 ], [ 14, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 61, 66 ], [ 66, 67 ], [ 67, 68 ], [ 66, 69 ], [ 66, 70 ], [ 70, 71 ], [ 70, 72 ], [ 12, 73 ], [ 73, 74 ], [ 0, 75 ], [ 75, 76 ], [ 75, 77 ] ]
[ "import java.io.IOException;\nimport java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\npublic class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line[] = br.readLine().split(\" \");\n int a = Integer.parseInt(line[0]);\n int b = Integer.parseInt(line[1]);\n System.out.println(a/b);\n System.out.println(a%b);\n Double da = (double) a;\n //Double db = (double) b;\n System.out.println(String.format(\"%.8f\",da/b));\n }\n}", "import java.io.IOException;", "IOException", "java.io", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line[] = br.readLine().split(\" \");\n int a = Integer.parseInt(line[0]);\n int b = Integer.parseInt(line[1]);\n System.out.println(a/b);\n System.out.println(a%b);\n Double da = (double) a;\n //Double db = (double) b;\n System.out.println(String.format(\"%.8f\",da/b));\n }\n}", "Main", "public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line[] = br.readLine().split(\" \");\n int a = Integer.parseInt(line[0]);\n int b = Integer.parseInt(line[1]);\n System.out.println(a/b);\n System.out.println(a%b);\n Double da = (double) a;\n //Double db = (double) b;\n System.out.println(String.format(\"%.8f\",da/b));\n }", "main", "{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line[] = br.readLine().split(\" \");\n int a = Integer.parseInt(line[0]);\n int b = Integer.parseInt(line[1]);\n System.out.println(a/b);\n System.out.println(a%b);\n Double da = (double) a;\n //Double db = (double) b;\n System.out.println(String.format(\"%.8f\",da/b));\n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String line[] = br.readLine().split(\" \");", "line", "br.readLine().split(\" \")", "br.readLine().split", "br.readLine()", "br.readLine", "br", "\" \"", "int a = Integer.parseInt(line[0]);", "a", "Integer.parseInt(line[0])", "Integer.parseInt", "Integer", "line[0]", "line", "0", "int b = Integer.parseInt(line[1]);", "b", "Integer.parseInt(line[1])", "Integer.parseInt", "Integer", "line[1]", "line", "1", "System.out.println(a/b)", "System.out.println", "System.out", "System", "System.out", "a/b", "a", "b", "System.out.println(a%b)", "System.out.println", "System.out", "System", "System.out", "a%b", "a", "b", "Double da = (double) a;", "da", "(double) a", "System.out.println(String.format(\"%.8f\",da/b))", "System.out.println", "System.out", "System", "System.out", "String.format(\"%.8f\",da/b)", "String.format", "String", "\"%.8f\"", "da/b", "da", "b", "String[] args", "args", "public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line[] = br.readLine().split(\" \");\n int a = Integer.parseInt(line[0]);\n int b = Integer.parseInt(line[1]);\n System.out.println(a/b);\n System.out.println(a%b);\n Double da = (double) a;\n //Double db = (double) b;\n System.out.println(String.format(\"%.8f\",da/b));\n }\n}", "public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line[] = br.readLine().split(\" \");\n int a = Integer.parseInt(line[0]);\n int b = Integer.parseInt(line[1]);\n System.out.println(a/b);\n System.out.println(a%b);\n Double da = (double) a;\n //Double db = (double) b;\n System.out.println(String.format(\"%.8f\",da/b));\n }\n}", "Main" ]
import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line[] = br.readLine().split(" "); int a = Integer.parseInt(line[0]); int b = Integer.parseInt(line[1]); System.out.println(a/b); System.out.println(a%b); Double da = (double) a; //Double db = (double) b; System.out.println(String.format("%.8f",da/b)); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 17, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 0, 13, 2, 2, 13, 17, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 12, 13, 30, 4, 18, 20, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 8, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 27, 29 ], [ 8, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 32, 34 ], [ 8, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 37, 41 ], [ 8, 42 ], [ 42, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 42, 47 ], [ 42, 48 ], [ 42, 49 ], [ 42, 50 ], [ 4, 51 ], [ 51, 52 ], [ 51, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 51, 57 ], [ 57, 58 ] ]
[ "import java.util.Scanner;\nclass Main {\n\tpublic void ab() {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tdouble f = 0;\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tf = a * 1.0 / b;\n\t\tSystem.out.printf(\"%d %d %7f\",d,r,f);\n\t}\n\tpublic static void main(String[] args) {\n\t\tnew Main().ab();\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main {\n\tpublic void ab() {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tdouble f = 0;\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tf = a * 1.0 / b;\n\t\tSystem.out.printf(\"%d %d %7f\",d,r,f);\n\t}\n\tpublic static void main(String[] args) {\n\t\tnew Main().ab();\n\t}\n}", "Main", "public void ab() {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tdouble f = 0;\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tf = a * 1.0 / b;\n\t\tSystem.out.printf(\"%d %d %7f\",d,r,f);\n\t}", "ab", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tdouble f = 0;\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tf = a * 1.0 / b;\n\t\tSystem.out.printf(\"%d %d %7f\",d,r,f);\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", "double f = 0;", "f", "0", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "f = a * 1.0 / b", "f", "a * 1.0 / b", "a * 1.0", "a", "1.0", "b", "System.out.printf(\"%d %d %7f\",d,r,f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %7f\"", "d", "r", "f", "public static void main(String[] args) {\n\t\tnew Main().ab();\n\t}", "main", "{\n\t\tnew Main().ab();\n\t}", "new Main().ab()", "new Main().ab", "new Main()", "String[] args", "args" ]
import java.util.Scanner; class Main { public void ab() { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); double f = 0; int d = a / b; int r = a % b; f = a * 1.0 / b; System.out.printf("%d %d %7f",d,r,f); } public static void main(String[] args) { new Main().ab(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 13, 2, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 46, 5 ], [ 46, 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 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 29, 31 ], [ 8, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 34, 36 ], [ 32, 37 ], [ 32, 38 ], [ 32, 39 ], [ 32, 40 ], [ 40, 41 ], [ 40, 42 ], [ 6, 43 ], [ 43, 44 ], [ 0, 45 ], [ 45, 46 ], [ 45, 47 ] ]
[ "import java.util.Scanner;\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\nScanner kb=new Scanner(System.in);\ndouble x=kb.nextDouble();\ndouble y=kb.nextDouble();\nint p=(int)x/(int)y;\nint q=(int)x%(int)y;\nSystem.out.printf(\"%d %d %f\\n\",p,q,x/y);\n\t}\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\nScanner kb=new Scanner(System.in);\ndouble x=kb.nextDouble();\ndouble y=kb.nextDouble();\nint p=(int)x/(int)y;\nint q=(int)x%(int)y;\nSystem.out.printf(\"%d %d %f\\n\",p,q,x/y);\n\t}\n\n}", "Main", "public static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\nScanner kb=new Scanner(System.in);\ndouble x=kb.nextDouble();\ndouble y=kb.nextDouble();\nint p=(int)x/(int)y;\nint q=(int)x%(int)y;\nSystem.out.printf(\"%d %d %f\\n\",p,q,x/y);\n\t}", "main", "{\n\t\t// TODO ?????????????????????????????????????????????\nScanner kb=new Scanner(System.in);\ndouble x=kb.nextDouble();\ndouble y=kb.nextDouble();\nint p=(int)x/(int)y;\nint q=(int)x%(int)y;\nSystem.out.printf(\"%d %d %f\\n\",p,q,x/y);\n\t}", "Scanner kb=new Scanner(System.in);", "kb", "new Scanner(System.in)", "double x=kb.nextDouble();", "x", "kb.nextDouble()", "kb.nextDouble", "kb", "double y=kb.nextDouble();", "y", "kb.nextDouble()", "kb.nextDouble", "kb", "int p=(int)x/(int)y;", "p", "(int)x/(int)y", "(int)x", "(int)y", "int q=(int)x%(int)y;", "q", "(int)x%(int)y", "(int)x", "(int)y", "System.out.printf(\"%d %d %f\\n\",p,q,x/y)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\\n\"", "p", "q", "x/y", "x", "y", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\nScanner kb=new Scanner(System.in);\ndouble x=kb.nextDouble();\ndouble y=kb.nextDouble();\nint p=(int)x/(int)y;\nint q=(int)x%(int)y;\nSystem.out.printf(\"%d %d %f\\n\",p,q,x/y);\n\t}\n\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\nScanner kb=new Scanner(System.in);\ndouble x=kb.nextDouble();\ndouble y=kb.nextDouble();\nint p=(int)x/(int)y;\nint q=(int)x%(int)y;\nSystem.out.printf(\"%d %d %f\\n\",p,q,x/y);\n\t}\n\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO ????????????????????????????????????????????? Scanner kb=new Scanner(System.in); double x=kb.nextDouble(); double y=kb.nextDouble(); int p=(int)x/(int)y; int q=(int)x%(int)y; System.out.printf("%d %d %f\n",p,q,x/y); } }
[ 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 4, 18, 13, 17, 2, 2, 17, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 63, 8 ], [ 63, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 11, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 27, 29 ], [ 11, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 32, 34 ], [ 11, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 38, 39 ], [ 37, 40 ], [ 37, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 41, 45 ], [ 11, 46 ], [ 46, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 46, 51 ], [ 54, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 53, 57 ], [ 52, 58 ], [ 54, 59 ], [ 9, 60 ], [ 60, 61 ], [ 0, 62 ], [ 62, 63 ], [ 62, 64 ] ]
[ "import java.io.*;\nimport java.util.*;\n\npublic 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 quotient = a/b;\n\t\tint rest = a%b;\n\t\tString str = String.format(\"%.6f\", 1.0*a/b);\n\t\t\n\n\n\t\tSystem.out.println(quotient+\" \"+rest+\" \"+str);\n\t}\n}", "import java.io.*;", "io.*", "java", "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 = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint quotient = a/b;\n\t\tint rest = a%b;\n\t\tString str = String.format(\"%.6f\", 1.0*a/b);\n\t\t\n\n\n\t\tSystem.out.println(quotient+\" \"+rest+\" \"+str);\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 quotient = a/b;\n\t\tint rest = a%b;\n\t\tString str = String.format(\"%.6f\", 1.0*a/b);\n\t\t\n\n\n\t\tSystem.out.println(quotient+\" \"+rest+\" \"+str);\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 quotient = a/b;\n\t\tint rest = a%b;\n\t\tString str = String.format(\"%.6f\", 1.0*a/b);\n\t\t\n\n\n\t\tSystem.out.println(quotient+\" \"+rest+\" \"+str);\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 quotient = a/b;", "quotient", "a/b", "a", "b", "int rest = a%b;", "rest", "a%b", "a", "b", "String str = String.format(\"%.6f\", 1.0*a/b);", "str", "String.format(\"%.6f\", 1.0*a/b)", "String.format", "String", "\"%.6f\"", "1.0*a/b", "1.0*a", "1.0", "a", "b", "System.out.println(quotient+\" \"+rest+\" \"+str)", "System.out.println", "System.out", "System", "System.out", "quotient+\" \"+rest+\" \"+str", "\" \"", "rest", "quotient+\" \"+rest+\" \"+str", "quotient", "\" \"", "rest", "\" \"", "str", "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 = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint quotient = a/b;\n\t\tint rest = a%b;\n\t\tString str = String.format(\"%.6f\", 1.0*a/b);\n\t\t\n\n\n\t\tSystem.out.println(quotient+\" \"+rest+\" \"+str);\n\t}\n}", "public 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 quotient = a/b;\n\t\tint rest = a%b;\n\t\tString str = String.format(\"%.6f\", 1.0*a/b);\n\t\t\n\n\n\t\tSystem.out.println(quotient+\" \"+rest+\" \"+str);\n\t}\n}", "Main" ]
import java.io.*; import java.util.*; public class Main{ public static void main(String[] args){ Scanner scan = new Scanner(System.in); int a = scan.nextInt(); int b = scan.nextInt(); int quotient = a/b; int rest = a%b; String str = String.format("%.6f", 1.0*a/b); System.out.println(quotient+" "+rest+" "+str); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 13, 13, 17, 4, 18, 18, 13, 13, 2, 2, 13, 13, 17, 41, 13, 4, 18, 13, 17, 13, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 66, 5 ], [ 66, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 13, 14 ], [ 8, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 8, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 8, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 27, 29 ], [ 8, 30 ], [ 30, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 30, 35 ], [ 35, 36 ], [ 36, 37 ], [ 36, 38 ], [ 35, 39 ], [ 8, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 40, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 45, 49 ], [ 8, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 53, 54 ], [ 52, 55 ], [ 52, 56 ], [ 8, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 57, 62 ], [ 6, 63 ], [ 63, 64 ], [ 0, 65 ], [ 65, 66 ], [ 65, 67 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\tscanner.hasNext();\n\n\t\tint a = scanner.nextInt();\n\t\tint b = scanner.nextInt();\n\n\t\tdouble c = (double)a/(double)b;\n\n\t\tSystem.out.print(a/b + \" \");\n\t\tSystem.out.print(a%b + \" \");\n\n\t\tString after = String.format(\"%.16f\", c);\n\t\tSystem.out.println(after);\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args) {\n\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\tscanner.hasNext();\n\n\t\tint a = scanner.nextInt();\n\t\tint b = scanner.nextInt();\n\n\t\tdouble c = (double)a/(double)b;\n\n\t\tSystem.out.print(a/b + \" \");\n\t\tSystem.out.print(a%b + \" \");\n\n\t\tString after = String.format(\"%.16f\", c);\n\t\tSystem.out.println(after);\n\t}\n}", "Main", "public static void main(String[] args) {\n\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\tscanner.hasNext();\n\n\t\tint a = scanner.nextInt();\n\t\tint b = scanner.nextInt();\n\n\t\tdouble c = (double)a/(double)b;\n\n\t\tSystem.out.print(a/b + \" \");\n\t\tSystem.out.print(a%b + \" \");\n\n\t\tString after = String.format(\"%.16f\", c);\n\t\tSystem.out.println(after);\n\t}", "main", "{\n\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\tscanner.hasNext();\n\n\t\tint a = scanner.nextInt();\n\t\tint b = scanner.nextInt();\n\n\t\tdouble c = (double)a/(double)b;\n\n\t\tSystem.out.print(a/b + \" \");\n\t\tSystem.out.print(a%b + \" \");\n\n\t\tString after = String.format(\"%.16f\", c);\n\t\tSystem.out.println(after);\n\t}", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "scanner.hasNext()", "scanner.hasNext", "scanner", "int a = scanner.nextInt();", "a", "scanner.nextInt()", "scanner.nextInt", "scanner", "int b = scanner.nextInt();", "b", "scanner.nextInt()", "scanner.nextInt", "scanner", "double c = (double)a/(double)b;", "c", "(double)a/(double)b", "(double)a", "(double)b", "System.out.print(a/b + \" \")", "System.out.print", "System.out", "System", "System.out", "a/b + \" \"", "a/b", "a", "b", "\" \"", "System.out.print(a%b + \" \")", "System.out.print", "System.out", "System", "System.out", "a%b + \" \"", "a%b", "a", "b", "\" \"", "String after = String.format(\"%.16f\", c);", "after", "String.format(\"%.16f\", c)", "String.format", "String", "\"%.16f\"", "c", "System.out.println(after)", "System.out.println", "System.out", "System", "System.out", "after", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) {\n\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\tscanner.hasNext();\n\n\t\tint a = scanner.nextInt();\n\t\tint b = scanner.nextInt();\n\n\t\tdouble c = (double)a/(double)b;\n\n\t\tSystem.out.print(a/b + \" \");\n\t\tSystem.out.print(a%b + \" \");\n\n\t\tString after = String.format(\"%.16f\", c);\n\t\tSystem.out.println(after);\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\n\t\tScanner scanner = new Scanner(System.in);\n\n\t\tscanner.hasNext();\n\n\t\tint a = scanner.nextInt();\n\t\tint b = scanner.nextInt();\n\n\t\tdouble c = (double)a/(double)b;\n\n\t\tSystem.out.print(a/b + \" \");\n\t\tSystem.out.print(a%b + \" \");\n\n\t\tString after = String.format(\"%.16f\", c);\n\t\tSystem.out.println(after);\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); scanner.hasNext(); int a = scanner.nextInt(); int b = scanner.nextInt(); double c = (double)a/(double)b; System.out.print(a/b + " "); System.out.print(a%b + " "); String after = String.format("%.16f", c); System.out.println(after); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 38, 5, 13, 30, 4, 18, 18, 13, 13, 17, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 17, 41, 13, 20, 17, 0, 18, 13, 17, 4, 18, 13, 18, 13, 17, 0, 18, 13, 17, 4, 18, 13, 18, 13, 17, 41, 13, 2, 18, 13, 17, 18, 13, 17, 41, 13, 2, 18, 13, 17, 18, 13, 17, 41, 13, 18, 13, 17, 0, 13, 2, 18, 13, 17, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 103, 8 ], [ 103, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 13, 14 ], [ 13, 15 ], [ 15, 16 ], [ 16, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 16, 21 ], [ 12, 22 ], [ 22, 23 ], [ 23, 24 ], [ 23, 25 ], [ 22, 26 ], [ 26, 27 ], [ 26, 28 ], [ 28, 29 ], [ 29, 30 ], [ 22, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 34, 35 ], [ 33, 36 ], [ 22, 37 ], [ 37, 38 ], [ 37, 39 ], [ 22, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 41, 45 ], [ 45, 46 ], [ 46, 47 ], [ 45, 48 ], [ 48, 49 ], [ 48, 50 ], [ 22, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 55, 56 ], [ 56, 57 ], [ 55, 58 ], [ 58, 59 ], [ 58, 60 ], [ 22, 61 ], [ 61, 62 ], [ 61, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 67, 68 ], [ 67, 69 ], [ 22, 70 ], [ 70, 71 ], [ 70, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 76 ], [ 76, 77 ], [ 76, 78 ], [ 22, 79 ], [ 79, 80 ], [ 79, 81 ], [ 81, 82 ], [ 81, 83 ], [ 22, 84 ], [ 84, 85 ], [ 84, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 86, 90 ], [ 22, 91 ], [ 91, 92 ], [ 92, 93 ], [ 93, 94 ], [ 93, 95 ], [ 91, 96 ], [ 91, 97 ], [ 91, 98 ], [ 91, 99 ], [ 9, 100 ], [ 100, 101 ], [ 0, 102 ], [ 102, 103 ], [ 102, 104 ] ]
[ "import java.io.*;\nimport java.lang.Integer;\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\ttry (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n\t\t\tString in = br.readLine() ;\n\t\t\tString[] numStr = in.split(\" \");\n\t\t\tint[] num = new int[2];\n\t\t\tnum[0] = Integer.parseInt(numStr[0]);\n\t\t\tnum[1] = Integer.parseInt(numStr[1]);\n\t\t\tint a1 = num[0]/num[1];\n\t\t\tint a2 = num[0]%num[1];\n\t\t\tdouble f1 = num[1];\n\t\t\tf1 = num[0]/f1;\n\t\t\tSystem.out.printf(\"%d %d %9.5f\" , a1, a2, f1);\n\t\t} catch ( IOException e ) {\n\t\t\tSystem.out.println(\"??¨??????????????????????????????\");\n\t\t}\n\t}\n}", "import java.io.*;", "io.*", "java", "import java.lang.Integer;", "Integer", "java.lang", "public class Main {\n\tpublic static void main(String[] args) {\n\t\ttry (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n\t\t\tString in = br.readLine() ;\n\t\t\tString[] numStr = in.split(\" \");\n\t\t\tint[] num = new int[2];\n\t\t\tnum[0] = Integer.parseInt(numStr[0]);\n\t\t\tnum[1] = Integer.parseInt(numStr[1]);\n\t\t\tint a1 = num[0]/num[1];\n\t\t\tint a2 = num[0]%num[1];\n\t\t\tdouble f1 = num[1];\n\t\t\tf1 = num[0]/f1;\n\t\t\tSystem.out.printf(\"%d %d %9.5f\" , a1, a2, f1);\n\t\t} catch ( IOException e ) {\n\t\t\tSystem.out.println(\"??¨??????????????????????????????\");\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\ttry (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n\t\t\tString in = br.readLine() ;\n\t\t\tString[] numStr = in.split(\" \");\n\t\t\tint[] num = new int[2];\n\t\t\tnum[0] = Integer.parseInt(numStr[0]);\n\t\t\tnum[1] = Integer.parseInt(numStr[1]);\n\t\t\tint a1 = num[0]/num[1];\n\t\t\tint a2 = num[0]%num[1];\n\t\t\tdouble f1 = num[1];\n\t\t\tf1 = num[0]/f1;\n\t\t\tSystem.out.printf(\"%d %d %9.5f\" , a1, a2, f1);\n\t\t} catch ( IOException e ) {\n\t\t\tSystem.out.println(\"??¨??????????????????????????????\");\n\t\t}\n\t}", "main", "{\n\t\ttry (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n\t\t\tString in = br.readLine() ;\n\t\t\tString[] numStr = in.split(\" \");\n\t\t\tint[] num = new int[2];\n\t\t\tnum[0] = Integer.parseInt(numStr[0]);\n\t\t\tnum[1] = Integer.parseInt(numStr[1]);\n\t\t\tint a1 = num[0]/num[1];\n\t\t\tint a2 = num[0]%num[1];\n\t\t\tdouble f1 = num[1];\n\t\t\tf1 = num[0]/f1;\n\t\t\tSystem.out.printf(\"%d %d %9.5f\" , a1, a2, f1);\n\t\t} catch ( IOException e ) {\n\t\t\tSystem.out.println(\"??¨??????????????????????????????\");\n\t\t}\n\t}", "try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n\t\t\tString in = br.readLine() ;\n\t\t\tString[] numStr = in.split(\" \");\n\t\t\tint[] num = new int[2];\n\t\t\tnum[0] = Integer.parseInt(numStr[0]);\n\t\t\tnum[1] = Integer.parseInt(numStr[1]);\n\t\t\tint a1 = num[0]/num[1];\n\t\t\tint a2 = num[0]%num[1];\n\t\t\tdouble f1 = num[1];\n\t\t\tf1 = num[0]/f1;\n\t\t\tSystem.out.printf(\"%d %d %9.5f\" , a1, a2, f1);\n\t\t} catch ( IOException e ) {\n\t\t\tSystem.out.println(\"??¨??????????????????????????????\");\n\t\t}", "catch ( IOException e ) {\n\t\t\tSystem.out.println(\"??¨??????????????????????????????\");\n\t\t}", "IOException e", "{\n\t\t\tSystem.out.println(\"??¨??????????????????????????????\");\n\t\t}", "System.out.println(\"??¨??????????????????????????????\")", "System.out.println", "System.out", "System", "System.out", "\"??¨??????????????????????????????\"", "{\n\t\t\tString in = br.readLine() ;\n\t\t\tString[] numStr = in.split(\" \");\n\t\t\tint[] num = new int[2];\n\t\t\tnum[0] = Integer.parseInt(numStr[0]);\n\t\t\tnum[1] = Integer.parseInt(numStr[1]);\n\t\t\tint a1 = num[0]/num[1];\n\t\t\tint a2 = num[0]%num[1];\n\t\t\tdouble f1 = num[1];\n\t\t\tf1 = num[0]/f1;\n\t\t\tSystem.out.printf(\"%d %d %9.5f\" , a1, a2, f1);\n\t\t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in))", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in))", "new BufferedReader(new InputStreamReader(System.in))", "String in = br.readLine() ;", "in", "br.readLine()", "br.readLine", "br", "String[] numStr = in.split(\" \");", "numStr", "in.split(\" \")", "in.split", "in", "\" \"", "int[] num = new int[2];", "num", "new int[2]", "2", "num[0] = Integer.parseInt(numStr[0])", "num[0]", "num", "0", "Integer.parseInt(numStr[0])", "Integer.parseInt", "Integer", "numStr[0]", "numStr", "0", "num[1] = Integer.parseInt(numStr[1])", "num[1]", "num", "1", "Integer.parseInt(numStr[1])", "Integer.parseInt", "Integer", "numStr[1]", "numStr", "1", "int a1 = num[0]/num[1];", "a1", "num[0]/num[1]", "num[0]", "num", "0", "num[1]", "num", "1", "int a2 = num[0]%num[1];", "a2", "num[0]%num[1]", "num[0]", "num", "0", "num[1]", "num", "1", "double f1 = num[1];", "f1", "num[1]", "num", "1", "f1 = num[0]/f1", "f1", "num[0]/f1", "num[0]", "num", "0", "f1", "System.out.printf(\"%d %d %9.5f\" , a1, a2, f1)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %9.5f\"", "a1", "a2", "f1", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) {\n\t\ttry (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n\t\t\tString in = br.readLine() ;\n\t\t\tString[] numStr = in.split(\" \");\n\t\t\tint[] num = new int[2];\n\t\t\tnum[0] = Integer.parseInt(numStr[0]);\n\t\t\tnum[1] = Integer.parseInt(numStr[1]);\n\t\t\tint a1 = num[0]/num[1];\n\t\t\tint a2 = num[0]%num[1];\n\t\t\tdouble f1 = num[1];\n\t\t\tf1 = num[0]/f1;\n\t\t\tSystem.out.printf(\"%d %d %9.5f\" , a1, a2, f1);\n\t\t} catch ( IOException e ) {\n\t\t\tSystem.out.println(\"??¨??????????????????????????????\");\n\t\t}\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\ttry (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n\t\t\tString in = br.readLine() ;\n\t\t\tString[] numStr = in.split(\" \");\n\t\t\tint[] num = new int[2];\n\t\t\tnum[0] = Integer.parseInt(numStr[0]);\n\t\t\tnum[1] = Integer.parseInt(numStr[1]);\n\t\t\tint a1 = num[0]/num[1];\n\t\t\tint a2 = num[0]%num[1];\n\t\t\tdouble f1 = num[1];\n\t\t\tf1 = num[0]/f1;\n\t\t\tSystem.out.printf(\"%d %d %9.5f\" , a1, a2, f1);\n\t\t} catch ( IOException e ) {\n\t\t\tSystem.out.println(\"??¨??????????????????????????????\");\n\t\t}\n\t}\n}", "Main" ]
import java.io.*; import java.lang.Integer; public class Main { public static void main(String[] args) { try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) { String in = br.readLine() ; String[] numStr = in.split(" "); int[] num = new int[2]; num[0] = Integer.parseInt(numStr[0]); num[1] = Integer.parseInt(numStr[1]); int a1 = num[0]/num[1]; int a2 = num[0]%num[1]; double f1 = num[1]; f1 = num[0]/f1; System.out.printf("%d %d %9.5f" , a1, a2, f1); } catch ( IOException e ) { System.out.println("??¨??????????????????????????????"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 38, 5, 13, 30, 4, 18, 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 17, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 14, 21 ], [ 21, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 21, 28 ], [ 28, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 31, 36 ], [ 28, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 39, 42 ], [ 42, 43 ], [ 42, 44 ], [ 28, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 48, 49 ], [ 47, 50 ], [ 50, 51 ], [ 50, 52 ], [ 28, 53 ], [ 53, 54 ], [ 53, 55 ], [ 55, 56 ], [ 55, 57 ], [ 28, 58 ], [ 58, 59 ], [ 58, 60 ], [ 60, 61 ], [ 60, 62 ], [ 28, 63 ], [ 63, 64 ], [ 63, 65 ], [ 65, 66 ], [ 65, 67 ], [ 28, 68 ], [ 68, 69 ], [ 69, 70 ], [ 70, 71 ], [ 70, 72 ], [ 68, 73 ], [ 76, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 75, 79 ], [ 74, 80 ], [ 76, 81 ], [ 81, 82 ], [ 82, 83 ], [ 81, 84 ], [ 81, 85 ], [ 12, 86 ], [ 86, 87 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\nclass Main {\n\tpublic static void main(String[] args) {\n\t\tInputStreamReader isr = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(isr);\n\t\ttry {\n\t\t\tString[] list = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(list[0]);\n\t\t\tint b = Integer.parseInt(list[1]);\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = (double) a / b;\n\t\t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f));\n\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "class Main {\n\tpublic static void main(String[] args) {\n\t\tInputStreamReader isr = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(isr);\n\t\ttry {\n\t\t\tString[] list = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(list[0]);\n\t\t\tint b = Integer.parseInt(list[1]);\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = (double) a / b;\n\t\t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f));\n\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tInputStreamReader isr = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(isr);\n\t\ttry {\n\t\t\tString[] list = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(list[0]);\n\t\t\tint b = Integer.parseInt(list[1]);\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = (double) a / b;\n\t\t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f));\n\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}", "main", "{\n\t\tInputStreamReader isr = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(isr);\n\t\ttry {\n\t\t\tString[] list = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(list[0]);\n\t\t\tint b = Integer.parseInt(list[1]);\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = (double) a / b;\n\t\t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f));\n\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}", "InputStreamReader isr = new InputStreamReader(System.in);", "isr", "new InputStreamReader(System.in)", "BufferedReader br = new BufferedReader(isr);", "br", "new BufferedReader(isr)", "try {\n\t\t\tString[] list = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(list[0]);\n\t\t\tint b = Integer.parseInt(list[1]);\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = (double) a / b;\n\t\t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f));\n\n\t\t} catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}", "catch (IOException e) {\n\t\t\te.printStackTrace();\n\t\t}", "IOException e", "{\n\t\t\te.printStackTrace();\n\t\t}", "e.printStackTrace()", "e.printStackTrace", "e", "{\n\t\t\tString[] list = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(list[0]);\n\t\t\tint b = Integer.parseInt(list[1]);\n\t\t\tint d = a / b;\n\t\t\tint r = a % b;\n\t\t\tdouble f = (double) a / b;\n\t\t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f));\n\n\t\t}", "String[] list = br.readLine().split(\" \");", "list", "br.readLine().split(\" \")", "br.readLine().split", "br.readLine()", "br.readLine", "br", "\" \"", "int a = Integer.parseInt(list[0]);", "a", "Integer.parseInt(list[0])", "Integer.parseInt", "Integer", "list[0]", "list", "0", "int b = Integer.parseInt(list[1]);", "b", "Integer.parseInt(list[1])", "Integer.parseInt", "Integer", "list[1]", "list", "1", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = (double) a / b;", "f", "(double) a / b", "(double) a", "b", "System.out.println(d + \" \" + r + \" \" + String.format(\"%.5f\", f))", "System.out.println", "System.out", "System", "System.out", "d + \" \" + r + \" \" + String.format(\"%.5f\", f)", "\" \"", "r", "d + \" \" + r + \" \" + String.format(\"%.5f\", f)", "d", "\" \"", "r", "\" \"", "String.format(\"%.5f\", f)", "String.format", "String", "\"%.5f\"", "f", "String[] args", "args" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; class Main { public static void main(String[] args) { InputStreamReader isr = new InputStreamReader(System.in); BufferedReader br = new BufferedReader(isr); try { String[] list = br.readLine().split(" "); int a = Integer.parseInt(list[0]); int b = Integer.parseInt(list[1]); int d = a / b; int r = a % b; double f = (double) a / b; System.out.println(d + " " + r + " " + String.format("%.5f", f)); } catch (IOException e) { e.printStackTrace(); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 17, 41, 13, 20, 41, 13, 20, 4, 18, 18, 13, 13, 2, 2, 2, 2, 4, 18, 4, 18, 13, 13, 17, 4, 18, 4, 18, 13, 13, 17, 4, 18, 4, 18, 13, 13, 17, 18, 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 ], [ 71, 11 ], [ 71, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 14, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 25, 28 ], [ 14, 29 ], [ 29, 30 ], [ 29, 31 ], [ 14, 32 ], [ 32, 33 ], [ 32, 34 ], [ 14, 35 ], [ 35, 36 ], [ 36, 37 ], [ 37, 38 ], [ 37, 39 ], [ 35, 40 ], [ 43, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 43, 50 ], [ 42, 51 ], [ 51, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 53, 56 ], [ 41, 57 ], [ 43, 58 ], [ 58, 59 ], [ 59, 60 ], [ 60, 61 ], [ 61, 62 ], [ 60, 63 ], [ 60, 64 ], [ 60, 65 ], [ 65, 66 ], [ 65, 67 ], [ 12, 68 ], [ 68, 69 ], [ 0, 70 ], [ 70, 71 ], [ 70, 72 ] ]
[ "import java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.math.*;\n\npublic class Main {\n public static void main(String[] args) throws Exception {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] ln = line.split(\" \");\n BigDecimal a = new BigDecimal(new Integer(ln[0]));\n BigDecimal b = new BigDecimal(new Integer(ln[1]));\n System.out.println(a.divideToIntegralValue(b).toPlainString() + \" \" + a.remainder(b).toPlainString() + \" \" + a.divide(b,10,RoundingMode.HALF_UP).toPlainString());\n }\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.math.*;", "math.*", "java", "public class Main {\n public static void main(String[] args) throws Exception {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] ln = line.split(\" \");\n BigDecimal a = new BigDecimal(new Integer(ln[0]));\n BigDecimal b = new BigDecimal(new Integer(ln[1]));\n System.out.println(a.divideToIntegralValue(b).toPlainString() + \" \" + a.remainder(b).toPlainString() + \" \" + a.divide(b,10,RoundingMode.HALF_UP).toPlainString());\n }\n}", "Main", "public static void main(String[] args) throws Exception {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] ln = line.split(\" \");\n BigDecimal a = new BigDecimal(new Integer(ln[0]));\n BigDecimal b = new BigDecimal(new Integer(ln[1]));\n System.out.println(a.divideToIntegralValue(b).toPlainString() + \" \" + a.remainder(b).toPlainString() + \" \" + a.divide(b,10,RoundingMode.HALF_UP).toPlainString());\n }", "main", "{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] ln = line.split(\" \");\n BigDecimal a = new BigDecimal(new Integer(ln[0]));\n BigDecimal b = new BigDecimal(new Integer(ln[1]));\n System.out.println(a.divideToIntegralValue(b).toPlainString() + \" \" + a.remainder(b).toPlainString() + \" \" + a.divide(b,10,RoundingMode.HALF_UP).toPlainString());\n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String line = br.readLine();", "line", "br.readLine()", "br.readLine", "br", "String[] ln = line.split(\" \");", "ln", "line.split(\" \")", "line.split", "line", "\" \"", "BigDecimal a = new BigDecimal(new Integer(ln[0]));", "a", "new BigDecimal(new Integer(ln[0]))", "BigDecimal b = new BigDecimal(new Integer(ln[1]));", "b", "new BigDecimal(new Integer(ln[1]))", "System.out.println(a.divideToIntegralValue(b).toPlainString() + \" \" + a.remainder(b).toPlainString() + \" \" + a.divide(b,10,RoundingMode.HALF_UP).toPlainString())", "System.out.println", "System.out", "System", "System.out", "a.divideToIntegralValue(b).toPlainString() + \" \" + a.remainder(b).toPlainString() + \" \" + a.divide(b,10,RoundingMode.HALF_UP).toPlainString()", "\" \"", "a.remainder(b).toPlainString()", "a.divideToIntegralValue(b).toPlainString() + \" \" + a.remainder(b).toPlainString() + \" \" + a.divide(b,10,RoundingMode.HALF_UP).toPlainString()", "a.divideToIntegralValue(b).toPlainString()", "a.divideToIntegralValue(b).toPlainString", "a.divideToIntegralValue(b)", "a.divideToIntegralValue", "a", "b", "\" \"", "a.remainder(b).toPlainString()", "a.remainder(b).toPlainString", "a.remainder(b)", "a.remainder", "a", "b", "\" \"", "a.divide(b,10,RoundingMode.HALF_UP).toPlainString()", "a.divide(b,10,RoundingMode.HALF_UP).toPlainString", "a.divide(b,10,RoundingMode.HALF_UP)", "a.divide", "a", "b", "10", "RoundingMode.HALF_UP", "RoundingMode", "RoundingMode.HALF_UP", "String[] args", "args", "public class Main {\n public static void main(String[] args) throws Exception {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] ln = line.split(\" \");\n BigDecimal a = new BigDecimal(new Integer(ln[0]));\n BigDecimal b = new BigDecimal(new Integer(ln[1]));\n System.out.println(a.divideToIntegralValue(b).toPlainString() + \" \" + a.remainder(b).toPlainString() + \" \" + a.divide(b,10,RoundingMode.HALF_UP).toPlainString());\n }\n}", "public class Main {\n public static void main(String[] args) throws Exception {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] ln = line.split(\" \");\n BigDecimal a = new BigDecimal(new Integer(ln[0]));\n BigDecimal b = new BigDecimal(new Integer(ln[1]));\n System.out.println(a.divideToIntegralValue(b).toPlainString() + \" \" + a.remainder(b).toPlainString() + \" \" + a.divide(b,10,RoundingMode.HALF_UP).toPlainString());\n }\n}", "Main" ]
import java.io.BufferedReader; import java.io.InputStreamReader; import java.math.*; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line = br.readLine(); String[] ln = line.split(" "); BigDecimal a = new BigDecimal(new Integer(ln[0])); BigDecimal b = new BigDecimal(new Integer(ln[1])); System.out.println(a.divideToIntegralValue(b).toPlainString() + " " + a.remainder(b).toPlainString() + " " + a.divide(b,10,RoundingMode.HALF_UP).toPlainString()); } }
[ 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, 4, 18, 18, 13, 13, 17, 2, 13, 13, 2, 13, 13, 2, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 43, 8 ], [ 43, 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 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 25, 30 ], [ 25, 31 ], [ 31, 32 ], [ 31, 33 ], [ 25, 34 ], [ 34, 35 ], [ 34, 36 ], [ 25, 37 ], [ 37, 38 ], [ 37, 39 ], [ 9, 40 ], [ 40, 41 ], [ 0, 42 ], [ 42, 43 ], [ 42, 44 ] ]
[ "import java.util.Scanner;\nimport 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 System.out.printf(\"%d %d %f\\n\",a/b,a%b,(double)a/b);\n }\n }", "import java.util.Scanner;", "Scanner", "java.util", "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 System.out.printf(\"%d %d %f\\n\",a/b,a%b,(double)a/b);\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 System.out.printf(\"%d %d %f\\n\",a/b,a%b,(double)a/b);\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int a= sc.nextInt();\n int b=sc.nextInt();\n System.out.printf(\"%d %d %f\\n\",a/b,a%b,(double)a/b);\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", "System.out.printf(\"%d %d %f\\n\",a/b,a%b,(double)a/b)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\\n\"", "a/b", "a", "b", "a%b", "a", "b", "(double)a/b", "(double)a", "b", "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 System.out.printf(\"%d %d %f\\n\",a/b,a%b,(double)a/b);\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 System.out.printf(\"%d %d %f\\n\",a/b,a%b,(double)a/b);\n }\n }", "Main" ]
import java.util.Scanner; 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(); System.out.printf("%d %d %f\n",a/b,a%b,(double)a/b); } }
[ 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, 4, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 4, 18, 18, 13, 13, 17, 2, 13, 13, 2, 13, 13, 2, 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 ], [ 63, 14 ], [ 63, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 23, 28 ], [ 17, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 31, 34 ], [ 34, 35 ], [ 34, 36 ], [ 17, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 39, 42 ], [ 42, 43 ], [ 42, 44 ], [ 17, 45 ], [ 45, 46 ], [ 46, 47 ], [ 47, 48 ], [ 47, 49 ], [ 45, 50 ], [ 45, 51 ], [ 51, 52 ], [ 51, 53 ], [ 45, 54 ], [ 54, 55 ], [ 54, 56 ], [ 45, 57 ], [ 57, 58 ], [ 57, 59 ], [ 15, 60 ], [ 60, 61 ], [ 0, 62 ], [ 62, 63 ], [ 62, 64 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.Arrays;\n\n\npublic class Main {\n\n\t/**\n\t * @param args\n\t * @throws IOException \n\t * @throws NumberFormatException \n\t */\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\t// TODO Auto-generated method stub\n\t\t\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\tString[] tmpArray = br.readLine().split(\" \");\n\t\tint a = Integer.parseInt(tmpArray[0]);\n\t\tint b = Integer.parseInt(tmpArray[1]);\n//\t\tint c = Integer.parseInt(tmpArray[2]);\n//\t\tint y = Integer.parseInt(tmpArray[3]);\n//\t\tint r = Integer.parseInt(tmpArray[4]);\n\t\t\n\t\t\n\t\tSystem.out.printf(\"%d %d %f\", a/b, a%b, ((double)a)/b);\n\t\t/*\n\t\tint i = 1;\n\t\twhile(true){\n\t\t\tString[] tmpArray = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(tmpArray[0]);\n\t\t\tint b = Integer.parseInt(tmpArray[1]);\n\t\t\tif(a == 0 && b == 0){\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif(a > b){\n\t\t\t\tint tmp = a; \n\t\t\t\ta = b;\n\t\t\t\tb = tmp;\n\t\t\t}\n\t\t\tSystem.out.println(a + \" \"+b);\n\t\t\t\n\t\t}*/\n\n\t\t//\t\tint[] array = new int[3];\n//\t\tarray[0] = a; array[1] = b; array[2] = c;\n//\n//\t\tArrays.sort(array);\n//\t\tSystem.out.printf(\"%d %d %d\\n\", array[0], array[1], array[2]);\n\t\t/*\n\t\tif(a < b && b < c){\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.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.util.Arrays;", "Arrays", "java.util", "public class Main {\n\n\t/**\n\t * @param args\n\t * @throws IOException \n\t * @throws NumberFormatException \n\t */\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\t// TODO Auto-generated method stub\n\t\t\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\tString[] tmpArray = br.readLine().split(\" \");\n\t\tint a = Integer.parseInt(tmpArray[0]);\n\t\tint b = Integer.parseInt(tmpArray[1]);\n//\t\tint c = Integer.parseInt(tmpArray[2]);\n//\t\tint y = Integer.parseInt(tmpArray[3]);\n//\t\tint r = Integer.parseInt(tmpArray[4]);\n\t\t\n\t\t\n\t\tSystem.out.printf(\"%d %d %f\", a/b, a%b, ((double)a)/b);\n\t\t/*\n\t\tint i = 1;\n\t\twhile(true){\n\t\t\tString[] tmpArray = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(tmpArray[0]);\n\t\t\tint b = Integer.parseInt(tmpArray[1]);\n\t\t\tif(a == 0 && b == 0){\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif(a > b){\n\t\t\t\tint tmp = a; \n\t\t\t\ta = b;\n\t\t\t\tb = tmp;\n\t\t\t}\n\t\t\tSystem.out.println(a + \" \"+b);\n\t\t\t\n\t\t}*/\n\n\t\t//\t\tint[] array = new int[3];\n//\t\tarray[0] = a; array[1] = b; array[2] = c;\n//\n//\t\tArrays.sort(array);\n//\t\tSystem.out.printf(\"%d %d %d\\n\", array[0], array[1], array[2]);\n\t\t/*\n\t\tif(a < b && b < c){\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", "/**\n\t * @param args\n\t * @throws IOException \n\t * @throws NumberFormatException \n\t */\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\t// TODO Auto-generated method stub\n\t\t\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\tString[] tmpArray = br.readLine().split(\" \");\n\t\tint a = Integer.parseInt(tmpArray[0]);\n\t\tint b = Integer.parseInt(tmpArray[1]);\n//\t\tint c = Integer.parseInt(tmpArray[2]);\n//\t\tint y = Integer.parseInt(tmpArray[3]);\n//\t\tint r = Integer.parseInt(tmpArray[4]);\n\t\t\n\t\t\n\t\tSystem.out.printf(\"%d %d %f\", a/b, a%b, ((double)a)/b);\n\t\t/*\n\t\tint i = 1;\n\t\twhile(true){\n\t\t\tString[] tmpArray = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(tmpArray[0]);\n\t\t\tint b = Integer.parseInt(tmpArray[1]);\n\t\t\tif(a == 0 && b == 0){\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif(a > b){\n\t\t\t\tint tmp = a; \n\t\t\t\ta = b;\n\t\t\t\tb = tmp;\n\t\t\t}\n\t\t\tSystem.out.println(a + \" \"+b);\n\t\t\t\n\t\t}*/\n\n\t\t//\t\tint[] array = new int[3];\n//\t\tarray[0] = a; array[1] = b; array[2] = c;\n//\n//\t\tArrays.sort(array);\n//\t\tSystem.out.printf(\"%d %d %d\\n\", array[0], array[1], array[2]);\n\t\t/*\n\t\tif(a < b && b < c){\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\t\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\tString[] tmpArray = br.readLine().split(\" \");\n\t\tint a = Integer.parseInt(tmpArray[0]);\n\t\tint b = Integer.parseInt(tmpArray[1]);\n//\t\tint c = Integer.parseInt(tmpArray[2]);\n//\t\tint y = Integer.parseInt(tmpArray[3]);\n//\t\tint r = Integer.parseInt(tmpArray[4]);\n\t\t\n\t\t\n\t\tSystem.out.printf(\"%d %d %f\", a/b, a%b, ((double)a)/b);\n\t\t/*\n\t\tint i = 1;\n\t\twhile(true){\n\t\t\tString[] tmpArray = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(tmpArray[0]);\n\t\t\tint b = Integer.parseInt(tmpArray[1]);\n\t\t\tif(a == 0 && b == 0){\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif(a > b){\n\t\t\t\tint tmp = a; \n\t\t\t\ta = b;\n\t\t\t\tb = tmp;\n\t\t\t}\n\t\t\tSystem.out.println(a + \" \"+b);\n\t\t\t\n\t\t}*/\n\n\t\t//\t\tint[] array = new int[3];\n//\t\tarray[0] = a; array[1] = b; array[2] = c;\n//\n//\t\tArrays.sort(array);\n//\t\tSystem.out.printf(\"%d %d %d\\n\", array[0], array[1], array[2]);\n\t\t/*\n\t\tif(a < b && b < c){\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}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String[] tmpArray = br.readLine().split(\" \");", "tmpArray", "br.readLine().split(\" \")", "br.readLine().split", "br.readLine()", "br.readLine", "br", "\" \"", "int a = Integer.parseInt(tmpArray[0]);", "a", "Integer.parseInt(tmpArray[0])", "Integer.parseInt", "Integer", "tmpArray[0]", "tmpArray", "0", "int b = Integer.parseInt(tmpArray[1]);", "b", "Integer.parseInt(tmpArray[1])", "Integer.parseInt", "Integer", "tmpArray[1]", "tmpArray", "1", "System.out.printf(\"%d %d %f\", a/b, a%b, ((double)a)/b)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\"", "a/b", "a", "b", "a%b", "a", "b", "((double)a)/b", "((double)a)", "b", "String[] args", "args", "public class Main {\n\n\t/**\n\t * @param args\n\t * @throws IOException \n\t * @throws NumberFormatException \n\t */\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\t// TODO Auto-generated method stub\n\t\t\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\tString[] tmpArray = br.readLine().split(\" \");\n\t\tint a = Integer.parseInt(tmpArray[0]);\n\t\tint b = Integer.parseInt(tmpArray[1]);\n//\t\tint c = Integer.parseInt(tmpArray[2]);\n//\t\tint y = Integer.parseInt(tmpArray[3]);\n//\t\tint r = Integer.parseInt(tmpArray[4]);\n\t\t\n\t\t\n\t\tSystem.out.printf(\"%d %d %f\", a/b, a%b, ((double)a)/b);\n\t\t/*\n\t\tint i = 1;\n\t\twhile(true){\n\t\t\tString[] tmpArray = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(tmpArray[0]);\n\t\t\tint b = Integer.parseInt(tmpArray[1]);\n\t\t\tif(a == 0 && b == 0){\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif(a > b){\n\t\t\t\tint tmp = a; \n\t\t\t\ta = b;\n\t\t\t\tb = tmp;\n\t\t\t}\n\t\t\tSystem.out.println(a + \" \"+b);\n\t\t\t\n\t\t}*/\n\n\t\t//\t\tint[] array = new int[3];\n//\t\tarray[0] = a; array[1] = b; array[2] = c;\n//\n//\t\tArrays.sort(array);\n//\t\tSystem.out.printf(\"%d %d %d\\n\", array[0], array[1], array[2]);\n\t\t/*\n\t\tif(a < b && b < c){\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\t/**\n\t * @param args\n\t * @throws IOException \n\t * @throws NumberFormatException \n\t */\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\t\t// TODO Auto-generated method stub\n\t\t\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\n\t\tString[] tmpArray = br.readLine().split(\" \");\n\t\tint a = Integer.parseInt(tmpArray[0]);\n\t\tint b = Integer.parseInt(tmpArray[1]);\n//\t\tint c = Integer.parseInt(tmpArray[2]);\n//\t\tint y = Integer.parseInt(tmpArray[3]);\n//\t\tint r = Integer.parseInt(tmpArray[4]);\n\t\t\n\t\t\n\t\tSystem.out.printf(\"%d %d %f\", a/b, a%b, ((double)a)/b);\n\t\t/*\n\t\tint i = 1;\n\t\twhile(true){\n\t\t\tString[] tmpArray = br.readLine().split(\" \");\n\t\t\tint a = Integer.parseInt(tmpArray[0]);\n\t\t\tint b = Integer.parseInt(tmpArray[1]);\n\t\t\tif(a == 0 && b == 0){\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif(a > b){\n\t\t\t\tint tmp = a; \n\t\t\t\ta = b;\n\t\t\t\tb = tmp;\n\t\t\t}\n\t\t\tSystem.out.println(a + \" \"+b);\n\t\t\t\n\t\t}*/\n\n\t\t//\t\tint[] array = new int[3];\n//\t\tarray[0] = a; array[1] = b; array[2] = c;\n//\n//\t\tArrays.sort(array);\n//\t\tSystem.out.printf(\"%d %d %d\\n\", array[0], array[1], array[2]);\n\t\t/*\n\t\tif(a < b && b < c){\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" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; public class Main { /** * @param args * @throws IOException * @throws NumberFormatException */ public static void main(String[] args) throws NumberFormatException, IOException { // TODO Auto-generated method stub BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] tmpArray = br.readLine().split(" "); int a = Integer.parseInt(tmpArray[0]); int b = Integer.parseInt(tmpArray[1]); // int c = Integer.parseInt(tmpArray[2]); // int y = Integer.parseInt(tmpArray[3]); // int r = Integer.parseInt(tmpArray[4]); System.out.printf("%d %d %f", a/b, a%b, ((double)a)/b); /* int i = 1; while(true){ String[] tmpArray = br.readLine().split(" "); int a = Integer.parseInt(tmpArray[0]); int b = Integer.parseInt(tmpArray[1]); if(a == 0 && b == 0){ break; } if(a > b){ int tmp = a; a = b; b = tmp; } System.out.println(a + " "+b); }*/ // int[] array = new int[3]; // array[0] = a; array[1] = b; array[2] = c; // // Arrays.sort(array); // System.out.printf("%d %d %d\n", array[0], array[1], array[2]); /* if(a < b && b < c){ 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, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 78, 8 ], [ 78, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 11, 26 ], [ 26, 27 ], [ 26, 28 ], [ 28, 29 ], [ 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 ], [ 44, 46 ], [ 11, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 49, 51 ], [ 11, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 11, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 57, 62 ], [ 65, 63 ], [ 63, 64 ], [ 64, 65 ], [ 65, 66 ], [ 65, 67 ], [ 64, 68 ], [ 63, 69 ], [ 65, 70 ], [ 70, 71 ], [ 71, 72 ], [ 70, 73 ], [ 70, 74 ], [ 9, 75 ], [ 75, 76 ], [ 0, 77 ], [ 77, 78 ], [ 77, 79 ] ]
[ "import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\tpublic static void main(String[] args) throws Exception {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = br.readLine();\n\t\tString[] hikakuStr = line.split(\"[\\\\s]+\");\n\t\t// TODO ?????????????????????????????????????????????\n\t\tint a = Integer.parseInt(hikakuStr[0]);\n\t\tint b = Integer.parseInt(hikakuStr[1]);\n\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double) a / b;\n\n\t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%.8f\", f));\n\t}\n\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n\tpublic static void main(String[] args) throws Exception {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = br.readLine();\n\t\tString[] hikakuStr = line.split(\"[\\\\s]+\");\n\t\t// TODO ?????????????????????????????????????????????\n\t\tint a = Integer.parseInt(hikakuStr[0]);\n\t\tint b = Integer.parseInt(hikakuStr[1]);\n\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double) a / b;\n\n\t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%.8f\", f));\n\t}\n\n}", "Main", "public static void main(String[] args) throws Exception {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = br.readLine();\n\t\tString[] hikakuStr = line.split(\"[\\\\s]+\");\n\t\t// TODO ?????????????????????????????????????????????\n\t\tint a = Integer.parseInt(hikakuStr[0]);\n\t\tint b = Integer.parseInt(hikakuStr[1]);\n\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double) a / b;\n\n\t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%.8f\", f));\n\t}", "main", "{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = br.readLine();\n\t\tString[] hikakuStr = line.split(\"[\\\\s]+\");\n\t\t// TODO ?????????????????????????????????????????????\n\t\tint a = Integer.parseInt(hikakuStr[0]);\n\t\tint b = Integer.parseInt(hikakuStr[1]);\n\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double) a / b;\n\n\t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%.8f\", f));\n\t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String line = br.readLine();", "line", "br.readLine()", "br.readLine", "br", "String[] hikakuStr = line.split(\"[\\\\s]+\");", "hikakuStr", "line.split(\"[\\\\s]+\")", "line.split", "line", "\"[\\\\s]+\"", "int a = Integer.parseInt(hikakuStr[0]);", "a", "Integer.parseInt(hikakuStr[0])", "Integer.parseInt", "Integer", "hikakuStr[0]", "hikakuStr", "0", "int b = Integer.parseInt(hikakuStr[1]);", "b", "Integer.parseInt(hikakuStr[1])", "Integer.parseInt", "Integer", "hikakuStr[1]", "hikakuStr", "1", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = (double) a / b;", "f", "(double) a / b", "(double) a", "b", "System.out.println(d + \" \" + r + \" \" + String.format(\"%.8f\", f))", "System.out.println", "System.out", "System", "System.out", "d + \" \" + r + \" \" + String.format(\"%.8f\", f)", "\" \"", "r", "d + \" \" + r + \" \" + String.format(\"%.8f\", f)", "d", "\" \"", "r", "\" \"", "String.format(\"%.8f\", f)", "String.format", "String", "\"%.8f\"", "f", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) throws Exception {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = br.readLine();\n\t\tString[] hikakuStr = line.split(\"[\\\\s]+\");\n\t\t// TODO ?????????????????????????????????????????????\n\t\tint a = Integer.parseInt(hikakuStr[0]);\n\t\tint b = Integer.parseInt(hikakuStr[1]);\n\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double) a / b;\n\n\t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%.8f\", f));\n\t}\n\n}", "public class Main {\n\tpublic static void main(String[] args) throws Exception {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = br.readLine();\n\t\tString[] hikakuStr = line.split(\"[\\\\s]+\");\n\t\t// TODO ?????????????????????????????????????????????\n\t\tint a = Integer.parseInt(hikakuStr[0]);\n\t\tint b = Integer.parseInt(hikakuStr[1]);\n\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double) a / b;\n\n\t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%.8f\", f));\n\t}\n\n}", "Main" ]
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line = br.readLine(); String[] hikakuStr = line.split("[\\s]+"); // TODO ????????????????????????????????????????????? int a = Integer.parseInt(hikakuStr[0]); int b = Integer.parseInt(hikakuStr[1]); int d = a / b; int r = a % b; double f = (double) a / b; System.out.println(d + " " + r + " " + String.format("%.8f", f)); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 17, 41, 13, 17, 41, 13, 17, 41, 13, 17, 41, 13, 17, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 17, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 11, 18 ], [ 18, 19 ], [ 18, 20 ], [ 11, 21 ], [ 21, 22 ], [ 21, 23 ], [ 11, 24 ], [ 24, 25 ], [ 24, 26 ], [ 11, 27 ], [ 27, 28 ], [ 27, 29 ], [ 11, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 11, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 38, 39 ], [ 11, 40 ], [ 40, 41 ], [ 40, 42 ], [ 42, 43 ], [ 42, 44 ], [ 11, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 47, 49 ], [ 11, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 52, 54 ], [ 11, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 55, 60 ], [ 63, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 62, 66 ], [ 61, 67 ], [ 63, 68 ], [ 68, 69 ], [ 69, 70 ], [ 68, 71 ], [ 68, 72 ], [ 9, 73 ], [ 73, 74 ] ]
[ "// ITP1_4\n\nimport java.util.Scanner;\nimport java.io.*;\n\nclass Main\n{\n\tpublic static void main ( String[] args ) {\n\t\tScanner sc = new Scanner ( System.in );\n\n\t\tdouble a = 0.0;\n\t\tdouble b = 0.0;\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0.0;\n\n\t\ta = sc.nextInt ();\n\t\tb = sc.nextInt ();\n\t\t\n\t\td = ( int )a / ( int )b;\n\t\tr = ( int )a % ( int )b;\n\t\tf = a / b;\n\n\t\tSystem.out.println ( d + \" \" + r + \" \" + String.format ( \"%7f\", f ) );\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "import java.io.*;", "io.*", "java", "class Main\n{\n\tpublic static void main ( String[] args ) {\n\t\tScanner sc = new Scanner ( System.in );\n\n\t\tdouble a = 0.0;\n\t\tdouble b = 0.0;\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0.0;\n\n\t\ta = sc.nextInt ();\n\t\tb = sc.nextInt ();\n\t\t\n\t\td = ( int )a / ( int )b;\n\t\tr = ( int )a % ( int )b;\n\t\tf = a / b;\n\n\t\tSystem.out.println ( d + \" \" + r + \" \" + String.format ( \"%7f\", f ) );\n\t}\n}", "Main", "public static void main ( String[] args ) {\n\t\tScanner sc = new Scanner ( System.in );\n\n\t\tdouble a = 0.0;\n\t\tdouble b = 0.0;\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0.0;\n\n\t\ta = sc.nextInt ();\n\t\tb = sc.nextInt ();\n\t\t\n\t\td = ( int )a / ( int )b;\n\t\tr = ( int )a % ( int )b;\n\t\tf = a / b;\n\n\t\tSystem.out.println ( d + \" \" + r + \" \" + String.format ( \"%7f\", f ) );\n\t}", "main", "{\n\t\tScanner sc = new Scanner ( System.in );\n\n\t\tdouble a = 0.0;\n\t\tdouble b = 0.0;\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0.0;\n\n\t\ta = sc.nextInt ();\n\t\tb = sc.nextInt ();\n\t\t\n\t\td = ( int )a / ( int )b;\n\t\tr = ( int )a % ( int )b;\n\t\tf = a / b;\n\n\t\tSystem.out.println ( d + \" \" + r + \" \" + String.format ( \"%7f\", f ) );\n\t}", "Scanner sc = new Scanner ( System.in );", "sc", "new Scanner ( System.in )", "double a = 0.0;", "a", "0.0", "double b = 0.0;", "b", "0.0", "int d = 0;", "d", "0", "int r = 0;", "r", "0", "double f = 0.0;", "f", "0.0", "a = sc.nextInt ()", "a", "sc.nextInt ()", "sc.nextInt", "sc", "b = sc.nextInt ()", "b", "sc.nextInt ()", "sc.nextInt", "sc", "d = ( int )a / ( int )b", "d", "( int )a / ( int )b", "( int )a", "( int )b", "r = ( int )a % ( int )b", "r", "( int )a % ( int )b", "( int )a", "( int )b", "f = a / b", "f", "a / b", "a", "b", "System.out.println ( d + \" \" + r + \" \" + String.format ( \"%7f\", f ) )", "System.out.println", "System.out", "System", "System.out", "d + \" \" + r + \" \" + String.format ( \"%7f\", f )", "\" \"", "r", "d + \" \" + r + \" \" + String.format ( \"%7f\", f )", "d", "\" \"", "r", "\" \"", "String.format ( \"%7f\", f )", "String.format", "String", "\"%7f\"", "f", "String[] args", "args" ]
// ITP1_4 import java.util.Scanner; import java.io.*; class Main { public static void main ( String[] args ) { Scanner sc = new Scanner ( System.in ); double a = 0.0; double b = 0.0; int d = 0; int r = 0; double f = 0.0; a = sc.nextInt (); b = sc.nextInt (); d = ( int )a / ( int )b; r = ( int )a % ( int )b; f = a / b; System.out.println ( d + " " + r + " " + String.format ( "%7f", f ) ); } }
[ 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, 41, 13, 41, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 41, 13, 20, 0, 13, 4, 18, 13, 17, 18, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 75, 8 ], [ 75, 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 ], [ 11, 27 ], [ 27, 28 ], [ 11, 29 ], [ 29, 30 ], [ 11, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 33, 35 ], [ 11, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 38, 40 ], [ 11, 41 ], [ 41, 42 ], [ 41, 43 ], [ 43, 44 ], [ 43, 45 ], [ 11, 46 ], [ 46, 47 ], [ 46, 48 ], [ 11, 49 ], [ 49, 50 ], [ 49, 51 ], [ 51, 52 ], [ 52, 53 ], [ 51, 54 ], [ 51, 55 ], [ 55, 56 ], [ 55, 57 ], [ 11, 58 ], [ 58, 59 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 58, 63 ], [ 66, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 66, 68 ], [ 65, 69 ], [ 64, 70 ], [ 66, 71 ], [ 9, 72 ], [ 72, 73 ], [ 0, 74 ], [ 74, 75 ], [ 74, 76 ] ]
[ "import java.util.Scanner;\nimport java.math.BigDecimal;\n\npublic class Main{\n public static void main(String argv[])\n {\n\tScanner scan = new Scanner(System.in);\n\tint a = scan.nextInt();\n\tint b = scan.nextInt();\n\tint d,r;\n\tdouble f;\n\t\t\n\td = a / b;\n\tr = a % b;\n\tf = (double)a / b;\n\t\n\tBigDecimal x = new BigDecimal(f);\n\tx = x.setScale(6,BigDecimal.ROUND_HALF_UP);\n\tSystem.out.println(d+\" \"+r+\" \"+x);\n\n\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "import java.math.BigDecimal;", "BigDecimal", "java.math", "public class Main{\n public static void main(String argv[])\n {\n\tScanner scan = new Scanner(System.in);\n\tint a = scan.nextInt();\n\tint b = scan.nextInt();\n\tint d,r;\n\tdouble f;\n\t\t\n\td = a / b;\n\tr = a % b;\n\tf = (double)a / b;\n\t\n\tBigDecimal x = new BigDecimal(f);\n\tx = x.setScale(6,BigDecimal.ROUND_HALF_UP);\n\tSystem.out.println(d+\" \"+r+\" \"+x);\n\n\n }\n}", "Main", "public static void main(String argv[])\n {\n\tScanner scan = new Scanner(System.in);\n\tint a = scan.nextInt();\n\tint b = scan.nextInt();\n\tint d,r;\n\tdouble f;\n\t\t\n\td = a / b;\n\tr = a % b;\n\tf = (double)a / b;\n\t\n\tBigDecimal x = new BigDecimal(f);\n\tx = x.setScale(6,BigDecimal.ROUND_HALF_UP);\n\tSystem.out.println(d+\" \"+r+\" \"+x);\n\n\n }", "main", "{\n\tScanner scan = new Scanner(System.in);\n\tint a = scan.nextInt();\n\tint b = scan.nextInt();\n\tint d,r;\n\tdouble f;\n\t\t\n\td = a / b;\n\tr = a % b;\n\tf = (double)a / b;\n\t\n\tBigDecimal x = new BigDecimal(f);\n\tx = x.setScale(6,BigDecimal.ROUND_HALF_UP);\n\tSystem.out.println(d+\" \"+r+\" \"+x);\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 d", "d", "r;", "r", "double f;", "f", "d = a / b", "d", "a / b", "a", "b", "r = a % b", "r", "a % b", "a", "b", "f = (double)a / b", "f", "(double)a / b", "(double)a", "b", "BigDecimal x = new BigDecimal(f);", "x", "new BigDecimal(f)", "x = x.setScale(6,BigDecimal.ROUND_HALF_UP)", "x", "x.setScale(6,BigDecimal.ROUND_HALF_UP)", "x.setScale", "x", "6", "BigDecimal.ROUND_HALF_UP", "BigDecimal", "BigDecimal.ROUND_HALF_UP", "System.out.println(d+\" \"+r+\" \"+x)", "System.out.println", "System.out", "System", "System.out", "d+\" \"+r+\" \"+x", "\" \"", "r", "d+\" \"+r+\" \"+x", "d", "\" \"", "r", "\" \"", "x", "String argv[]", "argv", "public class Main{\n public static void main(String argv[])\n {\n\tScanner scan = new Scanner(System.in);\n\tint a = scan.nextInt();\n\tint b = scan.nextInt();\n\tint d,r;\n\tdouble f;\n\t\t\n\td = a / b;\n\tr = a % b;\n\tf = (double)a / b;\n\t\n\tBigDecimal x = new BigDecimal(f);\n\tx = x.setScale(6,BigDecimal.ROUND_HALF_UP);\n\tSystem.out.println(d+\" \"+r+\" \"+x);\n\n\n }\n}", "public class Main{\n public static void main(String argv[])\n {\n\tScanner scan = new Scanner(System.in);\n\tint a = scan.nextInt();\n\tint b = scan.nextInt();\n\tint d,r;\n\tdouble f;\n\t\t\n\td = a / b;\n\tr = a % b;\n\tf = (double)a / b;\n\t\n\tBigDecimal x = new BigDecimal(f);\n\tx = x.setScale(6,BigDecimal.ROUND_HALF_UP);\n\tSystem.out.println(d+\" \"+r+\" \"+x);\n\n\n }\n}", "Main" ]
import java.util.Scanner; import java.math.BigDecimal; public class Main{ public static void main(String argv[]) { Scanner scan = new Scanner(System.in); int a = scan.nextInt(); int b = scan.nextInt(); int d,r; double f; d = a / b; r = a % b; f = (double)a / b; BigDecimal x = new BigDecimal(f); x = x.setScale(6,BigDecimal.ROUND_HALF_UP); System.out.println(d+" "+r+" "+x); } }
[ 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, 4, 18, 18, 13, 13, 17, 2, 13, 13, 2, 13, 13, 2, 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 ], [ 60, 11 ], [ 60, 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 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 42, 47 ], [ 42, 48 ], [ 48, 49 ], [ 48, 50 ], [ 42, 51 ], [ 51, 52 ], [ 51, 53 ], [ 42, 54 ], [ 54, 55 ], [ 54, 56 ], [ 12, 57 ], [ 57, 58 ], [ 0, 59 ], [ 59, 60 ], [ 59, 61 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\tpublic static void main(String args[]) throws IOException{\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\tString data[] = reader.readLine().split(\" \");\n\t\tint a= Integer.parseInt(data[0]);\n\t\tint b= Integer.parseInt(data[1]);\n\t\tSystem.out.printf(\"%d %d %6f\", a/b,a%b,(double)a/b);\n\t}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n\tpublic static void main(String args[]) throws IOException{\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\tString data[] = reader.readLine().split(\" \");\n\t\tint a= Integer.parseInt(data[0]);\n\t\tint b= Integer.parseInt(data[1]);\n\t\tSystem.out.printf(\"%d %d %6f\", a/b,a%b,(double)a/b);\n\t}\n}", "Main", "public static void main(String args[]) throws IOException{\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\tString data[] = reader.readLine().split(\" \");\n\t\tint a= Integer.parseInt(data[0]);\n\t\tint b= Integer.parseInt(data[1]);\n\t\tSystem.out.printf(\"%d %d %6f\", a/b,a%b,(double)a/b);\n\t}", "main", "{\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\tString data[] = reader.readLine().split(\" \");\n\t\tint a= Integer.parseInt(data[0]);\n\t\tint b= Integer.parseInt(data[1]);\n\t\tSystem.out.printf(\"%d %d %6f\", a/b,a%b,(double)a/b);\n\t}", "BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));", "reader", "new BufferedReader(new InputStreamReader(System.in))", "String data[] = reader.readLine().split(\" \");", "data", "reader.readLine().split(\" \")", "reader.readLine().split", "reader.readLine()", "reader.readLine", "reader", "\" \"", "int a= Integer.parseInt(data[0]);", "a", "Integer.parseInt(data[0])", "Integer.parseInt", "Integer", "data[0]", "data", "0", "int b= Integer.parseInt(data[1]);", "b", "Integer.parseInt(data[1])", "Integer.parseInt", "Integer", "data[1]", "data", "1", "System.out.printf(\"%d %d %6f\", a/b,a%b,(double)a/b)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %6f\"", "a/b", "a", "b", "a%b", "a", "b", "(double)a/b", "(double)a", "b", "String args[]", "args", "public class Main {\n\tpublic static void main(String args[]) throws IOException{\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\tString data[] = reader.readLine().split(\" \");\n\t\tint a= Integer.parseInt(data[0]);\n\t\tint b= Integer.parseInt(data[1]);\n\t\tSystem.out.printf(\"%d %d %6f\", a/b,a%b,(double)a/b);\n\t}\n}", "public class Main {\n\tpublic static void main(String args[]) throws IOException{\n\t\tBufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\t\tString data[] = reader.readLine().split(\" \");\n\t\tint a= Integer.parseInt(data[0]);\n\t\tint b= Integer.parseInt(data[1]);\n\t\tSystem.out.printf(\"%d %d %6f\", a/b,a%b,(double)a/b);\n\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String args[]) throws IOException{ BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); String data[] = reader.readLine().split(" "); int a= Integer.parseInt(data[0]); int b= Integer.parseInt(data[1]); System.out.printf("%d %d %6f", a/b,a%b,(double)a/b); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 4, 18, 13, 13, 41, 13, 4, 18, 13, 13, 41, 13, 4, 18, 13, 13, 4, 18, 18, 13, 13, 17, 13, 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 ], [ 19, 22 ], [ 8, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 25, 28 ], [ 28, 29 ], [ 28, 30 ], [ 8, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 34, 35 ], [ 33, 36 ], [ 36, 37 ], [ 36, 38 ], [ 8, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 41, 43 ], [ 8, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 46, 48 ], [ 8, 49 ], [ 49, 50 ], [ 49, 51 ], [ 51, 52 ], [ 51, 53 ], [ 8, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 8, 60 ], [ 60, 61 ], [ 60, 62 ], [ 62, 63 ], [ 63, 64 ], [ 62, 65 ], [ 8, 66 ], [ 66, 67 ], [ 66, 68 ], [ 68, 69 ], [ 69, 70 ], [ 68, 71 ], [ 8, 72 ], [ 72, 73 ], [ 73, 74 ], [ 74, 75 ], [ 74, 76 ], [ 72, 77 ], [ 72, 78 ], [ 72, 79 ], [ 72, 80 ], [ 6, 81 ], [ 81, 82 ] ]
[ "import java.io.*;\n\nclass Main{\n\n public static void main(String[] args)throws IOException{\n\n\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\tString strInput = br.readLine();\n\tString[] input = strInput.split(\" \");\n\tint a = Integer.parseInt(input[0]);\n\tint b = Integer.parseInt(input[1]);\n\n\tint d = a / b;\n\tint r = a % b;\n\tdouble f = (double) a / b;\n\n\tString rd = String.valueOf(d);\n\tString rr = String.valueOf(r);\n\tString rf = String.valueOf(f);\n\n\tSystem.out.printf(\"%d %d %f\\n\", d, r, f);\n\n }\n\n}", "import java.io.*;", "io.*", "java", "class Main{\n\n public static void main(String[] args)throws IOException{\n\n\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\tString strInput = br.readLine();\n\tString[] input = strInput.split(\" \");\n\tint a = Integer.parseInt(input[0]);\n\tint b = Integer.parseInt(input[1]);\n\n\tint d = a / b;\n\tint r = a % b;\n\tdouble f = (double) a / b;\n\n\tString rd = String.valueOf(d);\n\tString rr = String.valueOf(r);\n\tString rf = String.valueOf(f);\n\n\tSystem.out.printf(\"%d %d %f\\n\", d, r, f);\n\n }\n\n}", "Main", "public static void main(String[] args)throws IOException{\n\n\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\tString strInput = br.readLine();\n\tString[] input = strInput.split(\" \");\n\tint a = Integer.parseInt(input[0]);\n\tint b = Integer.parseInt(input[1]);\n\n\tint d = a / b;\n\tint r = a % b;\n\tdouble f = (double) a / b;\n\n\tString rd = String.valueOf(d);\n\tString rr = String.valueOf(r);\n\tString rf = String.valueOf(f);\n\n\tSystem.out.printf(\"%d %d %f\\n\", d, r, f);\n\n }", "main", "{\n\n\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\tString strInput = br.readLine();\n\tString[] input = strInput.split(\" \");\n\tint a = Integer.parseInt(input[0]);\n\tint b = Integer.parseInt(input[1]);\n\n\tint d = a / b;\n\tint r = a % b;\n\tdouble f = (double) a / b;\n\n\tString rd = String.valueOf(d);\n\tString rr = String.valueOf(r);\n\tString rf = String.valueOf(f);\n\n\tSystem.out.printf(\"%d %d %f\\n\", d, r, f);\n\n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String strInput = br.readLine();", "strInput", "br.readLine()", "br.readLine", "br", "String[] input = strInput.split(\" \");", "input", "strInput.split(\" \")", "strInput.split", "strInput", "\" \"", "int a = Integer.parseInt(input[0]);", "a", "Integer.parseInt(input[0])", "Integer.parseInt", "Integer", "input[0]", "input", "0", "int b = Integer.parseInt(input[1]);", "b", "Integer.parseInt(input[1])", "Integer.parseInt", "Integer", "input[1]", "input", "1", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = (double) a / b;", "f", "(double) a / b", "(double) a", "b", "String rd = String.valueOf(d);", "rd", "String.valueOf(d)", "String.valueOf", "String", "d", "String rr = String.valueOf(r);", "rr", "String.valueOf(r)", "String.valueOf", "String", "r", "String rf = String.valueOf(f);", "rf", "String.valueOf(f)", "String.valueOf", "String", "f", "System.out.printf(\"%d %d %f\\n\", d, r, f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\\n\"", "d", "r", "f", "String[] args", "args" ]
import java.io.*; class Main{ public static void main(String[] args)throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String strInput = br.readLine(); String[] input = strInput.split(" "); int a = Integer.parseInt(input[0]); int b = Integer.parseInt(input[1]); int d = a / b; int r = a % b; double f = (double) a / b; String rd = String.valueOf(d); String rr = String.valueOf(r); String rf = String.valueOf(f); System.out.printf("%d %d %f\n", d, r, f); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 41, 13, 17, 42, 2, 0, 13, 4, 18, 13, 17, 30, 41, 13, 20, 17, 0, 18, 13, 17, 4, 18, 13, 18, 4, 18, 13, 17, 17, 0, 18, 13, 17, 4, 18, 13, 18, 4, 18, 13, 17, 17, 41, 13, 4, 18, 13, 17, 2, 2, 17, 18, 13, 17, 18, 13, 17, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 18, 13, 17, 18, 13, 17, 17, 2, 18, 13, 17, 18, 13, 17, 17, 13, 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 ], [ 107, 11 ], [ 107, 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 ], [ 24, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 28, 29 ], [ 24, 30 ], [ 23, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 31, 36 ], [ 36, 37 ], [ 37, 38 ], [ 37, 39 ], [ 36, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 44, 47 ], [ 43, 48 ], [ 31, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 49, 53 ], [ 53, 54 ], [ 54, 55 ], [ 53, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 57, 60 ], [ 56, 61 ], [ 31, 62 ], [ 62, 63 ], [ 62, 64 ], [ 64, 65 ], [ 65, 66 ], [ 64, 67 ], [ 64, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 71, 72 ], [ 71, 73 ], [ 68, 74 ], [ 74, 75 ], [ 74, 76 ], [ 31, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 79, 81 ], [ 77, 82 ], [ 85, 83 ], [ 83, 84 ], [ 94, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 86, 90 ], [ 90, 91 ], [ 90, 92 ], [ 85, 93 ], [ 94, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 94, 98 ], [ 98, 99 ], [ 98, 100 ], [ 83, 101 ], [ 85, 102 ], [ 31, 103 ], [ 12, 104 ], [ 104, 105 ], [ 0, 106 ], [ 106, 107 ], [ 106, 108 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n public static void main(String[] args) throws IOException {\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n String readStr;\n int c = 0;\n while ((readStr = reader.readLine()) != null) {\n int[] list = new int[3];\n list[0] = Integer.parseInt(readStr.split(\" \")[0]);\n list[1] = Integer.parseInt(readStr.split(\" \")[1]);\n String sssss = String.format(\"%.6f\", (1.0 * list[0] / list[1]));\n System.out.println((int)(list[0] / list[1]) + \" \" + (list[0] % list[1]) + \" \" + sssss);\n break;\n }\n }\n\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n\n public static void main(String[] args) throws IOException {\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n String readStr;\n int c = 0;\n while ((readStr = reader.readLine()) != null) {\n int[] list = new int[3];\n list[0] = Integer.parseInt(readStr.split(\" \")[0]);\n list[1] = Integer.parseInt(readStr.split(\" \")[1]);\n String sssss = String.format(\"%.6f\", (1.0 * list[0] / list[1]));\n System.out.println((int)(list[0] / list[1]) + \" \" + (list[0] % list[1]) + \" \" + sssss);\n break;\n }\n }\n\n}", "Main", "public static void main(String[] args) throws IOException {\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n String readStr;\n int c = 0;\n while ((readStr = reader.readLine()) != null) {\n int[] list = new int[3];\n list[0] = Integer.parseInt(readStr.split(\" \")[0]);\n list[1] = Integer.parseInt(readStr.split(\" \")[1]);\n String sssss = String.format(\"%.6f\", (1.0 * list[0] / list[1]));\n System.out.println((int)(list[0] / list[1]) + \" \" + (list[0] % list[1]) + \" \" + sssss);\n break;\n }\n }", "main", "{\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n String readStr;\n int c = 0;\n while ((readStr = reader.readLine()) != null) {\n int[] list = new int[3];\n list[0] = Integer.parseInt(readStr.split(\" \")[0]);\n list[1] = Integer.parseInt(readStr.split(\" \")[1]);\n String sssss = String.format(\"%.6f\", (1.0 * list[0] / list[1]));\n System.out.println((int)(list[0] / list[1]) + \" \" + (list[0] % list[1]) + \" \" + sssss);\n break;\n }\n }", "BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));", "reader", "new BufferedReader(new InputStreamReader(System.in))", "String readStr;", "readStr", "int c = 0;", "c", "0", "while ((readStr = reader.readLine()) != null) {\n int[] list = new int[3];\n list[0] = Integer.parseInt(readStr.split(\" \")[0]);\n list[1] = Integer.parseInt(readStr.split(\" \")[1]);\n String sssss = String.format(\"%.6f\", (1.0 * list[0] / list[1]));\n System.out.println((int)(list[0] / list[1]) + \" \" + (list[0] % list[1]) + \" \" + sssss);\n break;\n }", "(readStr = reader.readLine()) != null", "(readStr = reader.readLine())", "readStr", "reader.readLine()", "reader.readLine", "reader", "null", "{\n int[] list = new int[3];\n list[0] = Integer.parseInt(readStr.split(\" \")[0]);\n list[1] = Integer.parseInt(readStr.split(\" \")[1]);\n String sssss = String.format(\"%.6f\", (1.0 * list[0] / list[1]));\n System.out.println((int)(list[0] / list[1]) + \" \" + (list[0] % list[1]) + \" \" + sssss);\n break;\n }", "int[] list = new int[3];", "list", "new int[3]", "3", "list[0] = Integer.parseInt(readStr.split(\" \")[0])", "list[0]", "list", "0", "Integer.parseInt(readStr.split(\" \")[0])", "Integer.parseInt", "Integer", "readStr.split(\" \")[0]", "readStr.split(\" \")", "readStr.split", "readStr", "\" \"", "0", "list[1] = Integer.parseInt(readStr.split(\" \")[1])", "list[1]", "list", "1", "Integer.parseInt(readStr.split(\" \")[1])", "Integer.parseInt", "Integer", "readStr.split(\" \")[1]", "readStr.split(\" \")", "readStr.split", "readStr", "\" \"", "1", "String sssss = String.format(\"%.6f\", (1.0 * list[0] / list[1]));", "sssss", "String.format(\"%.6f\", (1.0 * list[0] / list[1]))", "String.format", "String", "\"%.6f\"", "(1.0 * list[0] / list[1])", "1.0 * list[0]", "1.0", "list[0]", "list", "0", "list[1]", "list", "1", "System.out.println((int)(list[0] / list[1]) + \" \" + (list[0] % list[1]) + \" \" + sssss)", "System.out.println", "System.out", "System", "System.out", "(int)(list[0] / list[1]) + \" \" + (list[0] % list[1]) + \" \" + sssss", "\" \"", "(list[0] % list[1])", "(int)(list[0] / list[1]) + \" \" + (list[0] % list[1]) + \" \" + sssss", "(int)(list[0] / list[1])", "list[0]", "list", "0", "list[1]", "list", "1", "\" \"", "(list[0] % list[1])", "list[0]", "list", "0", "list[1]", "list", "1", "\" \"", "sssss", "break;", "String[] args", "args", "public class Main {\n\n public static void main(String[] args) throws IOException {\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n String readStr;\n int c = 0;\n while ((readStr = reader.readLine()) != null) {\n int[] list = new int[3];\n list[0] = Integer.parseInt(readStr.split(\" \")[0]);\n list[1] = Integer.parseInt(readStr.split(\" \")[1]);\n String sssss = String.format(\"%.6f\", (1.0 * list[0] / list[1]));\n System.out.println((int)(list[0] / list[1]) + \" \" + (list[0] % list[1]) + \" \" + sssss);\n break;\n }\n }\n\n}", "public class Main {\n\n public static void main(String[] args) throws IOException {\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n String readStr;\n int c = 0;\n while ((readStr = reader.readLine()) != null) {\n int[] list = new int[3];\n list[0] = Integer.parseInt(readStr.split(\" \")[0]);\n list[1] = Integer.parseInt(readStr.split(\" \")[1]);\n String sssss = String.format(\"%.6f\", (1.0 * list[0] / list[1]));\n System.out.println((int)(list[0] / list[1]) + \" \" + (list[0] % list[1]) + \" \" + sssss);\n break;\n }\n }\n\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); String readStr; int c = 0; while ((readStr = reader.readLine()) != null) { int[] list = new int[3]; list[0] = Integer.parseInt(readStr.split(" ")[0]); list[1] = Integer.parseInt(readStr.split(" ")[1]); String sssss = String.format("%.6f", (1.0 * list[0] / list[1])); System.out.println((int)(list[0] / list[1]) + " " + (list[0] % list[1]) + " " + sssss); break; } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 41, 13, 12, 13, 30, 41, 13, 20, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 12, 13, 30, 20, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 7, 11 ], [ 11, 12 ], [ 7, 13 ], [ 13, 14 ], [ 13, 15 ], [ 15, 16 ], [ 16, 17 ], [ 16, 18 ], [ 15, 19 ], [ 19, 20 ], [ 19, 21 ], [ 21, 22 ], [ 22, 23 ], [ 15, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 15, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 31, 33 ], [ 15, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 36, 38 ], [ 15, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 41, 43 ], [ 15, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 44, 49 ], [ 44, 50 ], [ 44, 51 ], [ 44, 52 ], [ 7, 53 ], [ 53, 54 ], [ 53, 55 ], [ 55, 56 ], [ 53, 57 ], [ 57, 58 ] ]
[ "import java.util.*;\nimport java.io.*;\n\nclass Main{\n\n\tint a;\n\tint b;\n\n\tpublic Main(){\n\t\tScanner scan = new Scanner(System.in);\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\n\t\tint x = a / b;\n\t\tint y = a % b;\n\t\tdouble z = (double)a / (double)b;\n\n\t\tSystem.out.printf(\"%d %d %.5f\", x, y, z);\n\t}\n\tpublic static void main(String[] args){\n\t\tnew Main();\n\t}\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "class Main{\n\n\tint a;\n\tint b;\n\n\tpublic Main(){\n\t\tScanner scan = new Scanner(System.in);\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\n\t\tint x = a / b;\n\t\tint y = a % b;\n\t\tdouble z = (double)a / (double)b;\n\n\t\tSystem.out.printf(\"%d %d %.5f\", x, y, z);\n\t}\n\tpublic static void main(String[] args){\n\t\tnew Main();\n\t}\n}", "Main", "int a;", "a", "int b;", "b", "public Main(){\n\t\tScanner scan = new Scanner(System.in);\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\n\t\tint x = a / b;\n\t\tint y = a % b;\n\t\tdouble z = (double)a / (double)b;\n\n\t\tSystem.out.printf(\"%d %d %.5f\", x, y, z);\n\t}", "Main", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\n\t\tint x = a / b;\n\t\tint y = a % b;\n\t\tdouble z = (double)a / (double)b;\n\n\t\tSystem.out.printf(\"%d %d %.5f\", x, y, z);\n\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "a = scan.nextInt()", "a", "scan.nextInt()", "scan.nextInt", "scan", "b = scan.nextInt()", "b", "scan.nextInt()", "scan.nextInt", "scan", "int x = a / b;", "x", "a / b", "a", "b", "int y = a % b;", "y", "a % b", "a", "b", "double z = (double)a / (double)b;", "z", "(double)a / (double)b", "(double)a", "(double)b", "System.out.printf(\"%d %d %.5f\", x, y, z)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %.5f\"", "x", "y", "z", "public static void main(String[] args){\n\t\tnew Main();\n\t}", "main", "{\n\t\tnew Main();\n\t}", "new Main()", "String[] args", "args" ]
import java.util.*; import java.io.*; class Main{ int a; int b; public Main(){ Scanner scan = new Scanner(System.in); a = scan.nextInt(); b = scan.nextInt(); int x = a / b; int y = a % b; double z = (double)a / (double)b; System.out.printf("%d %d %.5f", x, y, z); } public static void main(String[] args){ new Main(); } }
[ 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 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 ], [ 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 ], [ 30, 32 ], [ 8, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 35, 37 ], [ 8, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 40, 42 ], [ 8, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 43, 48 ], [ 43, 49 ], [ 43, 50 ], [ 43, 51 ], [ 6, 52 ], [ 52, 53 ] ]
[ "import java.util.*;\n\nclass 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 d = a / b;\n int r = a % b;\n double f = (double)a / b;\n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\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 a = Integer.parseInt(sc.next());\n int b = Integer.parseInt(sc.next());\n int d = a / b;\n int r = a % b;\n double f = (double)a / b;\n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\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 d = a / b;\n int r = a % b;\n double f = (double)a / b;\n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\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 d = a / b;\n int r = a % b;\n double f = (double)a / b;\n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\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 d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = (double)a / b;", "f", "(double)a / b", "(double)a", "b", "System.out.printf(\"%d %d %.5f\\n\", d, r, f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %.5f\\n\"", "d", "r", "f", "String[] args", "args" ]
import java.util.*; class 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 d = a / b; int r = a % b; double f = (double)a / b; System.out.printf("%d %d %.5f\n", d, r, f); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 17, 41, 13, 17, 41, 13, 17, 41, 13, 13, 41, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 41, 13, 20, 0, 13, 4, 18, 13, 17, 18, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 87, 11 ], [ 87, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 14, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 14, 28 ], [ 28, 29 ], [ 28, 30 ], [ 14, 31 ], [ 31, 32 ], [ 31, 33 ], [ 14, 34 ], [ 34, 35 ], [ 34, 36 ], [ 14, 37 ], [ 37, 38 ], [ 37, 39 ], [ 14, 40 ], [ 40, 41 ], [ 40, 42 ], [ 14, 43 ], [ 43, 44 ], [ 43, 45 ], [ 45, 46 ], [ 45, 47 ], [ 14, 48 ], [ 48, 49 ], [ 48, 50 ], [ 50, 51 ], [ 50, 52 ], [ 14, 53 ], [ 53, 54 ], [ 53, 55 ], [ 55, 56 ], [ 55, 57 ], [ 14, 58 ], [ 58, 59 ], [ 58, 60 ], [ 14, 61 ], [ 61, 62 ], [ 61, 63 ], [ 63, 64 ], [ 64, 65 ], [ 63, 66 ], [ 63, 67 ], [ 67, 68 ], [ 67, 69 ], [ 14, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 70, 75 ], [ 78, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 77, 81 ], [ 76, 82 ], [ 78, 83 ], [ 12, 84 ], [ 84, 85 ], [ 0, 86 ], [ 86, 87 ], [ 86, 88 ] ]
[ "import java.io.IOException;\nimport java.math.BigDecimal;\nimport java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t//キーボード入力メソッド\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0;\n\t\tdouble double_a = a;\n\t\tdouble double_b = b;\n\n\t\t//処理\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf = double_a / double_b;\n\n\t\t//fの小数点以下の桁数を指定(5桁)\n\t\tBigDecimal x = new BigDecimal(f);\n\t\tx = x.setScale(5, BigDecimal.ROUND_HALF_UP);\n\n\t\t//出力\n\t\tSystem.out.println( d + \" \" + r + \" \" + x );\n\t\t//System.out.print(d + \" \" + r + \" \");\n\t\t//System.out.printf(\"%f\\n\",f);\n\n\t}\n\n}\n", "import java.io.IOException;", "IOException", "java.io", "import java.math.BigDecimal;", "BigDecimal", "java.math", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t//キーボード入力メソッド\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0;\n\t\tdouble double_a = a;\n\t\tdouble double_b = b;\n\n\t\t//処理\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf = double_a / double_b;\n\n\t\t//fの小数点以下の桁数を指定(5桁)\n\t\tBigDecimal x = new BigDecimal(f);\n\t\tx = x.setScale(5, BigDecimal.ROUND_HALF_UP);\n\n\t\t//出力\n\t\tSystem.out.println( d + \" \" + r + \" \" + x );\n\t\t//System.out.print(d + \" \" + r + \" \");\n\t\t//System.out.printf(\"%f\\n\",f);\n\n\t}\n\n}", "Main", "public static void main(String[] args) throws IOException {\n\t\t//キーボード入力メソッド\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0;\n\t\tdouble double_a = a;\n\t\tdouble double_b = b;\n\n\t\t//処理\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf = double_a / double_b;\n\n\t\t//fの小数点以下の桁数を指定(5桁)\n\t\tBigDecimal x = new BigDecimal(f);\n\t\tx = x.setScale(5, BigDecimal.ROUND_HALF_UP);\n\n\t\t//出力\n\t\tSystem.out.println( d + \" \" + r + \" \" + x );\n\t\t//System.out.print(d + \" \" + r + \" \");\n\t\t//System.out.printf(\"%f\\n\",f);\n\n\t}", "main", "{\n\t\t//キーボード入力メソッド\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0;\n\t\tdouble double_a = a;\n\t\tdouble double_b = b;\n\n\t\t//処理\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf = double_a / double_b;\n\n\t\t//fの小数点以下の桁数を指定(5桁)\n\t\tBigDecimal x = new BigDecimal(f);\n\t\tx = x.setScale(5, BigDecimal.ROUND_HALF_UP);\n\n\t\t//出力\n\t\tSystem.out.println( d + \" \" + r + \" \" + x );\n\t\t//System.out.print(d + \" \" + r + \" \");\n\t\t//System.out.printf(\"%f\\n\",f);\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 d = 0;", "d", "0", "int r = 0;", "r", "0", "double f = 0;", "f", "0", "double double_a = a;", "double_a", "a", "double double_b = b;", "double_b", "b", "d = a / b", "d", "a / b", "a", "b", "r = a % b", "r", "a % b", "a", "b", "f = double_a / double_b", "f", "double_a / double_b", "double_a", "double_b", "BigDecimal x = new BigDecimal(f);", "x", "new BigDecimal(f)", "x = x.setScale(5, BigDecimal.ROUND_HALF_UP)", "x", "x.setScale(5, BigDecimal.ROUND_HALF_UP)", "x.setScale", "x", "5", "BigDecimal.ROUND_HALF_UP", "BigDecimal", "BigDecimal.ROUND_HALF_UP", "System.out.println( d + \" \" + r + \" \" + x )", "System.out.println", "System.out", "System", "System.out", "d + \" \" + r + \" \" + x", "\" \"", "r", "d + \" \" + r + \" \" + x", "d", "\" \"", "r", "\" \"", "x", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t//キーボード入力メソッド\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0;\n\t\tdouble double_a = a;\n\t\tdouble double_b = b;\n\n\t\t//処理\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf = double_a / double_b;\n\n\t\t//fの小数点以下の桁数を指定(5桁)\n\t\tBigDecimal x = new BigDecimal(f);\n\t\tx = x.setScale(5, BigDecimal.ROUND_HALF_UP);\n\n\t\t//出力\n\t\tSystem.out.println( d + \" \" + r + \" \" + x );\n\t\t//System.out.print(d + \" \" + r + \" \");\n\t\t//System.out.printf(\"%f\\n\",f);\n\n\t}\n\n}", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\t//キーボード入力メソッド\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0;\n\t\tdouble double_a = a;\n\t\tdouble double_b = b;\n\n\t\t//処理\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf = double_a / double_b;\n\n\t\t//fの小数点以下の桁数を指定(5桁)\n\t\tBigDecimal x = new BigDecimal(f);\n\t\tx = x.setScale(5, BigDecimal.ROUND_HALF_UP);\n\n\t\t//出力\n\t\tSystem.out.println( d + \" \" + r + \" \" + x );\n\t\t//System.out.print(d + \" \" + r + \" \");\n\t\t//System.out.printf(\"%f\\n\",f);\n\n\t}\n\n}", "Main" ]
import java.io.IOException; import java.math.BigDecimal; import java.util.Scanner; public class Main { public static void main(String[] args) throws IOException { //キーボード入力メソッド Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int d = 0; int r = 0; double f = 0; double double_a = a; double double_b = b; //処理 d = a / b; r = a % b; f = double_a / double_b; //fの小数点以下の桁数を指定(5桁) BigDecimal x = new BigDecimal(f); x = x.setScale(5, BigDecimal.ROUND_HALF_UP); //出力 System.out.println( d + " " + r + " " + x ); //System.out.print(d + " " + r + " "); //System.out.printf("%f\n",f); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 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, 4, 18, 18, 13, 13, 17, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 49, 5 ], [ 49, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 29, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 34, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 37, 42 ], [ 37, 43 ], [ 37, 44 ], [ 37, 45 ], [ 6, 46 ], [ 46, 47 ], [ 0, 48 ], [ 48, 49 ], [ 48, 50 ] ]
[ "import java.util.*;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\t\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\t\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double)a / (double)b;\n\t\tSystem.out.printf(\"%d %d %.8f\",d ,r , f);\n\t}\n}", "import java.util.*;", "util.*", "java", "public class Main {\n\tpublic static void main(String[] args) {\n\t\t\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\t\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double)a / (double)b;\n\t\tSystem.out.printf(\"%d %d %.8f\",d ,r , f);\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\t\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\t\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double)a / (double)b;\n\t\tSystem.out.printf(\"%d %d %.8f\",d ,r , f);\n\t}", "main", "{\n\t\t\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\t\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double)a / (double)b;\n\t\tSystem.out.printf(\"%d %d %.8f\",d ,r , f);\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 d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = (double)a / (double)b;", "f", "(double)a / (double)b", "(double)a", "(double)b", "System.out.printf(\"%d %d %.8f\",d ,r , f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %.8f\"", "d", "r", "f", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) {\n\t\t\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\t\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double)a / (double)b;\n\t\tSystem.out.printf(\"%d %d %.8f\",d ,r , f);\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\t\n\t\tScanner sc = new Scanner(System.in);\n\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\t\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = (double)a / (double)b;\n\t\tSystem.out.printf(\"%d %d %.8f\",d ,r , f);\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 d = a / b; int r = a % b; double f = (double)a / (double)b; System.out.printf("%d %d %.8f",d ,r , f); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 2, 2, 13, 13, 17, 4, 18, 18, 13, 13, 2, 2, 13, 13, 17, 4, 18, 18, 13, 13, 17, 2, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 54, 5 ], [ 54, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 27, 31 ], [ 8, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 34, 36 ], [ 32, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 37, 41 ], [ 8, 42 ], [ 42, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 42, 47 ], [ 42, 48 ], [ 48, 49 ], [ 48, 50 ], [ 6, 51 ], [ 51, 52 ], [ 0, 53 ], [ 53, 54 ], [ 53, 55 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner stdIn = new Scanner(System.in);\n\t\t\n\t\tint a = stdIn.nextInt();\n\t\tint b = stdIn.nextInt();\n\t\t\n\t\tSystem.out.print(a/b+\" \");\n\t\tSystem.out.print(a%b+\" \");\n\t\tSystem.out.printf(\"%.5f\",(double)a/b);\n\t}\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner stdIn = new Scanner(System.in);\n\t\t\n\t\tint a = stdIn.nextInt();\n\t\tint b = stdIn.nextInt();\n\t\t\n\t\tSystem.out.print(a/b+\" \");\n\t\tSystem.out.print(a%b+\" \");\n\t\tSystem.out.printf(\"%.5f\",(double)a/b);\n\t}\n\n}", "Main", "public static void main(String[] args)\n\t{\n\t\tScanner stdIn = new Scanner(System.in);\n\t\t\n\t\tint a = stdIn.nextInt();\n\t\tint b = stdIn.nextInt();\n\t\t\n\t\tSystem.out.print(a/b+\" \");\n\t\tSystem.out.print(a%b+\" \");\n\t\tSystem.out.printf(\"%.5f\",(double)a/b);\n\t}", "main", "{\n\t\tScanner stdIn = new Scanner(System.in);\n\t\t\n\t\tint a = stdIn.nextInt();\n\t\tint b = stdIn.nextInt();\n\t\t\n\t\tSystem.out.print(a/b+\" \");\n\t\tSystem.out.print(a%b+\" \");\n\t\tSystem.out.printf(\"%.5f\",(double)a/b);\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", "System.out.print(a/b+\" \")", "System.out.print", "System.out", "System", "System.out", "a/b+\" \"", "a/b", "a", "b", "\" \"", "System.out.print(a%b+\" \")", "System.out.print", "System.out", "System", "System.out", "a%b+\" \"", "a%b", "a", "b", "\" \"", "System.out.printf(\"%.5f\",(double)a/b)", "System.out.printf", "System.out", "System", "System.out", "\"%.5f\"", "(double)a/b", "(double)a", "b", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner stdIn = new Scanner(System.in);\n\t\t\n\t\tint a = stdIn.nextInt();\n\t\tint b = stdIn.nextInt();\n\t\t\n\t\tSystem.out.print(a/b+\" \");\n\t\tSystem.out.print(a%b+\" \");\n\t\tSystem.out.printf(\"%.5f\",(double)a/b);\n\t}\n\n}", "public class Main {\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner stdIn = new Scanner(System.in);\n\t\t\n\t\tint a = stdIn.nextInt();\n\t\tint b = stdIn.nextInt();\n\t\t\n\t\tSystem.out.print(a/b+\" \");\n\t\tSystem.out.print(a%b+\" \");\n\t\tSystem.out.printf(\"%.5f\",(double)a/b);\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(); System.out.print(a/b+" "); System.out.print(a%b+" "); System.out.printf("%.5f",(double)a/b); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 17, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 14, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 25, 28 ], [ 14, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 31, 34 ], [ 34, 35 ], [ 34, 36 ], [ 14, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 39, 42 ], [ 42, 43 ], [ 42, 44 ], [ 14, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 47, 49 ], [ 14, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 52, 54 ], [ 14, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 57, 59 ], [ 14, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 60, 65 ], [ 68, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 67, 71 ], [ 66, 72 ], [ 68, 73 ], [ 60, 74 ], [ 12, 75 ], [ 75, 76 ] ]
[ "import java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.io.* ;\n \nclass Main{\n public static void main(String[] args)throws IOException{\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));// ??\\?????????\n String str = br.readLine();\n \n String[] strAry = str.split(\" \");\n int a = Integer.parseInt(strAry[0]);\n \tint b = Integer.parseInt(strAry[1]);\n \tint d= a / b;\n \tint r= a%b ;\n \tdouble f = (double)a/b ;\n \tSystem.out.printf(d + \" \" + r + \" \" + \"%.5f\\n\",f );\n \t\n \t}\n}\t", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.io.* ;", "io.*", "java", "class Main{\n public static void main(String[] args)throws IOException{\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));// ??\\?????????\n String str = br.readLine();\n \n String[] strAry = str.split(\" \");\n int a = Integer.parseInt(strAry[0]);\n \tint b = Integer.parseInt(strAry[1]);\n \tint d= a / b;\n \tint r= a%b ;\n \tdouble f = (double)a/b ;\n \tSystem.out.printf(d + \" \" + r + \" \" + \"%.5f\\n\",f );\n \t\n \t}\n}", "Main", "public static void main(String[] args)throws IOException{\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));// ??\\?????????\n String str = br.readLine();\n \n String[] strAry = str.split(\" \");\n int a = Integer.parseInt(strAry[0]);\n \tint b = Integer.parseInt(strAry[1]);\n \tint d= a / b;\n \tint r= a%b ;\n \tdouble f = (double)a/b ;\n \tSystem.out.printf(d + \" \" + r + \" \" + \"%.5f\\n\",f );\n \t\n \t}", "main", "{\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));// ??\\?????????\n String str = br.readLine();\n \n String[] strAry = str.split(\" \");\n int a = Integer.parseInt(strAry[0]);\n \tint b = Integer.parseInt(strAry[1]);\n \tint d= a / b;\n \tint r= a%b ;\n \tdouble f = (double)a/b ;\n \tSystem.out.printf(d + \" \" + r + \" \" + \"%.5f\\n\",f );\n \t\n \t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String str = br.readLine();", "str", "br.readLine()", "br.readLine", "br", "String[] strAry = str.split(\" \");", "strAry", "str.split(\" \")", "str.split", "str", "\" \"", "int a = Integer.parseInt(strAry[0]);", "a", "Integer.parseInt(strAry[0])", "Integer.parseInt", "Integer", "strAry[0]", "strAry", "0", "int b = Integer.parseInt(strAry[1]);", "b", "Integer.parseInt(strAry[1])", "Integer.parseInt", "Integer", "strAry[1]", "strAry", "1", "int d= a / b;", "d", "a / b", "a", "b", "int r= a%b ;", "r", "a%b", "a", "b", "double f = (double)a/b ;", "f", "(double)a/b", "(double)a", "b", "System.out.printf(d + \" \" + r + \" \" + \"%.5f\\n\",f )", "System.out.printf", "System.out", "System", "System.out", "d + \" \" + r + \" \" + \"%.5f\\n\"", "\" \"", "r", "d + \" \" + r + \" \" + \"%.5f\\n\"", "d", "\" \"", "r", "\" \"", "\"%.5f\\n\"", "f", "String[] args", "args" ]
import java.io.IOException; import java.io.InputStreamReader; import java.io.* ; class Main{ public static void main(String[] args)throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in));// ??\????????? String str = br.readLine(); String[] strAry = str.split(" "); int a = Integer.parseInt(strAry[0]); int b = Integer.parseInt(strAry[1]); int d= a / b; int r= a%b ; double f = (double)a/b ; System.out.printf(d + " " + r + " " + "%.5f\n",f ); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 41, 13, 41, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 13, 17, 13, 17, 41, 13, 4, 18, 13, 17, 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 ], [ 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 ], [ 8, 24 ], [ 24, 25 ], [ 8, 26 ], [ 26, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 30, 32 ], [ 8, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 35, 37 ], [ 8, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 40, 42 ], [ 8, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 43, 48 ], [ 50, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 49, 53 ], [ 50, 54 ], [ 8, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 58, 59 ], [ 57, 60 ], [ 57, 61 ], [ 8, 62 ], [ 62, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 62, 67 ], [ 6, 68 ], [ 68, 69 ] ]
[ "import java.util.Scanner;\nclass Main{\npublic static void main(String[] args){\nScanner scan =new Scanner(System.in);\n\nint a=scan.nextInt();\nint b=scan.nextInt();\nint c,d;\ndouble e;\nc=a/b;\nd=a%b;\ne=(double)a/(double)b;\nSystem.out.print(c+\" \"+d+\" \");\nString after = String.format(\"%.16f\", e);\n System.out.println(after);\n}\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main{\npublic static void main(String[] args){\nScanner scan =new Scanner(System.in);\n\nint a=scan.nextInt();\nint b=scan.nextInt();\nint c,d;\ndouble e;\nc=a/b;\nd=a%b;\ne=(double)a/(double)b;\nSystem.out.print(c+\" \"+d+\" \");\nString after = String.format(\"%.16f\", e);\n System.out.println(after);\n}\n}", "Main", "public static void main(String[] args){\nScanner scan =new Scanner(System.in);\n\nint a=scan.nextInt();\nint b=scan.nextInt();\nint c,d;\ndouble e;\nc=a/b;\nd=a%b;\ne=(double)a/(double)b;\nSystem.out.print(c+\" \"+d+\" \");\nString after = String.format(\"%.16f\", e);\n System.out.println(after);\n}", "main", "{\nScanner scan =new Scanner(System.in);\n\nint a=scan.nextInt();\nint b=scan.nextInt();\nint c,d;\ndouble e;\nc=a/b;\nd=a%b;\ne=(double)a/(double)b;\nSystem.out.print(c+\" \"+d+\" \");\nString after = String.format(\"%.16f\", e);\n System.out.println(after);\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", "c", "d;", "d", "double e;", "e", "c=a/b", "c", "a/b", "a", "b", "d=a%b", "d", "a%b", "a", "b", "e=(double)a/(double)b", "e", "(double)a/(double)b", "(double)a", "(double)b", "System.out.print(c+\" \"+d+\" \")", "System.out.print", "System.out", "System", "System.out", "c+\" \"+d+\" \"", "d", "c+\" \"+d+\" \"", "c", "\" \"", "d", "\" \"", "String after = String.format(\"%.16f\", e);", "after", "String.format(\"%.16f\", e)", "String.format", "String", "\"%.16f\"", "e", "System.out.println(after)", "System.out.println", "System.out", "System", "System.out", "after", "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,d; double e; c=a/b; d=a%b; e=(double)a/(double)b; System.out.print(c+" "+d+" "); String after = String.format("%.16f", e); System.out.println(after); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 38, 5, 13, 30, 4, 18, 18, 13, 13, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 20, 17, 41, 13, 20, 17, 41, 13, 20, 0, 13, 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, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 18, 13, 17, 18, 13, 17, 17, 2, 18, 13, 17, 18, 13, 17, 17, 4, 18, 13, 2, 18, 13, 17, 18, 13, 17, 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 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 126, 20 ], [ 126, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 30, 32 ], [ 28, 33 ], [ 24, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 34, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 34, 43 ], [ 43, 44 ], [ 43, 45 ], [ 34, 47 ], [ 47, 48 ], [ 47, 49 ], [ 34, 51 ], [ 51, 52 ], [ 51, 53 ], [ 34, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 34, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 60, 65 ], [ 65, 66 ], [ 65, 67 ], [ 67, 68 ], [ 67, 69 ], [ 60, 70 ], [ 70, 71 ], [ 71, 72 ], [ 60, 73 ], [ 74, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 75, 79 ], [ 79, 80 ], [ 80, 81 ], [ 79, 82 ], [ 82, 83 ], [ 82, 84 ], [ 34, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 85, 90 ], [ 93, 91 ], [ 91, 92 ], [ 102, 93 ], [ 93, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 94, 98 ], [ 98, 99 ], [ 98, 100 ], [ 93, 101 ], [ 102, 102 ], [ 102, 103 ], [ 103, 104 ], [ 103, 105 ], [ 102, 106 ], [ 106, 107 ], [ 106, 108 ], [ 91, 109 ], [ 93, 110 ], [ 110, 111 ], [ 111, 112 ], [ 110, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 113, 117 ], [ 117, 118 ], [ 117, 119 ], [ 34, 120 ], [ 120, 121 ], [ 121, 122 ], [ 21, 123 ], [ 123, 124 ], [ 0, 125 ], [ 125, 126 ], [ 125, 127 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.text.DecimalFormat;\nimport java.util.ArrayList;\nimport java.util.Iterator;\n\npublic class Main {\n\n public static void main(String[] args) {\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] strArray = new String[2];\n int[] intArray = new int[2];\n DecimalFormat df = new DecimalFormat(\"0.00000\");\n \n strArray = line.split(\"\\\\s\");\n \n for (int i = 0; i < strArray.length; i++) {\n\t\t\t\tintArray[i] =Integer.parseInt(strArray[i]);\n\t\t\t}\n \n System.out.println(intArray[0]/intArray[1] +\" \" +\n \t\tintArray[0]%intArray[1] + \" \" +\n \t\tdf.format((double)intArray[0]/(double)intArray[1])\n \t\t);\n \n br.close();\n } catch (IOException e) {\n System.err.println(e);\n }\n }\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.text.DecimalFormat;", "DecimalFormat", "java.text", "import java.util.ArrayList;", "ArrayList", "java.util", "import java.util.Iterator;", "Iterator", "java.util", "public class Main {\n\n public static void main(String[] args) {\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] strArray = new String[2];\n int[] intArray = new int[2];\n DecimalFormat df = new DecimalFormat(\"0.00000\");\n \n strArray = line.split(\"\\\\s\");\n \n for (int i = 0; i < strArray.length; i++) {\n\t\t\t\tintArray[i] =Integer.parseInt(strArray[i]);\n\t\t\t}\n \n System.out.println(intArray[0]/intArray[1] +\" \" +\n \t\tintArray[0]%intArray[1] + \" \" +\n \t\tdf.format((double)intArray[0]/(double)intArray[1])\n \t\t);\n \n br.close();\n } catch (IOException e) {\n System.err.println(e);\n }\n }\n}", "Main", "public static void main(String[] args) {\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] strArray = new String[2];\n int[] intArray = new int[2];\n DecimalFormat df = new DecimalFormat(\"0.00000\");\n \n strArray = line.split(\"\\\\s\");\n \n for (int i = 0; i < strArray.length; i++) {\n\t\t\t\tintArray[i] =Integer.parseInt(strArray[i]);\n\t\t\t}\n \n System.out.println(intArray[0]/intArray[1] +\" \" +\n \t\tintArray[0]%intArray[1] + \" \" +\n \t\tdf.format((double)intArray[0]/(double)intArray[1])\n \t\t);\n \n br.close();\n } catch (IOException e) {\n System.err.println(e);\n }\n }", "main", "{\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] strArray = new String[2];\n int[] intArray = new int[2];\n DecimalFormat df = new DecimalFormat(\"0.00000\");\n \n strArray = line.split(\"\\\\s\");\n \n for (int i = 0; i < strArray.length; i++) {\n\t\t\t\tintArray[i] =Integer.parseInt(strArray[i]);\n\t\t\t}\n \n System.out.println(intArray[0]/intArray[1] +\" \" +\n \t\tintArray[0]%intArray[1] + \" \" +\n \t\tdf.format((double)intArray[0]/(double)intArray[1])\n \t\t);\n \n br.close();\n } catch (IOException e) {\n System.err.println(e);\n }\n }", "try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] strArray = new String[2];\n int[] intArray = new int[2];\n DecimalFormat df = new DecimalFormat(\"0.00000\");\n \n strArray = line.split(\"\\\\s\");\n \n for (int i = 0; i < strArray.length; i++) {\n\t\t\t\tintArray[i] =Integer.parseInt(strArray[i]);\n\t\t\t}\n \n System.out.println(intArray[0]/intArray[1] +\" \" +\n \t\tintArray[0]%intArray[1] + \" \" +\n \t\tdf.format((double)intArray[0]/(double)intArray[1])\n \t\t);\n \n br.close();\n } catch (IOException e) {\n System.err.println(e);\n }", "catch (IOException e) {\n System.err.println(e);\n }", "IOException e", "{\n System.err.println(e);\n }", "System.err.println(e)", "System.err.println", "System.err", "System", "System.err", "e", "{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] strArray = new String[2];\n int[] intArray = new int[2];\n DecimalFormat df = new DecimalFormat(\"0.00000\");\n \n strArray = line.split(\"\\\\s\");\n \n for (int i = 0; i < strArray.length; i++) {\n\t\t\t\tintArray[i] =Integer.parseInt(strArray[i]);\n\t\t\t}\n \n System.out.println(intArray[0]/intArray[1] +\" \" +\n \t\tintArray[0]%intArray[1] + \" \" +\n \t\tdf.format((double)intArray[0]/(double)intArray[1])\n \t\t);\n \n br.close();\n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String line = br.readLine();", "line", "br.readLine()", "br.readLine", "br", "String[] strArray = new String[2];", "strArray", "new String[2]", "2", "int[] intArray = new int[2];", "intArray", "new int[2]", "2", "DecimalFormat df = new DecimalFormat(\"0.00000\");", "df", "new DecimalFormat(\"0.00000\")", "strArray = line.split(\"\\\\s\")", "strArray", "line.split(\"\\\\s\")", "line.split", "line", "\"\\\\s\"", "for (int i = 0; i < strArray.length; i++) {\n\t\t\t\tintArray[i] =Integer.parseInt(strArray[i]);\n\t\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < strArray.length", "i", "strArray.length", "strArray", "strArray.length", "i++", "i++", "i", "{\n\t\t\t\tintArray[i] =Integer.parseInt(strArray[i]);\n\t\t\t}", "{\n\t\t\t\tintArray[i] =Integer.parseInt(strArray[i]);\n\t\t\t}", "intArray[i] =Integer.parseInt(strArray[i])", "intArray[i]", "intArray", "i", "Integer.parseInt(strArray[i])", "Integer.parseInt", "Integer", "strArray[i]", "strArray", "i", "System.out.println(intArray[0]/intArray[1] +\" \" +\n \t\tintArray[0]%intArray[1] + \" \" +\n \t\tdf.format((double)intArray[0]/(double)intArray[1])\n \t\t)", "System.out.println", "System.out", "System", "System.out", "intArray[0]/intArray[1] +\" \" +\n \t\tintArray[0]%intArray[1] + \" \" +\n \t\tdf.format((double)intArray[0]/(double)intArray[1])", "\" \"", "intArray[0]%intArray[1]", "intArray[0]/intArray[1] +\" \" +\n \t\tintArray[0]%intArray[1] + \" \" +\n \t\tdf.format((double)intArray[0]/(double)intArray[1])", "intArray[0]/intArray[1]", "intArray[0]", "intArray", "0", "intArray[1]", "intArray", "1", "\" \"", "intArray[0]%intArray[1]", "intArray[0]", "intArray", "0", "intArray[1]", "intArray", "1", "\" \"", "df.format((double)intArray[0]/(double)intArray[1])", "df.format", "df", "(double)intArray[0]/(double)intArray[1]", "(double)intArray[0]", "intArray", "0", "(double)intArray[1]", "intArray", "1", "br.close()", "br.close", "br", "String[] args", "args", "public class Main {\n\n public static void main(String[] args) {\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] strArray = new String[2];\n int[] intArray = new int[2];\n DecimalFormat df = new DecimalFormat(\"0.00000\");\n \n strArray = line.split(\"\\\\s\");\n \n for (int i = 0; i < strArray.length; i++) {\n\t\t\t\tintArray[i] =Integer.parseInt(strArray[i]);\n\t\t\t}\n \n System.out.println(intArray[0]/intArray[1] +\" \" +\n \t\tintArray[0]%intArray[1] + \" \" +\n \t\tdf.format((double)intArray[0]/(double)intArray[1])\n \t\t);\n \n br.close();\n } catch (IOException e) {\n System.err.println(e);\n }\n }\n}", "public class Main {\n\n public static void main(String[] args) {\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String[] strArray = new String[2];\n int[] intArray = new int[2];\n DecimalFormat df = new DecimalFormat(\"0.00000\");\n \n strArray = line.split(\"\\\\s\");\n \n for (int i = 0; i < strArray.length; i++) {\n\t\t\t\tintArray[i] =Integer.parseInt(strArray[i]);\n\t\t\t}\n \n System.out.println(intArray[0]/intArray[1] +\" \" +\n \t\tintArray[0]%intArray[1] + \" \" +\n \t\tdf.format((double)intArray[0]/(double)intArray[1])\n \t\t);\n \n br.close();\n } catch (IOException e) {\n System.err.println(e);\n }\n }\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.text.DecimalFormat; import java.util.ArrayList; import java.util.Iterator; public class Main { public static void main(String[] args) { try { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line = br.readLine(); String[] strArray = new String[2]; int[] intArray = new int[2]; DecimalFormat df = new DecimalFormat("0.00000"); strArray = line.split("\\s"); for (int i = 0; i < strArray.length; i++) { intArray[i] =Integer.parseInt(strArray[i]); } System.out.println(intArray[0]/intArray[1] +" " + intArray[0]%intArray[1] + " " + df.format((double)intArray[0]/(double)intArray[1]) ); br.close(); } catch (IOException e) { System.err.println(e); } } }
[ 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, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 14, 2, 40, 2, 13, 17, 2, 13, 4, 18, 13, 17, 17, 30, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 4, 18, 13, 17, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 11, 26 ], [ 26, 27 ], [ 26, 28 ], [ 28, 29 ], [ 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 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 43, 48 ], [ 48, 49 ], [ 48, 50 ], [ 50, 51 ], [ 51, 52 ], [ 50, 53 ], [ 50, 54 ], [ 42, 55 ], [ 55, 56 ], [ 56, 57 ], [ 56, 58 ], [ 58, 59 ], [ 58, 60 ], [ 55, 61 ], [ 61, 62 ], [ 61, 63 ], [ 63, 64 ], [ 63, 65 ], [ 55, 66 ], [ 66, 67 ], [ 66, 68 ], [ 68, 69 ], [ 69, 70 ], [ 68, 71 ], [ 68, 72 ], [ 72, 73 ], [ 72, 74 ], [ 55, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 75, 80 ], [ 83, 81 ], [ 81, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 82, 86 ], [ 81, 87 ], [ 83, 88 ], [ 9, 89 ], [ 89, 90 ] ]
[ "import java.util.*;\nimport java.io.*;\n\nclass Main{\n public static void main(String args[])throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String s = br.readLine();\n String[] str = s.split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n if(!(a<1) || (b>Math.pow(10,9))){\n \n int num1 = a / b;\n int num2 = a % b;\n String num3 = String.format(\"%.5f\",((double)a / (double)b));\n System.out.println(num1+\" \"+ num2 +\" \"+ num3);\n \n //System.out.println(String.format(\"%d %d %.5f\",a/b,a%b,(double)a/b));\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 String s = br.readLine();\n String[] str = s.split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n if(!(a<1) || (b>Math.pow(10,9))){\n \n int num1 = a / b;\n int num2 = a % b;\n String num3 = String.format(\"%.5f\",((double)a / (double)b));\n System.out.println(num1+\" \"+ num2 +\" \"+ num3);\n \n //System.out.println(String.format(\"%d %d %.5f\",a/b,a%b,(double)a/b));\n }\n }\n}", "Main", "public static void main(String args[])throws IOException{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String s = br.readLine();\n String[] str = s.split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n if(!(a<1) || (b>Math.pow(10,9))){\n \n int num1 = a / b;\n int num2 = a % b;\n String num3 = String.format(\"%.5f\",((double)a / (double)b));\n System.out.println(num1+\" \"+ num2 +\" \"+ num3);\n \n //System.out.println(String.format(\"%d %d %.5f\",a/b,a%b,(double)a/b));\n }\n }", "main", "{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String s = br.readLine();\n String[] str = s.split(\" \");\n int a = Integer.parseInt(str[0]);\n int b = Integer.parseInt(str[1]);\n if(!(a<1) || (b>Math.pow(10,9))){\n \n int num1 = a / b;\n int num2 = a % b;\n String num3 = String.format(\"%.5f\",((double)a / (double)b));\n System.out.println(num1+\" \"+ num2 +\" \"+ num3);\n \n //System.out.println(String.format(\"%d %d %.5f\",a/b,a%b,(double)a/b));\n }\n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String s = br.readLine();", "s", "br.readLine()", "br.readLine", "br", "String[] str = s.split(\" \");", "str", "s.split(\" \")", "s.split", "s", "\" \"", "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", "if(!(a<1) || (b>Math.pow(10,9))){\n \n int num1 = a / b;\n int num2 = a % b;\n String num3 = String.format(\"%.5f\",((double)a / (double)b));\n System.out.println(num1+\" \"+ num2 +\" \"+ num3);\n \n //System.out.println(String.format(\"%d %d %.5f\",a/b,a%b,(double)a/b));\n }", "!(a<1) || (b>Math.pow(10,9))", "!(a<1)", "(a<1)", "a", "1", "(b>Math.pow(10,9))", "b", "Math.pow(10,9)", "Math.pow", "Math", "10", "9", "{\n \n int num1 = a / b;\n int num2 = a % b;\n String num3 = String.format(\"%.5f\",((double)a / (double)b));\n System.out.println(num1+\" \"+ num2 +\" \"+ num3);\n \n //System.out.println(String.format(\"%d %d %.5f\",a/b,a%b,(double)a/b));\n }", "int num1 = a / b;", "num1", "a / b", "a", "b", "int num2 = a % b;", "num2", "a % b", "a", "b", "String num3 = String.format(\"%.5f\",((double)a / (double)b));", "num3", "String.format(\"%.5f\",((double)a / (double)b))", "String.format", "String", "\"%.5f\"", "((double)a / (double)b)", "(double)a", "(double)b", "System.out.println(num1+\" \"+ num2 +\" \"+ num3)", "System.out.println", "System.out", "System", "System.out", "num1+\" \"+ num2 +\" \"+ num3", "\" \"", "num2", "num1+\" \"+ num2 +\" \"+ num3", "num1", "\" \"", "num2", "\" \"", "num3", "String args[]", "args" ]
import java.util.*; import java.io.*; class Main{ public static void main(String args[])throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String s = br.readLine(); String[] str = s.split(" "); int a = Integer.parseInt(str[0]); int b = Integer.parseInt(str[1]); if(!(a<1) || (b>Math.pow(10,9))){ int num1 = a / b; int num2 = a % b; String num3 = String.format("%.5f",((double)a / (double)b)); System.out.println(num1+" "+ num2 +" "+ num3); //System.out.println(String.format("%d %d %.5f",a/b,a%b,(double)a/b)); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 20, 41, 13, 4, 18, 4, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 2, 17, 13, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 8, 11 ], [ 11, 12 ], [ 8, 13 ], [ 13, 14 ], [ 8, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 8, 19 ], [ 19, 20 ], [ 19, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 24, 29 ], [ 8, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 32, 35 ], [ 35, 36 ], [ 35, 37 ], [ 8, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 43, 44 ], [ 43, 45 ], [ 8, 46 ], [ 46, 47 ], [ 46, 48 ], [ 48, 49 ], [ 48, 50 ], [ 8, 51 ], [ 51, 52 ], [ 51, 53 ], [ 53, 54 ], [ 53, 55 ], [ 8, 56 ], [ 56, 57 ], [ 56, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 58, 62 ], [ 8, 63 ], [ 63, 64 ], [ 64, 65 ], [ 65, 66 ], [ 65, 67 ], [ 63, 68 ], [ 63, 69 ], [ 63, 70 ], [ 63, 71 ], [ 6, 72 ], [ 72, 73 ] ]
[ "import java.io.*;\n \nclass Main{\n\tpublic static void main(String[] args) throws IOException{\n\n\t\tint x,y,d,r;\n\t\tdouble f;\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str[] = br.readLine().split(\" \");\n\t\tx = Integer.parseInt(str[0]);\n\t\ty = Integer.parseInt(str[1]);\n\n\t\td = x / y;\n\t\tr = x % y;\n\t\tf = 1.0 * x / y;\n\n\t\tSystem.out.printf(\"%1d %1d %1.5f\",d, r, f);\n \t}\n}", "import java.io.*;", "io.*", "java", "class Main{\n\tpublic static void main(String[] args) throws IOException{\n\n\t\tint x,y,d,r;\n\t\tdouble f;\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str[] = br.readLine().split(\" \");\n\t\tx = Integer.parseInt(str[0]);\n\t\ty = Integer.parseInt(str[1]);\n\n\t\td = x / y;\n\t\tr = x % y;\n\t\tf = 1.0 * x / y;\n\n\t\tSystem.out.printf(\"%1d %1d %1.5f\",d, r, f);\n \t}\n}", "Main", "public static void main(String[] args) throws IOException{\n\n\t\tint x,y,d,r;\n\t\tdouble f;\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str[] = br.readLine().split(\" \");\n\t\tx = Integer.parseInt(str[0]);\n\t\ty = Integer.parseInt(str[1]);\n\n\t\td = x / y;\n\t\tr = x % y;\n\t\tf = 1.0 * x / y;\n\n\t\tSystem.out.printf(\"%1d %1d %1.5f\",d, r, f);\n \t}", "main", "{\n\n\t\tint x,y,d,r;\n\t\tdouble f;\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str[] = br.readLine().split(\" \");\n\t\tx = Integer.parseInt(str[0]);\n\t\ty = Integer.parseInt(str[1]);\n\n\t\td = x / y;\n\t\tr = x % y;\n\t\tf = 1.0 * x / y;\n\n\t\tSystem.out.printf(\"%1d %1d %1.5f\",d, r, f);\n \t}", "int x", "x", "y", "y", "d", "d", "r;", "r", "double f;", "f", "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", "\" \"", "x = Integer.parseInt(str[0])", "x", "Integer.parseInt(str[0])", "Integer.parseInt", "Integer", "str[0]", "str", "0", "y = Integer.parseInt(str[1])", "y", "Integer.parseInt(str[1])", "Integer.parseInt", "Integer", "str[1]", "str", "1", "d = x / y", "d", "x / y", "x", "y", "r = x % y", "r", "x % y", "x", "y", "f = 1.0 * x / y", "f", "1.0 * x / y", "1.0 * x", "1.0", "x", "y", "System.out.printf(\"%1d %1d %1.5f\",d, r, f)", "System.out.printf", "System.out", "System", "System.out", "\"%1d %1d %1.5f\"", "d", "r", "f", "String[] args", "args" ]
import java.io.*; class Main{ public static void main(String[] args) throws IOException{ int x,y,d,r; double f; BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String str[] = br.readLine().split(" "); x = Integer.parseInt(str[0]); y = Integer.parseInt(str[1]); d = x / y; r = x % y; f = 1.0 * x / y; System.out.printf("%1d %1d %1.5f",d, r, f); } }
[ 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, 2, 2, 17, 13, 13, 41, 13, 20, 0, 13, 4, 18, 13, 17, 18, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 13, 13, 17, 2, 13, 13, 17, 17, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 11, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 27, 31 ], [ 11, 32 ], [ 32, 33 ], [ 32, 34 ], [ 11, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 38, 39 ], [ 37, 40 ], [ 37, 41 ], [ 41, 42 ], [ 41, 43 ], [ 11, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 44, 49 ], [ 52, 50 ], [ 50, 51 ], [ 57, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 52, 56 ], [ 57, 57 ], [ 57, 58 ], [ 57, 59 ], [ 50, 60 ], [ 52, 61 ], [ 44, 62 ], [ 9, 63 ], [ 63, 64 ] ]
[ "import java.math.BigDecimal;\nimport java.util.Scanner;\n\nclass Main {\n\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tdouble f = 1.0 * x / y;\n\t\tBigDecimal g = new BigDecimal(f);\n\t\tg = g.setScale(5,BigDecimal.ROUND_HALF_UP);\n\t\tSystem.out.printf(x/y + \" \" + x%y + \" \" + \"%.5f\",g);\n\t}\n}", "import java.math.BigDecimal;", "BigDecimal", "java.math", "import java.util.Scanner;", "Scanner", "java.util", "class Main {\n\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tdouble f = 1.0 * x / y;\n\t\tBigDecimal g = new BigDecimal(f);\n\t\tg = g.setScale(5,BigDecimal.ROUND_HALF_UP);\n\t\tSystem.out.printf(x/y + \" \" + x%y + \" \" + \"%.5f\",g);\n\t}\n}", "Main", "public static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tdouble f = 1.0 * x / y;\n\t\tBigDecimal g = new BigDecimal(f);\n\t\tg = g.setScale(5,BigDecimal.ROUND_HALF_UP);\n\t\tSystem.out.printf(x/y + \" \" + x%y + \" \" + \"%.5f\",g);\n\t}", "main", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tdouble f = 1.0 * x / y;\n\t\tBigDecimal g = new BigDecimal(f);\n\t\tg = g.setScale(5,BigDecimal.ROUND_HALF_UP);\n\t\tSystem.out.printf(x/y + \" \" + x%y + \" \" + \"%.5f\",g);\n\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "int y = scan.nextInt();", "y", "scan.nextInt()", "scan.nextInt", "scan", "double f = 1.0 * x / y;", "f", "1.0 * x / y", "1.0 * x", "1.0", "x", "y", "BigDecimal g = new BigDecimal(f);", "g", "new BigDecimal(f)", "g = g.setScale(5,BigDecimal.ROUND_HALF_UP)", "g", "g.setScale(5,BigDecimal.ROUND_HALF_UP)", "g.setScale", "g", "5", "BigDecimal.ROUND_HALF_UP", "BigDecimal", "BigDecimal.ROUND_HALF_UP", "System.out.printf(x/y + \" \" + x%y + \" \" + \"%.5f\",g)", "System.out.printf", "System.out", "System", "System.out", "x/y + \" \" + x%y + \" \" + \"%.5f\"", "\" \"", "x%y", "x/y + \" \" + x%y + \" \" + \"%.5f\"", "x/y", "x", "y", "\" \"", "x%y", "x", "y", "\" \"", "\"%.5f\"", "g", "String[] args", "args" ]
import java.math.BigDecimal; import java.util.Scanner; class Main { public static void main(String[] args){ Scanner scan = new Scanner(System.in); int x = scan.nextInt(); int y = scan.nextInt(); double f = 1.0 * x / y; BigDecimal g = new BigDecimal(f); g = g.setScale(5,BigDecimal.ROUND_HALF_UP); System.out.printf(x/y + " " + x%y + " " + "%.5f",g); } }
[ 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 4, 18, 13, 17, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 67, 5 ], [ 67, 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 ], [ 30, 32 ], [ 8, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 35, 37 ], [ 8, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 40, 42 ], [ 8, 43 ], [ 43, 44 ], [ 43, 45 ], [ 45, 46 ], [ 46, 47 ], [ 45, 48 ], [ 45, 49 ], [ 8, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 50, 55 ], [ 58, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 57, 61 ], [ 56, 62 ], [ 58, 63 ], [ 6, 64 ], [ 64, 65 ], [ 0, 66 ], [ 66, 67 ], [ 66, 68 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args){\n\t Scanner std = new Scanner(System.in);\n\t int a = Integer.parseInt(std.next());\n\t int b = Integer.parseInt(std.next());\n\t int d = a/b;\n\t int r = a%b;\n\t double f = (double)a/(double)b;\n\t String after = String.format(\"%.6f\", f);\n\t System.out.println(d+\" \"+r+\" \"+after);\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args){\n\t Scanner std = new Scanner(System.in);\n\t int a = Integer.parseInt(std.next());\n\t int b = Integer.parseInt(std.next());\n\t int d = a/b;\n\t int r = a%b;\n\t double f = (double)a/(double)b;\n\t String after = String.format(\"%.6f\", f);\n\t System.out.println(d+\" \"+r+\" \"+after);\n\t}\n}", "Main", "public static void main(String[] args){\n\t Scanner std = new Scanner(System.in);\n\t int a = Integer.parseInt(std.next());\n\t int b = Integer.parseInt(std.next());\n\t int d = a/b;\n\t int r = a%b;\n\t double f = (double)a/(double)b;\n\t String after = String.format(\"%.6f\", f);\n\t System.out.println(d+\" \"+r+\" \"+after);\n\t}", "main", "{\n\t Scanner std = new Scanner(System.in);\n\t int a = Integer.parseInt(std.next());\n\t int b = Integer.parseInt(std.next());\n\t int d = a/b;\n\t int r = a%b;\n\t double f = (double)a/(double)b;\n\t String after = String.format(\"%.6f\", f);\n\t System.out.println(d+\" \"+r+\" \"+after);\n\t}", "Scanner std = new Scanner(System.in);", "std", "new Scanner(System.in)", "int a = Integer.parseInt(std.next());", "a", "Integer.parseInt(std.next())", "Integer.parseInt", "Integer", "std.next()", "std.next", "std", "int b = Integer.parseInt(std.next());", "b", "Integer.parseInt(std.next())", "Integer.parseInt", "Integer", "std.next()", "std.next", "std", "int d = a/b;", "d", "a/b", "a", "b", "int r = a%b;", "r", "a%b", "a", "b", "double f = (double)a/(double)b;", "f", "(double)a/(double)b", "(double)a", "(double)b", "String after = String.format(\"%.6f\", f);", "after", "String.format(\"%.6f\", f)", "String.format", "String", "\"%.6f\"", "f", "System.out.println(d+\" \"+r+\" \"+after)", "System.out.println", "System.out", "System", "System.out", "d+\" \"+r+\" \"+after", "\" \"", "r", "d+\" \"+r+\" \"+after", "d", "\" \"", "r", "\" \"", "after", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args){\n\t Scanner std = new Scanner(System.in);\n\t int a = Integer.parseInt(std.next());\n\t int b = Integer.parseInt(std.next());\n\t int d = a/b;\n\t int r = a%b;\n\t double f = (double)a/(double)b;\n\t String after = String.format(\"%.6f\", f);\n\t System.out.println(d+\" \"+r+\" \"+after);\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args){\n\t Scanner std = new Scanner(System.in);\n\t int a = Integer.parseInt(std.next());\n\t int b = Integer.parseInt(std.next());\n\t int d = a/b;\n\t int r = a%b;\n\t double f = (double)a/(double)b;\n\t String after = String.format(\"%.6f\", f);\n\t System.out.println(d+\" \"+r+\" \"+after);\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner std = new Scanner(System.in); int a = Integer.parseInt(std.next()); int b = Integer.parseInt(std.next()); int d = a/b; int r = a%b; double f = (double)a/(double)b; String after = String.format("%.6f", f); System.out.println(d+" "+r+" "+after); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 41, 13, 17, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 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 ], [ 8, 24 ], [ 24, 25 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 29, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 34, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 37, 42 ], [ 37, 43 ], [ 37, 44 ], [ 37, 45 ], [ 45, 46 ], [ 45, 47 ], [ 6, 48 ], [ 48, 49 ] ]
[ "import java.util.Scanner;\n\nclass Main{\n\tstatic public void main(String agrs[]){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d,r=0;\n\n\t\td = a/b;\n\t\tr = a%b;\n\t\tSystem.out.printf(\"%d %d %f\", d, r, (double)a/(double)b);\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main{\n\tstatic public void main(String agrs[]){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d,r=0;\n\n\t\td = a/b;\n\t\tr = a%b;\n\t\tSystem.out.printf(\"%d %d %f\", d, r, (double)a/(double)b);\n\t}\n}", "Main", "static public void main(String agrs[]){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d,r=0;\n\n\t\td = a/b;\n\t\tr = a%b;\n\t\tSystem.out.printf(\"%d %d %f\", d, r, (double)a/(double)b);\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 d,r=0;\n\n\t\td = a/b;\n\t\tr = a%b;\n\t\tSystem.out.printf(\"%d %d %f\", d, r, (double)a/(double)b);\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 d", "d", "r=0;", "r", "0", "d = a/b", "d", "a/b", "a", "b", "r = a%b", "r", "a%b", "a", "b", "System.out.printf(\"%d %d %f\", d, r, (double)a/(double)b)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\"", "d", "r", "(double)a/(double)b", "(double)a", "(double)b", "String agrs[]", "agrs" ]
import java.util.Scanner; class Main{ static public void main(String agrs[]){ Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int d,r=0; d = a/b; r = a%b; System.out.printf("%d %d %f", d, r, (double)a/(double)b); } }
[ 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, 4, 18, 13, 17, 4, 18, 13, 17, 4, 18, 13, 17, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 17, 2, 13, 13, 17, 2, 13, 13, 17, 4, 18, 13, 2, 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 ], [ 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 ], [ 31, 32 ], [ 30, 33 ], [ 11, 34 ], [ 34, 35 ], [ 35, 36 ], [ 34, 37 ], [ 11, 38 ], [ 38, 39 ], [ 39, 40 ], [ 38, 41 ], [ 11, 42 ], [ 42, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 42, 47 ], [ 51, 48 ], [ 48, 49 ], [ 57, 50 ], [ 50, 51 ], [ 51, 52 ], [ 51, 53 ], [ 53, 54 ], [ 53, 55 ], [ 50, 56 ], [ 57, 57 ], [ 57, 58 ], [ 57, 59 ], [ 48, 60 ], [ 51, 61 ], [ 61, 62 ], [ 62, 63 ], [ 61, 64 ], [ 64, 65 ], [ 64, 66 ], [ 9, 67 ], [ 67, 68 ] ]
[ "import java.util.*;\nimport java.text.*;\nclass Main {\n public static void main(String[]args)throws Exception {\n Scanner sc = new Scanner(System.in);\n // this got WA\n // int a = sc.nextInt();\n // int b = sc.nextInt();\n // System.out.println(\"\" + (a/b) + \" \" + (a%b) + \" \" + (a/(double)b));\n\n // this is OK\n int a = sc.nextInt();\n int b = sc.nextInt();\n NumberFormat format = NumberFormat.getInstance();\n format.setMaximumFractionDigits(5);\n format.setMinimumFractionDigits(5);\n format.setGroupingUsed(false);\n\n System.out.println(\"\" + (a/b) + \" \" + (a%b) + \" \" + format.format(a/(double)b));\n\n // this is also OK\n // long a = sc.nextInt();\n // long b = sc.nextInt();\n // long a00000 = a * 100000;\n // long c = a00000 / b;\n // long d = c / 100000;\n // long f = c % 100000;\n // String sf = \"\"+f;\n // while(sf.length() < 5) sf = \"0\" + sf;\n // System.out.println(\"\" + (a/b) + \" \" + (a%b) + \" \" + d + \".\" + sf);\n }\n}", "import java.util.*;", "util.*", "java", "import java.text.*;", "text.*", "java", "class Main {\n public static void main(String[]args)throws Exception {\n Scanner sc = new Scanner(System.in);\n // this got WA\n // int a = sc.nextInt();\n // int b = sc.nextInt();\n // System.out.println(\"\" + (a/b) + \" \" + (a%b) + \" \" + (a/(double)b));\n\n // this is OK\n int a = sc.nextInt();\n int b = sc.nextInt();\n NumberFormat format = NumberFormat.getInstance();\n format.setMaximumFractionDigits(5);\n format.setMinimumFractionDigits(5);\n format.setGroupingUsed(false);\n\n System.out.println(\"\" + (a/b) + \" \" + (a%b) + \" \" + format.format(a/(double)b));\n\n // this is also OK\n // long a = sc.nextInt();\n // long b = sc.nextInt();\n // long a00000 = a * 100000;\n // long c = a00000 / b;\n // long d = c / 100000;\n // long f = c % 100000;\n // String sf = \"\"+f;\n // while(sf.length() < 5) sf = \"0\" + sf;\n // System.out.println(\"\" + (a/b) + \" \" + (a%b) + \" \" + d + \".\" + sf);\n }\n}", "Main", "public static void main(String[]args)throws Exception {\n Scanner sc = new Scanner(System.in);\n // this got WA\n // int a = sc.nextInt();\n // int b = sc.nextInt();\n // System.out.println(\"\" + (a/b) + \" \" + (a%b) + \" \" + (a/(double)b));\n\n // this is OK\n int a = sc.nextInt();\n int b = sc.nextInt();\n NumberFormat format = NumberFormat.getInstance();\n format.setMaximumFractionDigits(5);\n format.setMinimumFractionDigits(5);\n format.setGroupingUsed(false);\n\n System.out.println(\"\" + (a/b) + \" \" + (a%b) + \" \" + format.format(a/(double)b));\n\n // this is also OK\n // long a = sc.nextInt();\n // long b = sc.nextInt();\n // long a00000 = a * 100000;\n // long c = a00000 / b;\n // long d = c / 100000;\n // long f = c % 100000;\n // String sf = \"\"+f;\n // while(sf.length() < 5) sf = \"0\" + sf;\n // System.out.println(\"\" + (a/b) + \" \" + (a%b) + \" \" + d + \".\" + sf);\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n // this got WA\n // int a = sc.nextInt();\n // int b = sc.nextInt();\n // System.out.println(\"\" + (a/b) + \" \" + (a%b) + \" \" + (a/(double)b));\n\n // this is OK\n int a = sc.nextInt();\n int b = sc.nextInt();\n NumberFormat format = NumberFormat.getInstance();\n format.setMaximumFractionDigits(5);\n format.setMinimumFractionDigits(5);\n format.setGroupingUsed(false);\n\n System.out.println(\"\" + (a/b) + \" \" + (a%b) + \" \" + format.format(a/(double)b));\n\n // this is also OK\n // long a = sc.nextInt();\n // long b = sc.nextInt();\n // long a00000 = a * 100000;\n // long c = a00000 / b;\n // long d = c / 100000;\n // long f = c % 100000;\n // String sf = \"\"+f;\n // while(sf.length() < 5) sf = \"0\" + sf;\n // System.out.println(\"\" + (a/b) + \" \" + (a%b) + \" \" + d + \".\" + sf);\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", "NumberFormat format = NumberFormat.getInstance();", "format", "NumberFormat.getInstance()", "NumberFormat.getInstance", "NumberFormat", "format.setMaximumFractionDigits(5)", "format.setMaximumFractionDigits", "format", "5", "format.setMinimumFractionDigits(5)", "format.setMinimumFractionDigits", "format", "5", "format.setGroupingUsed(false)", "format.setGroupingUsed", "format", "false", "System.out.println(\"\" + (a/b) + \" \" + (a%b) + \" \" + format.format(a/(double)b))", "System.out.println", "System.out", "System", "System.out", "\"\" + (a/b) + \" \" + (a%b) + \" \" + format.format(a/(double)b)", "\" \"", "(a%b)", "\" \"", "\"\" + (a/b) + \" \" + (a%b) + \" \" + format.format(a/(double)b)", "\"\"", "(a/b)", "a", "b", "\" \"", "(a%b)", "a", "b", "\" \"", "format.format(a/(double)b)", "format.format", "format", "a/(double)b", "a", "(double)b", "String[]args", "args" ]
import java.util.*; import java.text.*; class Main { public static void main(String[]args)throws Exception { Scanner sc = new Scanner(System.in); // this got WA // int a = sc.nextInt(); // int b = sc.nextInt(); // System.out.println("" + (a/b) + " " + (a%b) + " " + (a/(double)b)); // this is OK int a = sc.nextInt(); int b = sc.nextInt(); NumberFormat format = NumberFormat.getInstance(); format.setMaximumFractionDigits(5); format.setMinimumFractionDigits(5); format.setGroupingUsed(false); System.out.println("" + (a/b) + " " + (a%b) + " " + format.format(a/(double)b)); // this is also OK // long a = sc.nextInt(); // long b = sc.nextInt(); // long a00000 = a * 100000; // long c = a00000 / b; // long d = c / 100000; // long f = c % 100000; // String sf = ""+f; // while(sf.length() < 5) sf = "0" + sf; // System.out.println("" + (a/b) + " " + (a%b) + " " + d + "." + sf); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 41, 13, 41, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 2, 17, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 17, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 8, 24 ], [ 24, 25 ], [ 8, 26 ], [ 26, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 30, 32 ], [ 8, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 35, 37 ], [ 8, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 41, 43 ], [ 40, 44 ], [ 8, 45 ], [ 45, 46 ], [ 46, 47 ], [ 47, 48 ], [ 47, 49 ], [ 45, 50 ], [ 53, 51 ], [ 51, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 52, 56 ], [ 51, 57 ], [ 53, 58 ], [ 58, 59 ], [ 59, 60 ], [ 58, 61 ], [ 58, 62 ], [ 6, 63 ], [ 63, 64 ] ]
[ "import java.util.Scanner;\nclass 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 d;\n int r;\n double f;\n \n d = a / b;\n r = a % b;\n f = 1.0 * a / b;\n \n System.out.print(d + \" \" + r + \" \" + String.format(\"%8f\", f));\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "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 d;\n int r;\n double f;\n \n d = a / b;\n r = a % b;\n f = 1.0 * a / b;\n \n System.out.print(d + \" \" + r + \" \" + String.format(\"%8f\", f));\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 d;\n int r;\n double f;\n \n d = a / b;\n r = a % b;\n f = 1.0 * a / b;\n \n System.out.print(d + \" \" + r + \" \" + String.format(\"%8f\", f));\n }", "main", "{\n Scanner scan = new Scanner(System.in);\n int a = scan.nextInt();\n int b = scan.nextInt();\n int d;\n int r;\n double f;\n \n d = a / b;\n r = a % b;\n f = 1.0 * a / b;\n \n System.out.print(d + \" \" + r + \" \" + String.format(\"%8f\", f));\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 d;", "d", "int r;", "r", "double f;", "f", "d = a / b", "d", "a / b", "a", "b", "r = a % b", "r", "a % b", "a", "b", "f = 1.0 * a / b", "f", "1.0 * a / b", "1.0 * a", "1.0", "a", "b", "System.out.print(d + \" \" + r + \" \" + String.format(\"%8f\", f))", "System.out.print", "System.out", "System", "System.out", "d + \" \" + r + \" \" + String.format(\"%8f\", f)", "\" \"", "r", "d + \" \" + r + \" \" + String.format(\"%8f\", f)", "d", "\" \"", "r", "\" \"", "String.format(\"%8f\", f)", "String.format", "String", "\"%8f\"", "f", "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 d; int r; double f; d = a / b; r = a % b; f = 1.0 * a / b; System.out.print(d + " " + r + " " + String.format("%8f", f)); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 42, 4, 18, 13, 30, 41, 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 13, 17, 13, 4, 18, 18, 13, 13, 4, 18, 13, 17, 13, 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 ], [ 13, 14 ], [ 14, 15 ], [ 12, 16 ], [ 16, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 16, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 24, 27 ], [ 16, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 30, 33 ], [ 33, 34 ], [ 33, 35 ], [ 16, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 38, 41 ], [ 41, 42 ], [ 41, 43 ], [ 16, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 46, 48 ], [ 16, 49 ], [ 49, 50 ], [ 49, 51 ], [ 51, 52 ], [ 51, 53 ], [ 16, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 56, 58 ], [ 16, 59 ], [ 59, 60 ], [ 60, 61 ], [ 61, 62 ], [ 61, 63 ], [ 59, 64 ], [ 65, 65 ], [ 65, 66 ], [ 65, 67 ], [ 65, 68 ], [ 16, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 71, 73 ], [ 69, 74 ], [ 74, 75 ], [ 75, 76 ], [ 74, 77 ], [ 74, 78 ], [ 6, 79 ], [ 79, 80 ], [ 0, 81 ], [ 81, 82 ], [ 81, 83 ] ]
[ "import java.util.Scanner;\npublic class Main{\n public static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\twhile(scan.hasNext()) {\n\t String input = scan.nextLine();\n\t String[] inputs = input.split(\" \");\n\t int a = Integer.parseInt(inputs[0]);\n\t int b = Integer.parseInt(inputs[1]);\n\t int d = a / b;\n\t int r = a % b;\n\t double f = (double)a / (double)b;\n\t System.out.println(d + \" \" + r);\n\t System.out.println(String.format(\"%.5f\", f));\n\t}\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main{\n public static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\twhile(scan.hasNext()) {\n\t String input = scan.nextLine();\n\t String[] inputs = input.split(\" \");\n\t int a = Integer.parseInt(inputs[0]);\n\t int b = Integer.parseInt(inputs[1]);\n\t int d = a / b;\n\t int r = a % b;\n\t double f = (double)a / (double)b;\n\t System.out.println(d + \" \" + r);\n\t System.out.println(String.format(\"%.5f\", f));\n\t}\n }\n}", "Main", "public static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\twhile(scan.hasNext()) {\n\t String input = scan.nextLine();\n\t String[] inputs = input.split(\" \");\n\t int a = Integer.parseInt(inputs[0]);\n\t int b = Integer.parseInt(inputs[1]);\n\t int d = a / b;\n\t int r = a % b;\n\t double f = (double)a / (double)b;\n\t System.out.println(d + \" \" + r);\n\t System.out.println(String.format(\"%.5f\", f));\n\t}\n }", "main", "{\n\tScanner scan = new Scanner(System.in);\n\twhile(scan.hasNext()) {\n\t String input = scan.nextLine();\n\t String[] inputs = input.split(\" \");\n\t int a = Integer.parseInt(inputs[0]);\n\t int b = Integer.parseInt(inputs[1]);\n\t int d = a / b;\n\t int r = a % b;\n\t double f = (double)a / (double)b;\n\t System.out.println(d + \" \" + r);\n\t System.out.println(String.format(\"%.5f\", f));\n\t}\n }", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "while(scan.hasNext()) {\n\t String input = scan.nextLine();\n\t String[] inputs = input.split(\" \");\n\t int a = Integer.parseInt(inputs[0]);\n\t int b = Integer.parseInt(inputs[1]);\n\t int d = a / b;\n\t int r = a % b;\n\t double f = (double)a / (double)b;\n\t System.out.println(d + \" \" + r);\n\t System.out.println(String.format(\"%.5f\", f));\n\t}", "scan.hasNext()", "scan.hasNext", "scan", "{\n\t String input = scan.nextLine();\n\t String[] inputs = input.split(\" \");\n\t int a = Integer.parseInt(inputs[0]);\n\t int b = Integer.parseInt(inputs[1]);\n\t int d = a / b;\n\t int r = a % b;\n\t double f = (double)a / (double)b;\n\t System.out.println(d + \" \" + r);\n\t System.out.println(String.format(\"%.5f\", f));\n\t}", "String input = scan.nextLine();", "input", "scan.nextLine()", "scan.nextLine", "scan", "String[] inputs = input.split(\" \");", "inputs", "input.split(\" \")", "input.split", "input", "\" \"", "int a = Integer.parseInt(inputs[0]);", "a", "Integer.parseInt(inputs[0])", "Integer.parseInt", "Integer", "inputs[0]", "inputs", "0", "int b = Integer.parseInt(inputs[1]);", "b", "Integer.parseInt(inputs[1])", "Integer.parseInt", "Integer", "inputs[1]", "inputs", "1", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = (double)a / (double)b;", "f", "(double)a / (double)b", "(double)a", "(double)b", "System.out.println(d + \" \" + r)", "System.out.println", "System.out", "System", "System.out", "d + \" \" + r", "d + \" \" + r", "d", "\" \"", "r", "System.out.println(String.format(\"%.5f\", f))", "System.out.println", "System.out", "System", "System.out", "String.format(\"%.5f\", f)", "String.format", "String", "\"%.5f\"", "f", "String[] args", "args", "public class Main{\n public static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\twhile(scan.hasNext()) {\n\t String input = scan.nextLine();\n\t String[] inputs = input.split(\" \");\n\t int a = Integer.parseInt(inputs[0]);\n\t int b = Integer.parseInt(inputs[1]);\n\t int d = a / b;\n\t int r = a % b;\n\t double f = (double)a / (double)b;\n\t System.out.println(d + \" \" + r);\n\t System.out.println(String.format(\"%.5f\", f));\n\t}\n }\n}", "public class Main{\n public static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\twhile(scan.hasNext()) {\n\t String input = scan.nextLine();\n\t String[] inputs = input.split(\" \");\n\t int a = Integer.parseInt(inputs[0]);\n\t int b = Integer.parseInt(inputs[1]);\n\t int d = a / b;\n\t int r = a % b;\n\t double f = (double)a / (double)b;\n\t System.out.println(d + \" \" + r);\n\t System.out.println(String.format(\"%.5f\", f));\n\t}\n }\n}", "Main" ]
import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner scan = new Scanner(System.in); while(scan.hasNext()) { String input = scan.nextLine(); String[] inputs = input.split(" "); int a = Integer.parseInt(inputs[0]); int b = Integer.parseInt(inputs[1]); int d = a / b; int r = a % b; double f = (double)a / (double)b; System.out.println(d + " " + r); System.out.println(String.format("%.5f", f)); } } }
[ 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, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 0, 13, 2, 13, 13, 0, 13, 2, 17, 2, 13, 13, 41, 13, 4, 18, 13, 13, 41, 13, 4, 18, 13, 13, 0, 13, 2, 17, 4, 18, 13, 17, 2, 13, 13, 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 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 20, 25 ], [ 14, 26 ], [ 26, 27 ], [ 26, 28 ], [ 14, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 31, 34 ], [ 34, 35 ], [ 34, 36 ], [ 14, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 39, 42 ], [ 42, 43 ], [ 42, 44 ], [ 14, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 47, 49 ], [ 14, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 14, 57 ], [ 57, 58 ], [ 57, 59 ], [ 59, 60 ], [ 60, 61 ], [ 59, 62 ], [ 14, 63 ], [ 63, 64 ], [ 63, 65 ], [ 65, 66 ], [ 66, 67 ], [ 65, 68 ], [ 14, 69 ], [ 69, 70 ], [ 69, 71 ], [ 71, 72 ], [ 71, 73 ], [ 73, 74 ], [ 74, 75 ], [ 73, 76 ], [ 73, 77 ], [ 77, 78 ], [ 77, 79 ], [ 14, 80 ], [ 80, 81 ], [ 81, 82 ], [ 82, 83 ], [ 82, 84 ], [ 80, 85 ], [ 12, 86 ], [ 86, 87 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\nclass Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] strNumArrays = br.readLine().split(\" \");\n\t\tString answer = \"\";\n\t\tInteger a = Integer.parseInt(strNumArrays[0]);\n\t\tInteger b = Integer.parseInt(strNumArrays[1]);\n\t\tanswer += a / b;\n\t\tanswer += \" \" + a % b;\n\t\tdouble dA = Double.valueOf(a);\n\t\tdouble dB = Double.valueOf(b);\n\t\tanswer += \" \" + String.format(\"%.5f\", dA / dB);\n\t\tSystem.out.println(answer);\n\t}\n\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] strNumArrays = br.readLine().split(\" \");\n\t\tString answer = \"\";\n\t\tInteger a = Integer.parseInt(strNumArrays[0]);\n\t\tInteger b = Integer.parseInt(strNumArrays[1]);\n\t\tanswer += a / b;\n\t\tanswer += \" \" + a % b;\n\t\tdouble dA = Double.valueOf(a);\n\t\tdouble dB = Double.valueOf(b);\n\t\tanswer += \" \" + String.format(\"%.5f\", dA / dB);\n\t\tSystem.out.println(answer);\n\t}\n\n}", "Main", "public static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] strNumArrays = br.readLine().split(\" \");\n\t\tString answer = \"\";\n\t\tInteger a = Integer.parseInt(strNumArrays[0]);\n\t\tInteger b = Integer.parseInt(strNumArrays[1]);\n\t\tanswer += a / b;\n\t\tanswer += \" \" + a % b;\n\t\tdouble dA = Double.valueOf(a);\n\t\tdouble dB = Double.valueOf(b);\n\t\tanswer += \" \" + String.format(\"%.5f\", dA / dB);\n\t\tSystem.out.println(answer);\n\t}", "main", "{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] strNumArrays = br.readLine().split(\" \");\n\t\tString answer = \"\";\n\t\tInteger a = Integer.parseInt(strNumArrays[0]);\n\t\tInteger b = Integer.parseInt(strNumArrays[1]);\n\t\tanswer += a / b;\n\t\tanswer += \" \" + a % b;\n\t\tdouble dA = Double.valueOf(a);\n\t\tdouble dB = Double.valueOf(b);\n\t\tanswer += \" \" + String.format(\"%.5f\", dA / dB);\n\t\tSystem.out.println(answer);\n\t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String[] strNumArrays = br.readLine().split(\" \");", "strNumArrays", "br.readLine().split(\" \")", "br.readLine().split", "br.readLine()", "br.readLine", "br", "\" \"", "String answer = \"\";", "answer", "\"\"", "Integer a = Integer.parseInt(strNumArrays[0]);", "a", "Integer.parseInt(strNumArrays[0])", "Integer.parseInt", "Integer", "strNumArrays[0]", "strNumArrays", "0", "Integer b = Integer.parseInt(strNumArrays[1]);", "b", "Integer.parseInt(strNumArrays[1])", "Integer.parseInt", "Integer", "strNumArrays[1]", "strNumArrays", "1", "answer += a / b", "answer", "a / b", "a", "b", "answer += \" \" + a % b", "answer", "\" \" + a % b", "\" \"", "a % b", "a", "b", "double dA = Double.valueOf(a);", "dA", "Double.valueOf(a)", "Double.valueOf", "Double", "a", "double dB = Double.valueOf(b);", "dB", "Double.valueOf(b)", "Double.valueOf", "Double", "b", "answer += \" \" + String.format(\"%.5f\", dA / dB)", "answer", "\" \" + String.format(\"%.5f\", dA / dB)", "\" \"", "String.format(\"%.5f\", dA / dB)", "String.format", "String", "\"%.5f\"", "dA / dB", "dA", "dB", "System.out.println(answer)", "System.out.println", "System.out", "System", "System.out", "answer", "String[] args", "args" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] strNumArrays = br.readLine().split(" "); String answer = ""; Integer a = Integer.parseInt(strNumArrays[0]); Integer b = Integer.parseInt(strNumArrays[1]); answer += a / b; answer += " " + a % b; double dA = Double.valueOf(a); double dB = Double.valueOf(b); answer += " " + String.format("%.5f", dA / dB); System.out.println(answer); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 17, 13, 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 ], [ 19, 22 ], [ 8, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 25, 28 ], [ 28, 29 ], [ 28, 30 ], [ 8, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 34, 35 ], [ 33, 36 ], [ 36, 37 ], [ 36, 38 ], [ 8, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 41, 43 ], [ 8, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 46, 48 ], [ 8, 49 ], [ 49, 50 ], [ 49, 51 ], [ 51, 52 ], [ 51, 53 ], [ 8, 54 ], [ 54, 55 ], [ 55, 56 ], [ 56, 57 ], [ 56, 58 ], [ 54, 59 ], [ 62, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 61, 65 ], [ 60, 66 ], [ 62, 67 ], [ 67, 68 ], [ 68, 69 ], [ 67, 70 ], [ 67, 71 ], [ 6, 72 ], [ 72, 73 ], [ 0, 74 ], [ 74, 75 ], [ 74, 76 ] ]
[ "import java.util.*; \n\npublic class Main {\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n String line = sc.nextLine();\n String[] l = line.split(\" \");\n int a = Integer.parseInt(l[0]);\n int b = Integer.parseInt(l[1]);\n\n int d = a / b;\n int r = a % b;\n double f = (double)a / b;\n System.out.println(d + \" \" + r + \" \" + String.format(\"%f\", f));\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 String line = sc.nextLine();\n String[] l = line.split(\" \");\n int a = Integer.parseInt(l[0]);\n int b = Integer.parseInt(l[1]);\n\n int d = a / b;\n int r = a % b;\n double f = (double)a / b;\n System.out.println(d + \" \" + r + \" \" + String.format(\"%f\", f));\n } \n}", "Main", "public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n String line = sc.nextLine();\n String[] l = line.split(\" \");\n int a = Integer.parseInt(l[0]);\n int b = Integer.parseInt(l[1]);\n\n int d = a / b;\n int r = a % b;\n double f = (double)a / b;\n System.out.println(d + \" \" + r + \" \" + String.format(\"%f\", f));\n }", "main", "{\n\n Scanner sc = new Scanner(System.in);\n String line = sc.nextLine();\n String[] l = line.split(\" \");\n int a = Integer.parseInt(l[0]);\n int b = Integer.parseInt(l[1]);\n\n int d = a / b;\n int r = a % b;\n double f = (double)a / b;\n System.out.println(d + \" \" + r + \" \" + String.format(\"%f\", f));\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "String line = sc.nextLine();", "line", "sc.nextLine()", "sc.nextLine", "sc", "String[] l = line.split(\" \");", "l", "line.split(\" \")", "line.split", "line", "\" \"", "int a = Integer.parseInt(l[0]);", "a", "Integer.parseInt(l[0])", "Integer.parseInt", "Integer", "l[0]", "l", "0", "int b = Integer.parseInt(l[1]);", "b", "Integer.parseInt(l[1])", "Integer.parseInt", "Integer", "l[1]", "l", "1", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = (double)a / b;", "f", "(double)a / b", "(double)a", "b", "System.out.println(d + \" \" + r + \" \" + String.format(\"%f\", f))", "System.out.println", "System.out", "System", "System.out", "d + \" \" + r + \" \" + String.format(\"%f\", f)", "\" \"", "r", "d + \" \" + r + \" \" + String.format(\"%f\", f)", "d", "\" \"", "r", "\" \"", "String.format(\"%f\", f)", "String.format", "String", "\"%f\"", "f", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n String line = sc.nextLine();\n String[] l = line.split(\" \");\n int a = Integer.parseInt(l[0]);\n int b = Integer.parseInt(l[1]);\n\n int d = a / b;\n int r = a % b;\n double f = (double)a / b;\n System.out.println(d + \" \" + r + \" \" + String.format(\"%f\", f));\n } \n}", "public class Main {\n public static void main(String[] args) {\n\n Scanner sc = new Scanner(System.in);\n String line = sc.nextLine();\n String[] l = line.split(\" \");\n int a = Integer.parseInt(l[0]);\n int b = Integer.parseInt(l[1]);\n\n int d = a / b;\n int r = a % b;\n double f = (double)a / b;\n System.out.println(d + \" \" + r + \" \" + String.format(\"%f\", f));\n } \n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String line = sc.nextLine(); String[] l = line.split(" "); int a = Integer.parseInt(l[0]); int b = Integer.parseInt(l[1]); int d = a / b; int r = a % b; double f = (double)a / b; System.out.println(d + " " + r + " " + String.format("%f", f)); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 41, 13, 41, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 13, 17, 13, 17, 4, 18, 18, 13, 13, 17, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 8, 24 ], [ 24, 25 ], [ 8, 26 ], [ 26, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 30, 32 ], [ 8, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 35, 37 ], [ 8, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 40, 42 ], [ 8, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 43, 48 ], [ 50, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 49, 53 ], [ 50, 54 ], [ 8, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 55, 60 ], [ 55, 61 ], [ 6, 62 ], [ 62, 63 ] ]
[ "import java.util.Scanner;\nclass Main{\npublic static void main(String[] args){\nScanner scan =new Scanner(System.in);\n\nint a=scan.nextInt();\nint b=scan.nextInt();\nint c,d;\ndouble e;\nc=a/b;\nd=a%b;\ne=(double)a/(double)b;\nSystem.out.print(c+\" \"+d+\" \");\nSystem.out.printf(\"%f\\n\",e);\n}\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main{\npublic static void main(String[] args){\nScanner scan =new Scanner(System.in);\n\nint a=scan.nextInt();\nint b=scan.nextInt();\nint c,d;\ndouble e;\nc=a/b;\nd=a%b;\ne=(double)a/(double)b;\nSystem.out.print(c+\" \"+d+\" \");\nSystem.out.printf(\"%f\\n\",e);\n}\n}", "Main", "public static void main(String[] args){\nScanner scan =new Scanner(System.in);\n\nint a=scan.nextInt();\nint b=scan.nextInt();\nint c,d;\ndouble e;\nc=a/b;\nd=a%b;\ne=(double)a/(double)b;\nSystem.out.print(c+\" \"+d+\" \");\nSystem.out.printf(\"%f\\n\",e);\n}", "main", "{\nScanner scan =new Scanner(System.in);\n\nint a=scan.nextInt();\nint b=scan.nextInt();\nint c,d;\ndouble e;\nc=a/b;\nd=a%b;\ne=(double)a/(double)b;\nSystem.out.print(c+\" \"+d+\" \");\nSystem.out.printf(\"%f\\n\",e);\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", "c", "d;", "d", "double e;", "e", "c=a/b", "c", "a/b", "a", "b", "d=a%b", "d", "a%b", "a", "b", "e=(double)a/(double)b", "e", "(double)a/(double)b", "(double)a", "(double)b", "System.out.print(c+\" \"+d+\" \")", "System.out.print", "System.out", "System", "System.out", "c+\" \"+d+\" \"", "d", "c+\" \"+d+\" \"", "c", "\" \"", "d", "\" \"", "System.out.printf(\"%f\\n\",e)", "System.out.printf", "System.out", "System", "System.out", "\"%f\\n\"", "e", "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,d; double e; c=a/b; d=a%b; e=(double)a/(double)b; System.out.print(c+" "+d+" "); System.out.printf("%f\n",e); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 41, 13, 41, 13, 20, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 41, 13, 20, 41, 13, 20, 41, 13, 20, 0, 13, 4, 18, 13, 13, 17, 18, 13, 13, 41, 13, 20, 4, 18, 13, 17, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 13, 13, 17, 2, 13, 13, 17, 4, 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 ], [ 14, 17 ], [ 17, 18 ], [ 14, 19 ], [ 19, 20 ], [ 19, 21 ], [ 14, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 14, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 14, 32 ], [ 32, 33 ], [ 32, 34 ], [ 14, 35 ], [ 35, 36 ], [ 35, 37 ], [ 14, 38 ], [ 38, 39 ], [ 38, 40 ], [ 14, 41 ], [ 41, 42 ], [ 41, 43 ], [ 43, 44 ], [ 44, 45 ], [ 43, 46 ], [ 43, 47 ], [ 43, 48 ], [ 48, 49 ], [ 48, 50 ], [ 14, 51 ], [ 51, 52 ], [ 51, 53 ], [ 14, 54 ], [ 54, 55 ], [ 55, 56 ], [ 54, 57 ], [ 14, 58 ], [ 58, 59 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 58, 63 ], [ 66, 64 ], [ 64, 65 ], [ 71, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 66, 70 ], [ 71, 71 ], [ 71, 72 ], [ 71, 73 ], [ 64, 74 ], [ 66, 75 ], [ 75, 76 ], [ 76, 77 ], [ 75, 78 ], [ 14, 79 ], [ 79, 80 ], [ 80, 81 ], [ 12, 82 ], [ 82, 83 ] ]
[ "import java.math.BigDecimal;\nimport java.text.DecimalFormat;\nimport java.util.Scanner;\n\nclass Main{\n \n\tpublic static void main(String[] args) {\n\n\t\tint a,b;\n\t\t//double db;\n\n\t\tScanner scan = new Scanner(System.in);\n\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\n\t\tBigDecimal aa = new BigDecimal(a);\n\t\tBigDecimal bb = new BigDecimal(b);\n\t\t\n\t\tBigDecimal div = new BigDecimal(\"0.00000000\");\n\n\t\tdiv = aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP);\n\t\t\n\t\tDecimalFormat format = new DecimalFormat(\"#.#\");\n\t\tformat.setMinimumFractionDigits(8);\n\n\t\tSystem.out.println(a/b + \" \" + a%b + \" \"+ format.format(div));\n\t\tscan.close();\n\t}\n}", "import java.math.BigDecimal;", "BigDecimal", "java.math", "import java.text.DecimalFormat;", "DecimalFormat", "java.text", "import java.util.Scanner;", "Scanner", "java.util", "class Main{\n \n\tpublic static void main(String[] args) {\n\n\t\tint a,b;\n\t\t//double db;\n\n\t\tScanner scan = new Scanner(System.in);\n\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\n\t\tBigDecimal aa = new BigDecimal(a);\n\t\tBigDecimal bb = new BigDecimal(b);\n\t\t\n\t\tBigDecimal div = new BigDecimal(\"0.00000000\");\n\n\t\tdiv = aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP);\n\t\t\n\t\tDecimalFormat format = new DecimalFormat(\"#.#\");\n\t\tformat.setMinimumFractionDigits(8);\n\n\t\tSystem.out.println(a/b + \" \" + a%b + \" \"+ format.format(div));\n\t\tscan.close();\n\t}\n}", "Main", "public static void main(String[] args) {\n\n\t\tint a,b;\n\t\t//double db;\n\n\t\tScanner scan = new Scanner(System.in);\n\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\n\t\tBigDecimal aa = new BigDecimal(a);\n\t\tBigDecimal bb = new BigDecimal(b);\n\t\t\n\t\tBigDecimal div = new BigDecimal(\"0.00000000\");\n\n\t\tdiv = aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP);\n\t\t\n\t\tDecimalFormat format = new DecimalFormat(\"#.#\");\n\t\tformat.setMinimumFractionDigits(8);\n\n\t\tSystem.out.println(a/b + \" \" + a%b + \" \"+ format.format(div));\n\t\tscan.close();\n\t}", "main", "{\n\n\t\tint a,b;\n\t\t//double db;\n\n\t\tScanner scan = new Scanner(System.in);\n\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\n\t\tBigDecimal aa = new BigDecimal(a);\n\t\tBigDecimal bb = new BigDecimal(b);\n\t\t\n\t\tBigDecimal div = new BigDecimal(\"0.00000000\");\n\n\t\tdiv = aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP);\n\t\t\n\t\tDecimalFormat format = new DecimalFormat(\"#.#\");\n\t\tformat.setMinimumFractionDigits(8);\n\n\t\tSystem.out.println(a/b + \" \" + a%b + \" \"+ format.format(div));\n\t\tscan.close();\n\t}", "int a", "a", "b;", "b", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "a = scan.nextInt()", "a", "scan.nextInt()", "scan.nextInt", "scan", "b = scan.nextInt()", "b", "scan.nextInt()", "scan.nextInt", "scan", "BigDecimal aa = new BigDecimal(a);", "aa", "new BigDecimal(a)", "BigDecimal bb = new BigDecimal(b);", "bb", "new BigDecimal(b)", "BigDecimal div = new BigDecimal(\"0.00000000\");", "div", "new BigDecimal(\"0.00000000\")", "div = aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP)", "div", "aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP)", "aa.divide", "aa", "bb", "8", "BigDecimal.ROUND_HALF_UP", "BigDecimal", "BigDecimal.ROUND_HALF_UP", "DecimalFormat format = new DecimalFormat(\"#.#\");", "format", "new DecimalFormat(\"#.#\")", "format.setMinimumFractionDigits(8)", "format.setMinimumFractionDigits", "format", "8", "System.out.println(a/b + \" \" + a%b + \" \"+ format.format(div))", "System.out.println", "System.out", "System", "System.out", "a/b + \" \" + a%b + \" \"+ format.format(div)", "\" \"", "a%b", "a/b + \" \" + a%b + \" \"+ format.format(div)", "a/b", "a", "b", "\" \"", "a%b", "a", "b", "\" \"", "format.format(div)", "format.format", "format", "div", "scan.close()", "scan.close", "scan", "String[] args", "args" ]
import java.math.BigDecimal; import java.text.DecimalFormat; import java.util.Scanner; class Main{ public static void main(String[] args) { int a,b; //double db; Scanner scan = new Scanner(System.in); a = scan.nextInt(); b = scan.nextInt(); BigDecimal aa = new BigDecimal(a); BigDecimal bb = new BigDecimal(b); BigDecimal div = new BigDecimal("0.00000000"); div = aa.divide(bb, 8, BigDecimal.ROUND_HALF_UP); DecimalFormat format = new DecimalFormat("#.#"); format.setMinimumFractionDigits(8); System.out.println(a/b + " " + a%b + " "+ format.format(div)); scan.close(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 17, 2, 13, 13, 2, 13, 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 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 22, 28 ], [ 28, 29 ], [ 28, 30 ], [ 22, 31 ], [ 31, 32 ], [ 31, 33 ], [ 22, 34 ], [ 34, 35 ], [ 34, 36 ], [ 6, 37 ], [ 37, 38 ] ]
[ "\n\nimport java.util.Scanner;\n\nclass Main {\n\t@SuppressWarnings(\"resource\")\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\t\n\t\tSystem.out.printf(\"%d %d %f\\n\", a/b, a%b, (double)a/b);\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main {\n\t@SuppressWarnings(\"resource\")\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\t\n\t\tSystem.out.printf(\"%d %d %f\\n\", a/b, a%b, (double)a/b);\n\t}\n}", "Main", "@SuppressWarnings(\"resource\")\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\t\n\t\tSystem.out.printf(\"%d %d %f\\n\", a/b, a%b, (double)a/b);\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\t\n\t\tSystem.out.printf(\"%d %d %f\\n\", a/b, a%b, (double)a/b);\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", "System.out.printf(\"%d %d %f\\n\", a/b, a%b, (double)a/b)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\\n\"", "a/b", "a", "b", "a%b", "a", "b", "(double)a/b", "(double)a", "b", "String[] args", "args" ]
import java.util.Scanner; class Main { @SuppressWarnings("resource") public static void main(String[] args) { Scanner scan = new Scanner(System.in); int a = scan.nextInt(); int b = scan.nextInt(); System.out.printf("%d %d %f\n", a/b, a%b, (double)a/b); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 17, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 13, 41, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 13, 17, 13, 17, 4, 18, 18, 13, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 89, 11 ], [ 89, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 14, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 25, 28 ], [ 25, 29 ], [ 14, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 32, 35 ], [ 35, 36 ], [ 35, 37 ], [ 14, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 43, 44 ], [ 43, 45 ], [ 14, 46 ], [ 46, 47 ], [ 46, 48 ], [ 14, 49 ], [ 49, 50 ], [ 49, 51 ], [ 14, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 14, 57 ], [ 57, 58 ], [ 57, 59 ], [ 59, 60 ], [ 59, 61 ], [ 14, 62 ], [ 62, 63 ], [ 62, 64 ], [ 64, 65 ], [ 64, 66 ], [ 14, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 67, 72 ], [ 74, 73 ], [ 73, 74 ], [ 74, 75 ], [ 74, 76 ], [ 73, 77 ], [ 74, 78 ], [ 14, 79 ], [ 79, 80 ], [ 80, 81 ], [ 81, 82 ], [ 81, 83 ], [ 79, 84 ], [ 79, 85 ], [ 12, 86 ], [ 86, 87 ], [ 0, 88 ], [ 88, 89 ], [ 88, 90 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\tpublic static void main(String args[]) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] a_b = str.split(\" \", 0);\n\n\t\tint a = Integer.parseInt(a_b[0]);\n\t\tint b = Integer.parseInt(a_b[1]);\n\t\tdouble af = a;\n\t\tdouble bf = b;\n\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = af / bf;\n\n\t\tSystem.out.print(d + \" \" + r + \" \");\n\t\tSystem.out.printf(\"%.6f\", f);\n\t}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n\tpublic static void main(String args[]) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] a_b = str.split(\" \", 0);\n\n\t\tint a = Integer.parseInt(a_b[0]);\n\t\tint b = Integer.parseInt(a_b[1]);\n\t\tdouble af = a;\n\t\tdouble bf = b;\n\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = af / bf;\n\n\t\tSystem.out.print(d + \" \" + r + \" \");\n\t\tSystem.out.printf(\"%.6f\", f);\n\t}\n}", "Main", "public static void main(String args[]) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] a_b = str.split(\" \", 0);\n\n\t\tint a = Integer.parseInt(a_b[0]);\n\t\tint b = Integer.parseInt(a_b[1]);\n\t\tdouble af = a;\n\t\tdouble bf = b;\n\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = af / bf;\n\n\t\tSystem.out.print(d + \" \" + r + \" \");\n\t\tSystem.out.printf(\"%.6f\", f);\n\t}", "main", "{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] a_b = str.split(\" \", 0);\n\n\t\tint a = Integer.parseInt(a_b[0]);\n\t\tint b = Integer.parseInt(a_b[1]);\n\t\tdouble af = a;\n\t\tdouble bf = b;\n\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = af / bf;\n\n\t\tSystem.out.print(d + \" \" + r + \" \");\n\t\tSystem.out.printf(\"%.6f\", f);\n\t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String str = br.readLine();", "str", "br.readLine()", "br.readLine", "br", "String[] a_b = str.split(\" \", 0);", "a_b", "str.split(\" \", 0)", "str.split", "str", "\" \"", "0", "int a = Integer.parseInt(a_b[0]);", "a", "Integer.parseInt(a_b[0])", "Integer.parseInt", "Integer", "a_b[0]", "a_b", "0", "int b = Integer.parseInt(a_b[1]);", "b", "Integer.parseInt(a_b[1])", "Integer.parseInt", "Integer", "a_b[1]", "a_b", "1", "double af = a;", "af", "a", "double bf = b;", "bf", "b", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = af / bf;", "f", "af / bf", "af", "bf", "System.out.print(d + \" \" + r + \" \")", "System.out.print", "System.out", "System", "System.out", "d + \" \" + r + \" \"", "r", "d + \" \" + r + \" \"", "d", "\" \"", "r", "\" \"", "System.out.printf(\"%.6f\", f)", "System.out.printf", "System.out", "System", "System.out", "\"%.6f\"", "f", "String args[]", "args", "public class Main {\n\tpublic static void main(String args[]) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] a_b = str.split(\" \", 0);\n\n\t\tint a = Integer.parseInt(a_b[0]);\n\t\tint b = Integer.parseInt(a_b[1]);\n\t\tdouble af = a;\n\t\tdouble bf = b;\n\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = af / bf;\n\n\t\tSystem.out.print(d + \" \" + r + \" \");\n\t\tSystem.out.printf(\"%.6f\", f);\n\t}\n}", "public class Main {\n\tpublic static void main(String args[]) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] a_b = str.split(\" \", 0);\n\n\t\tint a = Integer.parseInt(a_b[0]);\n\t\tint b = Integer.parseInt(a_b[1]);\n\t\tdouble af = a;\n\t\tdouble bf = b;\n\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = af / bf;\n\n\t\tSystem.out.print(d + \" \" + r + \" \");\n\t\tSystem.out.printf(\"%.6f\", f);\n\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String args[]) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String str = br.readLine(); String[] a_b = str.split(" ", 0); int a = Integer.parseInt(a_b[0]); int b = Integer.parseInt(a_b[1]); double af = a; double bf = b; int d = a / b; int r = a % b; double f = af / bf; System.out.print(d + " " + r + " "); System.out.printf("%.6f", f); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 38, 5, 13, 30, 4, 18, 18, 13, 13, 13, 5, 13, 30, 4, 18, 18, 13, 13, 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 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 ], [ 13, 14 ], [ 13, 15 ], [ 15, 16 ], [ 16, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 16, 21 ], [ 12, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 25, 30 ], [ 12, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 36, 37 ], [ 37, 38 ], [ 34, 39 ], [ 31, 40 ], [ 40, 41 ], [ 40, 42 ], [ 42, 43 ], [ 43, 44 ], [ 42, 45 ], [ 45, 46 ], [ 45, 47 ], [ 31, 48 ], [ 48, 49 ], [ 48, 50 ], [ 50, 51 ], [ 51, 52 ], [ 50, 53 ], [ 53, 54 ], [ 53, 55 ], [ 31, 56 ], [ 56, 57 ], [ 56, 58 ], [ 58, 59 ], [ 58, 60 ], [ 31, 61 ], [ 61, 62 ], [ 61, 63 ], [ 63, 64 ], [ 63, 65 ], [ 31, 66 ], [ 66, 67 ], [ 66, 68 ], [ 68, 69 ], [ 68, 70 ], [ 31, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 71, 76 ], [ 71, 77 ], [ 71, 78 ], [ 71, 79 ], [ 6, 80 ], [ 80, 81 ] ]
[ "import java.io.*;\n\nclass Main {\n\n public static void main(String[] args) {\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\n try {\n String[] line = reader.readLine().split(\" \");\n int a = Integer.parseInt(line[0]);\n int b = Integer.parseInt(line[1]);\n\n int d = a / b;\n int r = a % b;\n double f = (double) a / b;\n\n System.out.printf(\"%d %d %f\", d, r, f);\n } catch (NumberFormatException e) {\n System.out.println(e);\n } catch (IOException e) {\n System.out.println(e);\n }\n }\n\n}", "import java.io.*;", "io.*", "java", "class Main {\n\n public static void main(String[] args) {\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\n try {\n String[] line = reader.readLine().split(\" \");\n int a = Integer.parseInt(line[0]);\n int b = Integer.parseInt(line[1]);\n\n int d = a / b;\n int r = a % b;\n double f = (double) a / b;\n\n System.out.printf(\"%d %d %f\", d, r, f);\n } catch (NumberFormatException e) {\n System.out.println(e);\n } catch (IOException e) {\n System.out.println(e);\n }\n }\n\n}", "Main", "public static void main(String[] args) {\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\n try {\n String[] line = reader.readLine().split(\" \");\n int a = Integer.parseInt(line[0]);\n int b = Integer.parseInt(line[1]);\n\n int d = a / b;\n int r = a % b;\n double f = (double) a / b;\n\n System.out.printf(\"%d %d %f\", d, r, f);\n } catch (NumberFormatException e) {\n System.out.println(e);\n } catch (IOException e) {\n System.out.println(e);\n }\n }", "main", "{\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\n try {\n String[] line = reader.readLine().split(\" \");\n int a = Integer.parseInt(line[0]);\n int b = Integer.parseInt(line[1]);\n\n int d = a / b;\n int r = a % b;\n double f = (double) a / b;\n\n System.out.printf(\"%d %d %f\", d, r, f);\n } catch (NumberFormatException e) {\n System.out.println(e);\n } catch (IOException e) {\n System.out.println(e);\n }\n }", "BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));", "reader", "new BufferedReader(new InputStreamReader(System.in))", "try {\n String[] line = reader.readLine().split(\" \");\n int a = Integer.parseInt(line[0]);\n int b = Integer.parseInt(line[1]);\n\n int d = a / b;\n int r = a % b;\n double f = (double) a / b;\n\n System.out.printf(\"%d %d %f\", d, r, f);\n } catch (NumberFormatException e) {\n System.out.println(e);\n } catch (IOException e) {\n System.out.println(e);\n }", "catch (NumberFormatException e) {\n System.out.println(e);\n }", "NumberFormatException e", "{\n System.out.println(e);\n }", "System.out.println(e)", "System.out.println", "System.out", "System", "System.out", "e", "catch (IOException e) {\n System.out.println(e);\n }", "IOException e", "{\n System.out.println(e);\n }", "System.out.println(e)", "System.out.println", "System.out", "System", "System.out", "e", "{\n String[] line = reader.readLine().split(\" \");\n int a = Integer.parseInt(line[0]);\n int b = Integer.parseInt(line[1]);\n\n int d = a / b;\n int r = a % b;\n double f = (double) a / b;\n\n System.out.printf(\"%d %d %f\", d, r, f);\n }", "String[] line = reader.readLine().split(\" \");", "line", "reader.readLine().split(\" \")", "reader.readLine().split", "reader.readLine()", "reader.readLine", "reader", "\" \"", "int a = Integer.parseInt(line[0]);", "a", "Integer.parseInt(line[0])", "Integer.parseInt", "Integer", "line[0]", "line", "0", "int b = Integer.parseInt(line[1]);", "b", "Integer.parseInt(line[1])", "Integer.parseInt", "Integer", "line[1]", "line", "1", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = (double) a / b;", "f", "(double) a / b", "(double) a", "b", "System.out.printf(\"%d %d %f\", d, r, f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\"", "d", "r", "f", "String[] args", "args" ]
import java.io.*; class Main { public static void main(String[] args) { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); try { String[] line = reader.readLine().split(" "); int a = Integer.parseInt(line[0]); int b = Integer.parseInt(line[1]); int d = a / b; int r = a % b; double f = (double) a / b; System.out.printf("%d %d %f", d, r, f); } catch (NumberFormatException e) { System.out.println(e); } catch (IOException e) { System.out.println(e); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 2, 17, 13, 13, 41, 13, 4, 18, 13, 17, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 29, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 34, 38 ], [ 8, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 42, 43 ], [ 41, 44 ], [ 41, 45 ], [ 8, 46 ], [ 46, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 46, 51 ], [ 54, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 53, 57 ], [ 52, 58 ], [ 54, 59 ], [ 6, 60 ], [ 60, 61 ] ]
[ "import java.util.Scanner;\nclass Main {\n\t\n\tpublic static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\t\n\t\tint a = scanner.nextInt();\n\t\tint b = scanner.nextInt();\n\t\tint quo = a / b;\n\t\tint rem = a % b;\n\t\tdouble de = 1.0 * a / b;\n\t\tString dec = String.format(\"%.8f\", de);\n\t\tSystem.out.println(quo+\" \"+rem+\" \"+dec);\n\t}\t\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main {\n\t\n\tpublic static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\t\n\t\tint a = scanner.nextInt();\n\t\tint b = scanner.nextInt();\n\t\tint quo = a / b;\n\t\tint rem = a % b;\n\t\tdouble de = 1.0 * a / b;\n\t\tString dec = String.format(\"%.8f\", de);\n\t\tSystem.out.println(quo+\" \"+rem+\" \"+dec);\n\t}\t\n}", "Main", "public static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\t\n\t\tint a = scanner.nextInt();\n\t\tint b = scanner.nextInt();\n\t\tint quo = a / b;\n\t\tint rem = a % b;\n\t\tdouble de = 1.0 * a / b;\n\t\tString dec = String.format(\"%.8f\", de);\n\t\tSystem.out.println(quo+\" \"+rem+\" \"+dec);\n\t}", "main", "{\n\t\tScanner scanner = new Scanner(System.in);\n\t\t\n\t\tint a = scanner.nextInt();\n\t\tint b = scanner.nextInt();\n\t\tint quo = a / b;\n\t\tint rem = a % b;\n\t\tdouble de = 1.0 * a / b;\n\t\tString dec = String.format(\"%.8f\", de);\n\t\tSystem.out.println(quo+\" \"+rem+\" \"+dec);\n\t}", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "int a = scanner.nextInt();", "a", "scanner.nextInt()", "scanner.nextInt", "scanner", "int b = scanner.nextInt();", "b", "scanner.nextInt()", "scanner.nextInt", "scanner", "int quo = a / b;", "quo", "a / b", "a", "b", "int rem = a % b;", "rem", "a % b", "a", "b", "double de = 1.0 * a / b;", "de", "1.0 * a / b", "1.0 * a", "1.0", "a", "b", "String dec = String.format(\"%.8f\", de);", "dec", "String.format(\"%.8f\", de)", "String.format", "String", "\"%.8f\"", "de", "System.out.println(quo+\" \"+rem+\" \"+dec)", "System.out.println", "System.out", "System", "System.out", "quo+\" \"+rem+\" \"+dec", "\" \"", "rem", "quo+\" \"+rem+\" \"+dec", "quo", "\" \"", "rem", "\" \"", "dec", "String[] args", "args" ]
import java.util.Scanner; class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); int b = scanner.nextInt(); int quo = a / b; int rem = a % b; double de = 1.0 * a / b; String dec = String.format("%.8f", de); System.out.println(quo+" "+rem+" "+dec); } }
[ 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, 4, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 72, 11 ], [ 72, 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 ], [ 25, 26 ], [ 26, 27 ], [ 23, 28 ], [ 14, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 31, 34 ], [ 34, 35 ], [ 34, 36 ], [ 14, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 39, 42 ], [ 42, 43 ], [ 42, 44 ], [ 14, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 47, 49 ], [ 14, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 52, 54 ], [ 14, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 57, 59 ], [ 14, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 60, 65 ], [ 60, 66 ], [ 60, 67 ], [ 60, 68 ], [ 12, 69 ], [ 69, 70 ], [ 0, 71 ], [ 71, 72 ], [ 71, 73 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringBuffer sb = new StringBuffer();\n\n\t\tString[] strArray = br.readLine().split(\" \");\n\t\tint a = Integer.parseInt(strArray[0]);\n\t\tint b = Integer.parseInt(strArray[1]);\n\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tdouble f = (double)a/(double)b;\n\n\t\tSystem.out.printf(\"%d %d %05f\", d, r, f);\n\t}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringBuffer sb = new StringBuffer();\n\n\t\tString[] strArray = br.readLine().split(\" \");\n\t\tint a = Integer.parseInt(strArray[0]);\n\t\tint b = Integer.parseInt(strArray[1]);\n\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tdouble f = (double)a/(double)b;\n\n\t\tSystem.out.printf(\"%d %d %05f\", d, r, f);\n\t}\n}", "Main", "public static void main(String[] args) throws IOException {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringBuffer sb = new StringBuffer();\n\n\t\tString[] strArray = br.readLine().split(\" \");\n\t\tint a = Integer.parseInt(strArray[0]);\n\t\tint b = Integer.parseInt(strArray[1]);\n\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tdouble f = (double)a/(double)b;\n\n\t\tSystem.out.printf(\"%d %d %05f\", d, r, f);\n\t}", "main", "{\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringBuffer sb = new StringBuffer();\n\n\t\tString[] strArray = br.readLine().split(\" \");\n\t\tint a = Integer.parseInt(strArray[0]);\n\t\tint b = Integer.parseInt(strArray[1]);\n\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tdouble f = (double)a/(double)b;\n\n\t\tSystem.out.printf(\"%d %d %05f\", d, r, f);\n\t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "StringBuffer sb = new StringBuffer();", "sb", "new StringBuffer()", "String[] strArray = br.readLine().split(\" \");", "strArray", "br.readLine().split(\" \")", "br.readLine().split", "br.readLine()", "br.readLine", "br", "\" \"", "int a = Integer.parseInt(strArray[0]);", "a", "Integer.parseInt(strArray[0])", "Integer.parseInt", "Integer", "strArray[0]", "strArray", "0", "int b = Integer.parseInt(strArray[1]);", "b", "Integer.parseInt(strArray[1])", "Integer.parseInt", "Integer", "strArray[1]", "strArray", "1", "int d = a/b;", "d", "a/b", "a", "b", "int r = a%b;", "r", "a%b", "a", "b", "double f = (double)a/(double)b;", "f", "(double)a/(double)b", "(double)a", "(double)b", "System.out.printf(\"%d %d %05f\", d, r, f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %05f\"", "d", "r", "f", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringBuffer sb = new StringBuffer();\n\n\t\tString[] strArray = br.readLine().split(\" \");\n\t\tint a = Integer.parseInt(strArray[0]);\n\t\tint b = Integer.parseInt(strArray[1]);\n\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tdouble f = (double)a/(double)b;\n\n\t\tSystem.out.printf(\"%d %d %05f\", d, r, f);\n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tStringBuffer sb = new StringBuffer();\n\n\t\tString[] strArray = br.readLine().split(\" \");\n\t\tint a = Integer.parseInt(strArray[0]);\n\t\tint b = Integer.parseInt(strArray[1]);\n\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tdouble f = (double)a/(double)b;\n\n\t\tSystem.out.printf(\"%d %d %05f\", d, r, f);\n\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringBuffer sb = new StringBuffer(); String[] strArray = br.readLine().split(" "); int a = Integer.parseInt(strArray[0]); int b = Integer.parseInt(strArray[1]); int d = a/b; int r = a%b; double f = (double)a/(double)b; System.out.printf("%d %d %05f", d, r, f); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 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, 4, 18, 13, 17, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 29, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 34, 36 ], [ 8, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 39, 42 ], [ 39, 43 ], [ 8, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 44, 49 ], [ 52, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 50, 56 ], [ 52, 57 ], [ 6, 58 ], [ 58, 59 ] ]
[ "import java.util.Scanner;\nclass Main {\n public static void main(String args[]) {\n Scanner scan = new Scanner(System.in);\n\n int a = scan.nextInt();\n int b = scan.nextInt();\n\n int division = a / b;\n int remainder = a % b;\n double Floatingpoint = (double)a / (double)b;\n\n String str = String.format(\"%.16f\",Floatingpoint);\n System.out.println(division + \" \" + remainder + \" \" + str);\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main {\n public static void main(String args[]) {\n Scanner scan = new Scanner(System.in);\n\n int a = scan.nextInt();\n int b = scan.nextInt();\n\n int division = a / b;\n int remainder = a % b;\n double Floatingpoint = (double)a / (double)b;\n\n String str = String.format(\"%.16f\",Floatingpoint);\n System.out.println(division + \" \" + remainder + \" \" + str);\n }\n}", "Main", "public static void main(String args[]) {\n Scanner scan = new Scanner(System.in);\n\n int a = scan.nextInt();\n int b = scan.nextInt();\n\n int division = a / b;\n int remainder = a % b;\n double Floatingpoint = (double)a / (double)b;\n\n String str = String.format(\"%.16f\",Floatingpoint);\n System.out.println(division + \" \" + remainder + \" \" + str);\n }", "main", "{\n Scanner scan = new Scanner(System.in);\n\n int a = scan.nextInt();\n int b = scan.nextInt();\n\n int division = a / b;\n int remainder = a % b;\n double Floatingpoint = (double)a / (double)b;\n\n String str = String.format(\"%.16f\",Floatingpoint);\n System.out.println(division + \" \" + remainder + \" \" + str);\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 division = a / b;", "division", "a / b", "a", "b", "int remainder = a % b;", "remainder", "a % b", "a", "b", "double Floatingpoint = (double)a / (double)b;", "Floatingpoint", "(double)a / (double)b", "(double)a", "(double)b", "String str = String.format(\"%.16f\",Floatingpoint);", "str", "String.format(\"%.16f\",Floatingpoint)", "String.format", "String", "\"%.16f\"", "Floatingpoint", "System.out.println(division + \" \" + remainder + \" \" + str)", "System.out.println", "System.out", "System", "System.out", "division + \" \" + remainder + \" \" + str", "\" \"", "remainder", "division + \" \" + remainder + \" \" + str", "division", "\" \"", "remainder", "\" \"", "str", "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 division = a / b; int remainder = a % b; double Floatingpoint = (double)a / (double)b; String str = String.format("%.16f",Floatingpoint); System.out.println(division + " " + remainder + " " + str); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 41, 13, 17, 41, 13, 17, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 4, 18, 18, 13, 13, 13, 4, 18, 18, 13, 13, 13, 4, 18, 18, 13, 13, 17, 13, 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 ], [ 8, 24 ], [ 24, 25 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 8, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 32, 34 ], [ 8, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 37, 39 ], [ 8, 40 ], [ 40, 41 ], [ 40, 42 ], [ 42, 43 ], [ 42, 44 ], [ 8, 45 ], [ 45, 46 ], [ 46, 47 ], [ 47, 48 ], [ 47, 49 ], [ 45, 50 ], [ 8, 51 ], [ 51, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 51, 56 ], [ 8, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 57, 62 ], [ 57, 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 sc = new Scanner(System.in);\n \n int a = sc.nextInt();\n int b = sc.nextInt();\n int d,r = 0;\n double f = 0;\n \n d=a/b;\n \n r=a%b;\n \n f=(double)a/b;\n \n System.out.println(d);\n System.out.println(r);\n System.out.printf(\"%.5f\\n\",f);\n \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 d,r = 0;\n double f = 0;\n \n d=a/b;\n \n r=a%b;\n \n f=(double)a/b;\n \n System.out.println(d);\n System.out.println(r);\n System.out.printf(\"%.5f\\n\",f);\n \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 d,r = 0;\n double f = 0;\n \n d=a/b;\n \n r=a%b;\n \n f=(double)a/b;\n \n System.out.println(d);\n System.out.println(r);\n System.out.printf(\"%.5f\\n\",f);\n \n }", "main", "{\n Scanner sc = new Scanner(System.in);\n \n int a = sc.nextInt();\n int b = sc.nextInt();\n int d,r = 0;\n double f = 0;\n \n d=a/b;\n \n r=a%b;\n \n f=(double)a/b;\n \n System.out.println(d);\n System.out.println(r);\n System.out.printf(\"%.5f\\n\",f);\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 d", "d", "r = 0;", "r", "0", "double f = 0;", "f", "0", "d=a/b", "d", "a/b", "a", "b", "r=a%b", "r", "a%b", "a", "b", "f=(double)a/b", "f", "(double)a/b", "(double)a", "b", "System.out.println(d)", "System.out.println", "System.out", "System", "System.out", "d", "System.out.println(r)", "System.out.println", "System.out", "System", "System.out", "r", "System.out.printf(\"%.5f\\n\",f)", "System.out.printf", "System.out", "System", "System.out", "\"%.5f\\n\"", "f", "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 d,r = 0;\n double f = 0;\n \n d=a/b;\n \n r=a%b;\n \n f=(double)a/b;\n \n System.out.println(d);\n System.out.println(r);\n System.out.printf(\"%.5f\\n\",f);\n \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 d,r = 0;\n double f = 0;\n \n d=a/b;\n \n r=a%b;\n \n f=(double)a/b;\n \n System.out.println(d);\n System.out.println(r);\n System.out.printf(\"%.5f\\n\",f);\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 = sc.nextInt(); int b = sc.nextInt(); int d,r = 0; double f = 0; d=a/b; r=a%b; f=(double)a/b; System.out.println(d); System.out.println(r); System.out.printf("%.5f\n",f); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 4, 18, 13, 17, 2, 13, 13, 4, 18, 4, 18, 4, 18, 4, 18, 4, 18, 4, 18, 13, 13, 17, 13, 17, 13, 17, 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 ], [ 105, 11 ], [ 105, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 14, 17 ], [ 17, 18 ], [ 14, 19 ], [ 19, 20 ], [ 14, 21 ], [ 21, 22 ], [ 14, 23 ], [ 23, 24 ], [ 14, 25 ], [ 25, 26 ], [ 25, 27 ], [ 14, 28 ], [ 28, 29 ], [ 28, 30 ], [ 14, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 34, 35 ], [ 14, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 38, 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 ], [ 60, 62 ], [ 14, 63 ], [ 63, 64 ], [ 63, 65 ], [ 65, 66 ], [ 65, 67 ], [ 14, 68 ], [ 68, 69 ], [ 68, 70 ], [ 70, 71 ], [ 71, 72 ], [ 70, 73 ], [ 70, 74 ], [ 74, 75 ], [ 74, 76 ], [ 14, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 81, 82 ], [ 82, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 88, 89 ], [ 87, 90 ], [ 85, 91 ], [ 83, 92 ], [ 81, 93 ], [ 79, 94 ], [ 77, 95 ], [ 14, 96 ], [ 96, 97 ], [ 97, 98 ], [ 98, 99 ], [ 98, 100 ], [ 96, 101 ], [ 12, 102 ], [ 102, 103 ], [ 0, 104 ], [ 104, 105 ], [ 104, 106 ] ]
[ "\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n public static void main (String[] args) throws IOException {\n int a,b;\n int d,r;\n String f;\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n StringBuilder builder = new StringBuilder();\n String data = reader.readLine();\n String[] number = data.split(\" \");\n a = Integer.parseInt(number[0]);\n b = Integer.parseInt(number[1]);\n d = a / b;\n r = a % b;\n f = (String.format(\"%.5f\",((double)a /(double)b)));\n \n builder\n .append(d)\n .append(\" \")\n .append(r)\n .append(\" \")\n .append(f)\n .append(\"\\n\");\n System.out.print(builder);\n } \n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n public static void main (String[] args) throws IOException {\n int a,b;\n int d,r;\n String f;\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n StringBuilder builder = new StringBuilder();\n String data = reader.readLine();\n String[] number = data.split(\" \");\n a = Integer.parseInt(number[0]);\n b = Integer.parseInt(number[1]);\n d = a / b;\n r = a % b;\n f = (String.format(\"%.5f\",((double)a /(double)b)));\n \n builder\n .append(d)\n .append(\" \")\n .append(r)\n .append(\" \")\n .append(f)\n .append(\"\\n\");\n System.out.print(builder);\n } \n}", "Main", "public static void main (String[] args) throws IOException {\n int a,b;\n int d,r;\n String f;\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n StringBuilder builder = new StringBuilder();\n String data = reader.readLine();\n String[] number = data.split(\" \");\n a = Integer.parseInt(number[0]);\n b = Integer.parseInt(number[1]);\n d = a / b;\n r = a % b;\n f = (String.format(\"%.5f\",((double)a /(double)b)));\n \n builder\n .append(d)\n .append(\" \")\n .append(r)\n .append(\" \")\n .append(f)\n .append(\"\\n\");\n System.out.print(builder);\n }", "main", "{\n int a,b;\n int d,r;\n String f;\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n StringBuilder builder = new StringBuilder();\n String data = reader.readLine();\n String[] number = data.split(\" \");\n a = Integer.parseInt(number[0]);\n b = Integer.parseInt(number[1]);\n d = a / b;\n r = a % b;\n f = (String.format(\"%.5f\",((double)a /(double)b)));\n \n builder\n .append(d)\n .append(\" \")\n .append(r)\n .append(\" \")\n .append(f)\n .append(\"\\n\");\n System.out.print(builder);\n }", "int a", "a", "b;", "b", "int d", "d", "r;", "r", "String f;", "f", "BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));", "reader", "new BufferedReader(new InputStreamReader(System.in))", "StringBuilder builder = new StringBuilder();", "builder", "new StringBuilder()", "String data = reader.readLine();", "data", "reader.readLine()", "reader.readLine", "reader", "String[] number = data.split(\" \");", "number", "data.split(\" \")", "data.split", "data", "\" \"", "a = Integer.parseInt(number[0])", "a", "Integer.parseInt(number[0])", "Integer.parseInt", "Integer", "number[0]", "number", "0", "b = Integer.parseInt(number[1])", "b", "Integer.parseInt(number[1])", "Integer.parseInt", "Integer", "number[1]", "number", "1", "d = a / b", "d", "a / b", "a", "b", "r = a % b", "r", "a % b", "a", "b", "f = (String.format(\"%.5f\",((double)a /(double)b)))", "f", "(String.format(\"%.5f\",((double)a /(double)b)))", "String.format", "String", "\"%.5f\"", "((double)a /(double)b)", "(double)a", "(double)b", "builder\n .append(d)\n .append(\" \")\n .append(r)\n .append(\" \")\n .append(f)\n .append(\"\\n\")", "builder\n .append(d)\n .append(\" \")\n .append(r)\n .append(\" \")\n .append(f)\n .append", "builder\n .append(d)\n .append(\" \")\n .append(r)\n .append(\" \")\n .append(f)", "builder\n .append(d)\n .append(\" \")\n .append(r)\n .append(\" \")\n .append", "builder\n .append(d)\n .append(\" \")\n .append(r)\n .append(\" \")", "builder\n .append(d)\n .append(\" \")\n .append(r)\n .append", "builder\n .append(d)\n .append(\" \")\n .append(r)", "builder\n .append(d)\n .append(\" \")\n .append", "builder\n .append(d)\n .append(\" \")", "builder\n .append(d)\n .append", "builder\n .append(d)", "builder\n .append", "builder", "d", "\" \"", "r", "\" \"", "f", "\"\\n\"", "System.out.print(builder)", "System.out.print", "System.out", "System", "System.out", "builder", "String[] args", "args", "public class Main {\n public static void main (String[] args) throws IOException {\n int a,b;\n int d,r;\n String f;\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n StringBuilder builder = new StringBuilder();\n String data = reader.readLine();\n String[] number = data.split(\" \");\n a = Integer.parseInt(number[0]);\n b = Integer.parseInt(number[1]);\n d = a / b;\n r = a % b;\n f = (String.format(\"%.5f\",((double)a /(double)b)));\n \n builder\n .append(d)\n .append(\" \")\n .append(r)\n .append(\" \")\n .append(f)\n .append(\"\\n\");\n System.out.print(builder);\n } \n}", "public class Main {\n public static void main (String[] args) throws IOException {\n int a,b;\n int d,r;\n String f;\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n StringBuilder builder = new StringBuilder();\n String data = reader.readLine();\n String[] number = data.split(\" \");\n a = Integer.parseInt(number[0]);\n b = Integer.parseInt(number[1]);\n d = a / b;\n r = a % b;\n f = (String.format(\"%.5f\",((double)a /(double)b)));\n \n builder\n .append(d)\n .append(\" \")\n .append(r)\n .append(\" \")\n .append(f)\n .append(\"\\n\");\n System.out.print(builder);\n } \n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main (String[] args) throws IOException { int a,b; int d,r; String f; BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); StringBuilder builder = new StringBuilder(); String data = reader.readLine(); String[] number = data.split(" "); a = Integer.parseInt(number[0]); b = Integer.parseInt(number[1]); d = a / b; r = a % b; f = (String.format("%.5f",((double)a /(double)b))); builder .append(d) .append(" ") .append(r) .append(" ") .append(f) .append("\n"); System.out.print(builder); } }
[ 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, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 4, 18, 20, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 13, 13, 17, 2, 13, 13, 17, 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 ], [ 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 ], [ 26, 27 ], [ 11, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 30, 32 ], [ 11, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 36, 37 ], [ 11, 38 ], [ 38, 39 ], [ 39, 40 ], [ 40, 41 ], [ 40, 42 ], [ 38, 43 ], [ 46, 44 ], [ 44, 45 ], [ 51, 46 ], [ 46, 47 ], [ 47, 48 ], [ 47, 49 ], [ 46, 50 ], [ 51, 51 ], [ 51, 52 ], [ 51, 53 ], [ 44, 54 ], [ 46, 55 ], [ 9, 56 ], [ 56, 57 ], [ 0, 58 ], [ 58, 59 ], [ 58, 60 ] ]
[ "import java.math.BigDecimal;\nimport java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner s = new Scanner(System.in);\n\t\tint a = s.nextInt();\n\t\tint b = s.nextInt();\n\t\ts.close();\n\t\tdouble x = (double)a / (double)b;\n\t\tString bd = new BigDecimal(x).toPlainString();\n\t\tSystem.out.println((a/b) + \" \" + (a%b) + \" \" + bd);\n\t}\n\n}", "import java.math.BigDecimal;", "BigDecimal", "java.math", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner s = new Scanner(System.in);\n\t\tint a = s.nextInt();\n\t\tint b = s.nextInt();\n\t\ts.close();\n\t\tdouble x = (double)a / (double)b;\n\t\tString bd = new BigDecimal(x).toPlainString();\n\t\tSystem.out.println((a/b) + \" \" + (a%b) + \" \" + bd);\n\t}\n\n}", "Main", "public static void main(String[] args) {\n\t\tScanner s = new Scanner(System.in);\n\t\tint a = s.nextInt();\n\t\tint b = s.nextInt();\n\t\ts.close();\n\t\tdouble x = (double)a / (double)b;\n\t\tString bd = new BigDecimal(x).toPlainString();\n\t\tSystem.out.println((a/b) + \" \" + (a%b) + \" \" + bd);\n\t}", "main", "{\n\t\tScanner s = new Scanner(System.in);\n\t\tint a = s.nextInt();\n\t\tint b = s.nextInt();\n\t\ts.close();\n\t\tdouble x = (double)a / (double)b;\n\t\tString bd = new BigDecimal(x).toPlainString();\n\t\tSystem.out.println((a/b) + \" \" + (a%b) + \" \" + bd);\n\t}", "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", "s.close()", "s.close", "s", "double x = (double)a / (double)b;", "x", "(double)a / (double)b", "(double)a", "(double)b", "String bd = new BigDecimal(x).toPlainString();", "bd", "new BigDecimal(x).toPlainString()", "new BigDecimal(x).toPlainString", "new BigDecimal(x)", "System.out.println((a/b) + \" \" + (a%b) + \" \" + bd)", "System.out.println", "System.out", "System", "System.out", "(a/b) + \" \" + (a%b) + \" \" + bd", "\" \"", "(a%b)", "(a/b) + \" \" + (a%b) + \" \" + bd", "(a/b)", "a", "b", "\" \"", "(a%b)", "a", "b", "\" \"", "bd", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner s = new Scanner(System.in);\n\t\tint a = s.nextInt();\n\t\tint b = s.nextInt();\n\t\ts.close();\n\t\tdouble x = (double)a / (double)b;\n\t\tString bd = new BigDecimal(x).toPlainString();\n\t\tSystem.out.println((a/b) + \" \" + (a%b) + \" \" + bd);\n\t}\n\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner s = new Scanner(System.in);\n\t\tint a = s.nextInt();\n\t\tint b = s.nextInt();\n\t\ts.close();\n\t\tdouble x = (double)a / (double)b;\n\t\tString bd = new BigDecimal(x).toPlainString();\n\t\tSystem.out.println((a/b) + \" \" + (a%b) + \" \" + bd);\n\t}\n\n}", "Main" ]
import java.math.BigDecimal; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner s = new Scanner(System.in); int a = s.nextInt(); int b = s.nextInt(); s.close(); double x = (double)a / (double)b; String bd = new BigDecimal(x).toPlainString(); System.out.println((a/b) + " " + (a%b) + " " + bd); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 12, 13, 30, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 12, 13, 30, 20, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 9, 11 ], [ 7, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 7, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 7, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 27, 29 ], [ 24, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 32, 34 ], [ 24, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 37, 39 ], [ 24, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 40, 45 ], [ 40, 46 ], [ 40, 47 ], [ 40, 48 ], [ 7, 49 ], [ 49, 50 ], [ 49, 51 ], [ 51, 52 ], [ 49, 53 ], [ 53, 54 ] ]
[ "import java.util.*;\nimport java.io.*;\n\nclass Main{\n\tScanner scan = new Scanner(System.in);\n\tint a=scan.nextInt();\n\tint b=scan.nextInt();\n\tpublic Main(){\n\t\tint d=a/b;\n\t\tint r=a%b;\n double f=(double)a/(double)b;\n\t\tSystem.out.printf(\"%d %d %.5f\", d, r, f);\n\t}\n\tpublic static void main(String[] args){\n\t\tnew Main();\n\t}\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "class Main{\n\tScanner scan = new Scanner(System.in);\n\tint a=scan.nextInt();\n\tint b=scan.nextInt();\n\tpublic Main(){\n\t\tint d=a/b;\n\t\tint r=a%b;\n double f=(double)a/(double)b;\n\t\tSystem.out.printf(\"%d %d %.5f\", d, r, f);\n\t}\n\tpublic static void main(String[] args){\n\t\tnew Main();\n\t}\n}", "Main", "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", "public Main(){\n\t\tint d=a/b;\n\t\tint r=a%b;\n double f=(double)a/(double)b;\n\t\tSystem.out.printf(\"%d %d %.5f\", d, r, f);\n\t}", "Main", "{\n\t\tint d=a/b;\n\t\tint r=a%b;\n double f=(double)a/(double)b;\n\t\tSystem.out.printf(\"%d %d %.5f\", d, r, f);\n\t}", "int d=a/b;", "d", "a/b", "a", "b", "int r=a%b;", "r", "a%b", "a", "b", "double f=(double)a/(double)b;", "f", "(double)a/(double)b", "(double)a", "(double)b", "System.out.printf(\"%d %d %.5f\", d, r, f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %.5f\"", "d", "r", "f", "public static void main(String[] args){\n\t\tnew Main();\n\t}", "main", "{\n\t\tnew Main();\n\t}", "new Main()", "String[] args", "args" ]
import java.util.*; import java.io.*; class Main{ Scanner scan = new Scanner(System.in); int a=scan.nextInt(); int b=scan.nextInt(); public Main(){ int d=a/b; int r=a%b; double f=(double)a/(double)b; System.out.printf("%d %d %.5f", d, r, f); } public static void main(String[] args){ new Main(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 4, 18, 13, 17, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 13, 13, 17, 2, 13, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 55, 5 ], [ 55, 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 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 29, 32 ], [ 29, 33 ], [ 8, 34 ], [ 34, 35 ], [ 35, 36 ], [ 36, 37 ], [ 36, 38 ], [ 34, 39 ], [ 42, 40 ], [ 40, 41 ], [ 47, 42 ], [ 42, 43 ], [ 43, 44 ], [ 43, 45 ], [ 42, 46 ], [ 47, 47 ], [ 47, 48 ], [ 47, 49 ], [ 40, 50 ], [ 42, 51 ], [ 6, 52 ], [ 52, 53 ], [ 0, 54 ], [ 54, 55 ], [ 54, 56 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\n\t\tdouble z = (double)x / (double)y;\n\t\tString zz = String.format(\"%.5f\", z);\n\t\tSystem.out.println(x / y + \" \" + x % y + \" \" + zz);\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\n\t\tdouble z = (double)x / (double)y;\n\t\tString zz = String.format(\"%.5f\", z);\n\t\tSystem.out.println(x / y + \" \" + x % y + \" \" + zz);\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\n\t\tdouble z = (double)x / (double)y;\n\t\tString zz = String.format(\"%.5f\", z);\n\t\tSystem.out.println(x / y + \" \" + x % y + \" \" + zz);\n\t}", "main", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\n\t\tdouble z = (double)x / (double)y;\n\t\tString zz = String.format(\"%.5f\", z);\n\t\tSystem.out.println(x / y + \" \" + x % y + \" \" + zz);\n\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "int y = scan.nextInt();", "y", "scan.nextInt()", "scan.nextInt", "scan", "double z = (double)x / (double)y;", "z", "(double)x / (double)y", "(double)x", "(double)y", "String zz = String.format(\"%.5f\", z);", "zz", "String.format(\"%.5f\", z)", "String.format", "String", "\"%.5f\"", "z", "System.out.println(x / y + \" \" + x % y + \" \" + zz)", "System.out.println", "System.out", "System", "System.out", "x / y + \" \" + x % y + \" \" + zz", "\" \"", "x % y", "x / y + \" \" + x % y + \" \" + zz", "x / y", "x", "y", "\" \"", "x % y", "x", "y", "\" \"", "zz", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\n\t\tdouble z = (double)x / (double)y;\n\t\tString zz = String.format(\"%.5f\", z);\n\t\tSystem.out.println(x / y + \" \" + x % y + \" \" + zz);\n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\n\t\tdouble z = (double)x / (double)y;\n\t\tString zz = String.format(\"%.5f\", z);\n\t\tSystem.out.println(x / y + \" \" + x % y + \" \" + zz);\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int x = scan.nextInt(); int y = scan.nextInt(); double z = (double)x / (double)y; String zz = String.format("%.5f", z); System.out.println(x / y + " " + x % y + " " + zz); } }
[ 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, 4, 18, 13, 17, 41, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 14, 40, 2, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 17, 30, 4, 18, 13, 17, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 20, 0, 13, 4, 18, 13, 17, 18, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 13, 17, 13, 17, 4, 18, 18, 13, 13, 17, 13, 4, 18, 18, 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 ], [ 124, 14 ], [ 124, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 23, 28 ], [ 17, 29 ], [ 29, 30 ], [ 29, 31 ], [ 17, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 34, 37 ], [ 37, 38 ], [ 37, 39 ], [ 17, 40 ], [ 40, 41 ], [ 40, 42 ], [ 42, 43 ], [ 43, 44 ], [ 42, 45 ], [ 45, 46 ], [ 45, 47 ], [ 17, 48 ], [ 48, 49 ], [ 49, 50 ], [ 50, 51 ], [ 59, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 52, 56 ], [ 56, 57 ], [ 56, 58 ], [ 59, 59 ], [ 59, 60 ], [ 59, 61 ], [ 50, 62 ], [ 62, 63 ], [ 62, 64 ], [ 48, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 66, 69 ], [ 17, 70 ], [ 70, 71 ], [ 70, 72 ], [ 72, 73 ], [ 72, 74 ], [ 17, 75 ], [ 75, 76 ], [ 75, 77 ], [ 77, 78 ], [ 77, 79 ], [ 17, 80 ], [ 80, 81 ], [ 80, 82 ], [ 82, 83 ], [ 82, 84 ], [ 17, 85 ], [ 85, 86 ], [ 85, 87 ], [ 17, 88 ], [ 88, 89 ], [ 88, 90 ], [ 90, 91 ], [ 91, 92 ], [ 90, 93 ], [ 90, 94 ], [ 94, 95 ], [ 94, 96 ], [ 17, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 99, 101 ], [ 97, 102 ], [ 104, 103 ], [ 103, 104 ], [ 104, 105 ], [ 104, 106 ], [ 103, 107 ], [ 104, 108 ], [ 17, 109 ], [ 109, 110 ], [ 110, 111 ], [ 111, 112 ], [ 111, 113 ], [ 109, 114 ], [ 109, 115 ], [ 17, 116 ], [ 116, 117 ], [ 117, 118 ], [ 118, 119 ], [ 118, 120 ], [ 15, 121 ], [ 121, 122 ], [ 0, 123 ], [ 123, 124 ], [ 123, 125 ] ]
[ "/*AOJ-ITP-4-1*/\n\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.math.BigDecimal;\n \npublic class Main {\n public static void main(String[] args) throws NumberFormatException, IOException {\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String st[] = br.readLine().split(\" \");\n int count = 0;\n double a = Integer.parseInt(st[0]);\n double b = Integer.parseInt(st[1]);\n \n if(!(a >= 1 && b >= 1 && a <= 10e9 && b <= 10e9)){System.exit(1);}\n \n int d = (int)(a / b);\n int r = (int)(a % b);\n double f = (a / b);\n BigDecimal x = new BigDecimal(f);\n x = x.setScale(5, BigDecimal.ROUND_HALF_UP);\n System.out.print(d + \" \" + r + \" \" );\n System.out.printf(\"%.5f\",x);\n System.out.println();\n }\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.math.BigDecimal;", "BigDecimal", "java.math", "public class Main {\n public static void main(String[] args) throws NumberFormatException, IOException {\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String st[] = br.readLine().split(\" \");\n int count = 0;\n double a = Integer.parseInt(st[0]);\n double b = Integer.parseInt(st[1]);\n \n if(!(a >= 1 && b >= 1 && a <= 10e9 && b <= 10e9)){System.exit(1);}\n \n int d = (int)(a / b);\n int r = (int)(a % b);\n double f = (a / b);\n BigDecimal x = new BigDecimal(f);\n x = x.setScale(5, BigDecimal.ROUND_HALF_UP);\n System.out.print(d + \" \" + r + \" \" );\n System.out.printf(\"%.5f\",x);\n System.out.println();\n }\n}", "Main", "public static void main(String[] args) throws NumberFormatException, IOException {\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String st[] = br.readLine().split(\" \");\n int count = 0;\n double a = Integer.parseInt(st[0]);\n double b = Integer.parseInt(st[1]);\n \n if(!(a >= 1 && b >= 1 && a <= 10e9 && b <= 10e9)){System.exit(1);}\n \n int d = (int)(a / b);\n int r = (int)(a % b);\n double f = (a / b);\n BigDecimal x = new BigDecimal(f);\n x = x.setScale(5, BigDecimal.ROUND_HALF_UP);\n System.out.print(d + \" \" + r + \" \" );\n System.out.printf(\"%.5f\",x);\n System.out.println();\n }", "main", "{\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String st[] = br.readLine().split(\" \");\n int count = 0;\n double a = Integer.parseInt(st[0]);\n double b = Integer.parseInt(st[1]);\n \n if(!(a >= 1 && b >= 1 && a <= 10e9 && b <= 10e9)){System.exit(1);}\n \n int d = (int)(a / b);\n int r = (int)(a % b);\n double f = (a / b);\n BigDecimal x = new BigDecimal(f);\n x = x.setScale(5, BigDecimal.ROUND_HALF_UP);\n System.out.print(d + \" \" + r + \" \" );\n System.out.printf(\"%.5f\",x);\n System.out.println();\n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String st[] = br.readLine().split(\" \");", "st", "br.readLine().split(\" \")", "br.readLine().split", "br.readLine()", "br.readLine", "br", "\" \"", "int count = 0;", "count", "0", "double a = Integer.parseInt(st[0]);", "a", "Integer.parseInt(st[0])", "Integer.parseInt", "Integer", "st[0]", "st", "0", "double b = Integer.parseInt(st[1]);", "b", "Integer.parseInt(st[1])", "Integer.parseInt", "Integer", "st[1]", "st", "1", "if(!(a >= 1 && b >= 1 && a <= 10e9 && b <= 10e9)){System.exit(1);}", "!(a >= 1 && b >= 1 && a <= 10e9 && b <= 10e9)", "(a >= 1 && b >= 1 && a <= 10e9 && b <= 10e9)", "a <= 10e9", "a >= 1 && b >= 1 && a <= 10e9 && b <= 10e9", "a >= 1", "a", "1", "b >= 1", "b", "1", "a <= 10e9", "a", "10e9", "b <= 10e9", "b", "10e9", "{System.exit(1);}", "System.exit(1)", "System.exit", "System", "1", "int d = (int)(a / b);", "d", "(int)(a / b)", "a", "b", "int r = (int)(a % b);", "r", "(int)(a % b)", "a", "b", "double f = (a / b);", "f", "(a / b)", "a", "b", "BigDecimal x = new BigDecimal(f);", "x", "new BigDecimal(f)", "x = x.setScale(5, BigDecimal.ROUND_HALF_UP)", "x", "x.setScale(5, BigDecimal.ROUND_HALF_UP)", "x.setScale", "x", "5", "BigDecimal.ROUND_HALF_UP", "BigDecimal", "BigDecimal.ROUND_HALF_UP", "System.out.print(d + \" \" + r + \" \" )", "System.out.print", "System.out", "System", "System.out", "d + \" \" + r + \" \"", "r", "d + \" \" + r + \" \"", "d", "\" \"", "r", "\" \"", "System.out.printf(\"%.5f\",x)", "System.out.printf", "System.out", "System", "System.out", "\"%.5f\"", "x", "System.out.println()", "System.out.println", "System.out", "System", "System.out", "String[] args", "args", "public class Main {\n public static void main(String[] args) throws NumberFormatException, IOException {\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String st[] = br.readLine().split(\" \");\n int count = 0;\n double a = Integer.parseInt(st[0]);\n double b = Integer.parseInt(st[1]);\n \n if(!(a >= 1 && b >= 1 && a <= 10e9 && b <= 10e9)){System.exit(1);}\n \n int d = (int)(a / b);\n int r = (int)(a % b);\n double f = (a / b);\n BigDecimal x = new BigDecimal(f);\n x = x.setScale(5, BigDecimal.ROUND_HALF_UP);\n System.out.print(d + \" \" + r + \" \" );\n System.out.printf(\"%.5f\",x);\n System.out.println();\n }\n}", "public class Main {\n public static void main(String[] args) throws NumberFormatException, IOException {\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String st[] = br.readLine().split(\" \");\n int count = 0;\n double a = Integer.parseInt(st[0]);\n double b = Integer.parseInt(st[1]);\n \n if(!(a >= 1 && b >= 1 && a <= 10e9 && b <= 10e9)){System.exit(1);}\n \n int d = (int)(a / b);\n int r = (int)(a % b);\n double f = (a / b);\n BigDecimal x = new BigDecimal(f);\n x = x.setScale(5, BigDecimal.ROUND_HALF_UP);\n System.out.print(d + \" \" + r + \" \" );\n System.out.printf(\"%.5f\",x);\n System.out.println();\n }\n}", "Main" ]
/*AOJ-ITP-4-1*/ import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.math.BigDecimal; public class Main { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String st[] = br.readLine().split(" "); int count = 0; double a = Integer.parseInt(st[0]); double b = Integer.parseInt(st[1]); if(!(a >= 1 && b >= 1 && a <= 10e9 && b <= 10e9)){System.exit(1);} int d = (int)(a / b); int r = (int)(a % b); double f = (a / b); BigDecimal x = new BigDecimal(f); x = x.setScale(5, BigDecimal.ROUND_HALF_UP); System.out.print(d + " " + r + " " ); System.out.printf("%.5f",x); System.out.println(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 17, 2, 13, 13, 2, 13, 13, 2, 2, 17, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 42, 5 ], [ 42, 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 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 22, 28 ], [ 28, 29 ], [ 28, 30 ], [ 22, 31 ], [ 31, 32 ], [ 31, 33 ], [ 22, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 34, 38 ], [ 6, 39 ], [ 39, 40 ], [ 0, 41 ], [ 41, 42 ], [ 41, 43 ] ]
[ "import java.util.Scanner;\npublic class Main {\n public static void main (String[] args) throws java.lang.Exception {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt(), b = sc.nextInt();\n System.out.printf(\"%d %d %.9f\\n\", a / b, a % b, 1.0 * a / b);\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main (String[] args) throws java.lang.Exception {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt(), b = sc.nextInt();\n System.out.printf(\"%d %d %.9f\\n\", a / b, a % b, 1.0 * a / b);\n }\n}", "Main", "public static void main (String[] args) throws java.lang.Exception {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt(), b = sc.nextInt();\n System.out.printf(\"%d %d %.9f\\n\", a / b, a % b, 1.0 * a / b);\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt(), b = sc.nextInt();\n System.out.printf(\"%d %d %.9f\\n\", a / b, a % b, 1.0 * a / b);\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", "System.out.printf(\"%d %d %.9f\\n\", a / b, a % b, 1.0 * a / b)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %.9f\\n\"", "a / b", "a", "b", "a % b", "a", "b", "1.0 * a / b", "1.0 * a", "1.0", "a", "b", "String[] args", "args", "public class Main {\n public static void main (String[] args) throws java.lang.Exception {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt(), b = sc.nextInt();\n System.out.printf(\"%d %d %.9f\\n\", a / b, a % b, 1.0 * a / b);\n }\n}", "public class Main {\n public static void main (String[] args) throws java.lang.Exception {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt(), b = sc.nextInt();\n System.out.printf(\"%d %d %.9f\\n\", a / b, a % b, 1.0 * a / b);\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main (String[] args) throws java.lang.Exception { Scanner sc = new Scanner(System.in); int a = sc.nextInt(), b = sc.nextInt(); System.out.printf("%d %d %.9f\n", a / b, a % b, 1.0 * a / b); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 4, 18, 13, 17, 41, 13, 20, 18, 13, 13, 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, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 18, 13, 17, 18, 13, 17, 17, 2, 18, 13, 17, 18, 13, 17, 17, 4, 18, 13, 17, 2, 18, 13, 17, 18, 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 ], [ 16, 17 ], [ 17, 18 ], [ 14, 19 ], [ 8, 20 ], [ 20, 21 ], [ 20, 22 ], [ 23, 24 ], [ 23, 25 ], [ 8, 26 ], [ 26, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 26, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 33, 35 ], [ 26, 36 ], [ 36, 37 ], [ 37, 38 ], [ 26, 39 ], [ 40, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 41, 45 ], [ 45, 46 ], [ 46, 47 ], [ 45, 48 ], [ 48, 49 ], [ 48, 50 ], [ 8, 51 ], [ 51, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 51, 56 ], [ 59, 57 ], [ 57, 58 ], [ 68, 59 ], [ 59, 60 ], [ 60, 61 ], [ 61, 62 ], [ 61, 63 ], [ 60, 64 ], [ 64, 65 ], [ 64, 66 ], [ 59, 67 ], [ 68, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 68, 72 ], [ 72, 73 ], [ 72, 74 ], [ 57, 75 ], [ 59, 76 ], [ 76, 77 ], [ 77, 78 ], [ 76, 79 ], [ 76, 80 ], [ 80, 81 ], [ 81, 82 ], [ 81, 83 ], [ 80, 84 ], [ 84, 85 ], [ 84, 86 ], [ 6, 87 ], [ 87, 88 ], [ 0, 89 ], [ 89, 90 ], [ 89, 91 ] ]
[ "import java.util.*;\npublic class Main {\n\tpublic static void main(String[] args) throws Exception{\n\t\tScanner sc = new Scanner(System.in);\n\t\tString[] s = sc.nextLine().split(\" \");\n\t\tint in[] = new int[s.length];\n\t\tfor(int i=0;i<s.length;i++){\n\t\t\tin[i] = Integer.parseInt(s[i]);\n\t\t}\n\t\tSystem.out.println(in[0]/in[1]+\" \"+in[0]%in[1]+\" \"+String.format(\"%.5f\",(double)in[0]/in[1]));\n\t}\n}", "import java.util.*;", "util.*", "java", "public class Main {\n\tpublic static void main(String[] args) throws Exception{\n\t\tScanner sc = new Scanner(System.in);\n\t\tString[] s = sc.nextLine().split(\" \");\n\t\tint in[] = new int[s.length];\n\t\tfor(int i=0;i<s.length;i++){\n\t\t\tin[i] = Integer.parseInt(s[i]);\n\t\t}\n\t\tSystem.out.println(in[0]/in[1]+\" \"+in[0]%in[1]+\" \"+String.format(\"%.5f\",(double)in[0]/in[1]));\n\t}\n}", "Main", "public static void main(String[] args) throws Exception{\n\t\tScanner sc = new Scanner(System.in);\n\t\tString[] s = sc.nextLine().split(\" \");\n\t\tint in[] = new int[s.length];\n\t\tfor(int i=0;i<s.length;i++){\n\t\t\tin[i] = Integer.parseInt(s[i]);\n\t\t}\n\t\tSystem.out.println(in[0]/in[1]+\" \"+in[0]%in[1]+\" \"+String.format(\"%.5f\",(double)in[0]/in[1]));\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tString[] s = sc.nextLine().split(\" \");\n\t\tint in[] = new int[s.length];\n\t\tfor(int i=0;i<s.length;i++){\n\t\t\tin[i] = Integer.parseInt(s[i]);\n\t\t}\n\t\tSystem.out.println(in[0]/in[1]+\" \"+in[0]%in[1]+\" \"+String.format(\"%.5f\",(double)in[0]/in[1]));\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "String[] s = sc.nextLine().split(\" \");", "s", "sc.nextLine().split(\" \")", "sc.nextLine().split", "sc.nextLine()", "sc.nextLine", "sc", "\" \"", "int in[] = new int[s.length];", "in", "new int[s.length]", "s.length", "s", "s.length", "for(int i=0;i<s.length;i++){\n\t\t\tin[i] = Integer.parseInt(s[i]);\n\t\t}", "int i=0;", "int i=0;", "i", "0", "i<s.length", "i", "s.length", "s", "s.length", "i++", "i++", "i", "{\n\t\t\tin[i] = Integer.parseInt(s[i]);\n\t\t}", "{\n\t\t\tin[i] = Integer.parseInt(s[i]);\n\t\t}", "in[i] = Integer.parseInt(s[i])", "in[i]", "in", "i", "Integer.parseInt(s[i])", "Integer.parseInt", "Integer", "s[i]", "s", "i", "System.out.println(in[0]/in[1]+\" \"+in[0]%in[1]+\" \"+String.format(\"%.5f\",(double)in[0]/in[1]))", "System.out.println", "System.out", "System", "System.out", "in[0]/in[1]+\" \"+in[0]%in[1]+\" \"+String.format(\"%.5f\",(double)in[0]/in[1])", "\" \"", "in[0]%in[1]", "in[0]/in[1]+\" \"+in[0]%in[1]+\" \"+String.format(\"%.5f\",(double)in[0]/in[1])", "in[0]/in[1]", "in[0]", "in", "0", "in[1]", "in", "1", "\" \"", "in[0]%in[1]", "in[0]", "in", "0", "in[1]", "in", "1", "\" \"", "String.format(\"%.5f\",(double)in[0]/in[1])", "String.format", "String", "\"%.5f\"", "(double)in[0]/in[1]", "(double)in[0]", "in", "0", "in[1]", "in", "1", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) throws Exception{\n\t\tScanner sc = new Scanner(System.in);\n\t\tString[] s = sc.nextLine().split(\" \");\n\t\tint in[] = new int[s.length];\n\t\tfor(int i=0;i<s.length;i++){\n\t\t\tin[i] = Integer.parseInt(s[i]);\n\t\t}\n\t\tSystem.out.println(in[0]/in[1]+\" \"+in[0]%in[1]+\" \"+String.format(\"%.5f\",(double)in[0]/in[1]));\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) throws Exception{\n\t\tScanner sc = new Scanner(System.in);\n\t\tString[] s = sc.nextLine().split(\" \");\n\t\tint in[] = new int[s.length];\n\t\tfor(int i=0;i<s.length;i++){\n\t\t\tin[i] = Integer.parseInt(s[i]);\n\t\t}\n\t\tSystem.out.println(in[0]/in[1]+\" \"+in[0]%in[1]+\" \"+String.format(\"%.5f\",(double)in[0]/in[1]));\n\t}\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); String[] s = sc.nextLine().split(" "); int in[] = new int[s.length]; for(int i=0;i<s.length;i++){ in[i] = Integer.parseInt(s[i]); } System.out.println(in[0]/in[1]+" "+in[0]%in[1]+" "+String.format("%.5f",(double)in[0]/in[1])); } }
[ 7, 15, 13, 17, 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, 2, 13, 13, 0, 13, 2, 13, 13, 41, 13, 13, 41, 13, 13, 0, 13, 2, 13, 13, 41, 13, 20, 0, 13, 4, 18, 13, 17, 18, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 11, 17 ], [ 17, 18 ], [ 11, 19 ], [ 19, 20 ], [ 11, 21 ], [ 21, 22 ], [ 11, 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 ], [ 37, 39 ], [ 11, 40 ], [ 40, 41 ], [ 40, 42 ], [ 42, 43 ], [ 42, 44 ], [ 11, 45 ], [ 45, 46 ], [ 45, 47 ], [ 11, 48 ], [ 48, 49 ], [ 48, 50 ], [ 11, 51 ], [ 51, 52 ], [ 51, 53 ], [ 53, 54 ], [ 53, 55 ], [ 11, 56 ], [ 56, 57 ], [ 56, 58 ], [ 11, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 62, 63 ], [ 61, 64 ], [ 61, 65 ], [ 65, 66 ], [ 65, 67 ], [ 11, 68 ], [ 68, 69 ], [ 69, 70 ], [ 70, 71 ], [ 70, 72 ], [ 68, 73 ], [ 76, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 75, 79 ], [ 74, 80 ], [ 76, 81 ], [ 9, 82 ], [ 82, 83 ] ]
[ "import java.util.Scanner;\nimport java.math.*;\n\n\n/**\n * @author kawakami\n *\n */\nclass Main {\n\n\t/**\n\t * @param args\n\t */\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tScanner as = new Scanner(System.in);\n\t \n int a;\n int b;\n int d,r;\n double f;\n\n \n \n a = as.nextInt();\n b = as.nextInt();\n\n d=a/b;\n r=a%b;\n double fa=(double)a;\n double fb=(double)b;\n f=fa/fb;\n \n //System.out.println(f);\n BigDecimal fr = new BigDecimal(f);\n \n \n //System.out.println(fr);\n \n fr = fr.setScale(6,BigDecimal.ROUND_HALF_UP);\n \n \n \n\n\n \n\n System.out.println(d+\" \"+r+\" \"+fr);\n\n\t}\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "import java.math.*;", "math.*", "java", "class Main {\n\n\t/**\n\t * @param args\n\t */\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tScanner as = new Scanner(System.in);\n\t \n int a;\n int b;\n int d,r;\n double f;\n\n \n \n a = as.nextInt();\n b = as.nextInt();\n\n d=a/b;\n r=a%b;\n double fa=(double)a;\n double fb=(double)b;\n f=fa/fb;\n \n //System.out.println(f);\n BigDecimal fr = new BigDecimal(f);\n \n \n //System.out.println(fr);\n \n fr = fr.setScale(6,BigDecimal.ROUND_HALF_UP);\n \n \n \n\n\n \n\n System.out.println(d+\" \"+r+\" \"+fr);\n\n\t}\n\n}", "Main", "/**\n\t * @param args\n\t */\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tScanner as = new Scanner(System.in);\n\t \n int a;\n int b;\n int d,r;\n double f;\n\n \n \n a = as.nextInt();\n b = as.nextInt();\n\n d=a/b;\n r=a%b;\n double fa=(double)a;\n double fb=(double)b;\n f=fa/fb;\n \n //System.out.println(f);\n BigDecimal fr = new BigDecimal(f);\n \n \n //System.out.println(fr);\n \n fr = fr.setScale(6,BigDecimal.ROUND_HALF_UP);\n \n \n \n\n\n \n\n System.out.println(d+\" \"+r+\" \"+fr);\n\n\t}", "main", "{\n\t\t// TODO Auto-generated method stub\n\t\tScanner as = new Scanner(System.in);\n\t \n int a;\n int b;\n int d,r;\n double f;\n\n \n \n a = as.nextInt();\n b = as.nextInt();\n\n d=a/b;\n r=a%b;\n double fa=(double)a;\n double fb=(double)b;\n f=fa/fb;\n \n //System.out.println(f);\n BigDecimal fr = new BigDecimal(f);\n \n \n //System.out.println(fr);\n \n fr = fr.setScale(6,BigDecimal.ROUND_HALF_UP);\n \n \n \n\n\n \n\n System.out.println(d+\" \"+r+\" \"+fr);\n\n\t}", "Scanner as = new Scanner(System.in);", "as", "new Scanner(System.in)", "int a;", "a", "int b;", "b", "int d", "d", "r;", "r", "double f;", "f", "a = as.nextInt()", "a", "as.nextInt()", "as.nextInt", "as", "b = as.nextInt()", "b", "as.nextInt()", "as.nextInt", "as", "d=a/b", "d", "a/b", "a", "b", "r=a%b", "r", "a%b", "a", "b", "double fa=(double)a;", "fa", "(double)a", "double fb=(double)b;", "fb", "(double)b", "f=fa/fb", "f", "fa/fb", "fa", "fb", "BigDecimal fr = new BigDecimal(f);", "fr", "new BigDecimal(f)", "fr = fr.setScale(6,BigDecimal.ROUND_HALF_UP)", "fr", "fr.setScale(6,BigDecimal.ROUND_HALF_UP)", "fr.setScale", "fr", "6", "BigDecimal.ROUND_HALF_UP", "BigDecimal", "BigDecimal.ROUND_HALF_UP", "System.out.println(d+\" \"+r+\" \"+fr)", "System.out.println", "System.out", "System", "System.out", "d+\" \"+r+\" \"+fr", "\" \"", "r", "d+\" \"+r+\" \"+fr", "d", "\" \"", "r", "\" \"", "fr", "String[] args", "args" ]
import java.util.Scanner; import java.math.*; /** * @author kawakami * */ class Main { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub Scanner as = new Scanner(System.in); int a; int b; int d,r; double f; a = as.nextInt(); b = as.nextInt(); d=a/b; r=a%b; double fa=(double)a; double fb=(double)b; f=fa/fb; //System.out.println(f); BigDecimal fr = new BigDecimal(f); //System.out.println(fr); fr = fr.setScale(6,BigDecimal.ROUND_HALF_UP); System.out.println(d+" "+r+" "+fr); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 41, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 18, 13, 13, 17, 2, 13, 13, 2, 13, 13, 2, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 44, 5 ], [ 44, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 8, 14 ], [ 14, 15 ], [ 8, 16 ], [ 16, 17 ], [ 16, 18 ], [ 18, 19 ], [ 19, 20 ], [ 8, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 8, 26 ], [ 26, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 26, 31 ], [ 26, 32 ], [ 32, 33 ], [ 32, 34 ], [ 26, 35 ], [ 35, 36 ], [ 35, 37 ], [ 26, 38 ], [ 38, 39 ], [ 38, 40 ], [ 6, 41 ], [ 41, 42 ], [ 0, 43 ], [ 43, 44 ], [ 43, 45 ] ]
[ "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\tlong a,b;\n\t\ta = sc.nextLong();\n\t\tb = sc.nextLong();\n\t\tSystem.out.printf(\"%d %d %.6f\\n\",a/b,a%b,(double)a/(double)b);\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\tlong a,b;\n\t\ta = sc.nextLong();\n\t\tb = sc.nextLong();\n\t\tSystem.out.printf(\"%d %d %.6f\\n\",a/b,a%b,(double)a/(double)b);\n\t\t\n\t}\n}", "Main", "public static void main(String [] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tlong a,b;\n\t\ta = sc.nextLong();\n\t\tb = sc.nextLong();\n\t\tSystem.out.printf(\"%d %d %.6f\\n\",a/b,a%b,(double)a/(double)b);\n\t\t\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tlong a,b;\n\t\ta = sc.nextLong();\n\t\tb = sc.nextLong();\n\t\tSystem.out.printf(\"%d %d %.6f\\n\",a/b,a%b,(double)a/(double)b);\n\t\t\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "long a", "a", "b;", "b", "a = sc.nextLong()", "a", "sc.nextLong()", "sc.nextLong", "sc", "b = sc.nextLong()", "b", "sc.nextLong()", "sc.nextLong", "sc", "System.out.printf(\"%d %d %.6f\\n\",a/b,a%b,(double)a/(double)b)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %.6f\\n\"", "a/b", "a", "b", "a%b", "a", "b", "(double)a/(double)b", "(double)a", "(double)b", "String [] args", "args", "public class Main{\n\tpublic static void main(String [] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tlong a,b;\n\t\ta = sc.nextLong();\n\t\tb = sc.nextLong();\n\t\tSystem.out.printf(\"%d %d %.6f\\n\",a/b,a%b,(double)a/(double)b);\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\tlong a,b;\n\t\ta = sc.nextLong();\n\t\tb = sc.nextLong();\n\t\tSystem.out.printf(\"%d %d %.6f\\n\",a/b,a%b,(double)a/(double)b);\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); long a,b; a = sc.nextLong(); b = sc.nextLong(); System.out.printf("%d %d %.6f\n",a/b,a%b,(double)a/(double)b); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 4, 18, 13, 17, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 13, 41, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 17, 13, 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 ], [ 13, 14 ], [ 12, 15 ], [ 8, 16 ], [ 16, 17 ], [ 16, 18 ], [ 18, 19 ], [ 19, 20 ], [ 8, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 8, 26 ], [ 26, 27 ], [ 26, 28 ], [ 28, 29 ], [ 28, 30 ], [ 8, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 33, 35 ], [ 8, 36 ], [ 36, 37 ], [ 36, 38 ], [ 8, 39 ], [ 39, 40 ], [ 39, 41 ], [ 8, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 44, 46 ], [ 8, 47 ], [ 47, 48 ], [ 48, 49 ], [ 49, 50 ], [ 49, 51 ], [ 47, 52 ], [ 55, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 54, 58 ], [ 53, 59 ], [ 55, 60 ], [ 60, 61 ], [ 61, 62 ], [ 60, 63 ], [ 60, 64 ], [ 6, 65 ], [ 65, 66 ], [ 0, 67 ], [ 67, 68 ], [ 67, 69 ] ]
[ "import java.util.Scanner;\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tsc.useDelimiter(\"\\\\s\");\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble A = a;\n\t\tdouble B = b;\n\t\tdouble f = A / B;\n\t\tSystem.out.println(d+\" \"+r+\" \" + String.format(\"%.5f\", f));\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 sc = new Scanner(System.in);\n\t\tsc.useDelimiter(\"\\\\s\");\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble A = a;\n\t\tdouble B = b;\n\t\tdouble f = A / B;\n\t\tSystem.out.println(d+\" \"+r+\" \" + String.format(\"%.5f\", f));\n\t}\n\n}", "Main", "public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tsc.useDelimiter(\"\\\\s\");\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble A = a;\n\t\tdouble B = b;\n\t\tdouble f = A / B;\n\t\tSystem.out.println(d+\" \"+r+\" \" + String.format(\"%.5f\", f));\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tsc.useDelimiter(\"\\\\s\");\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble A = a;\n\t\tdouble B = b;\n\t\tdouble f = A / B;\n\t\tSystem.out.println(d+\" \"+r+\" \" + String.format(\"%.5f\", f));\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "sc.useDelimiter(\"\\\\s\")", "sc.useDelimiter", "sc", "\"\\\\s\"", "int a = sc.nextInt();", "a", "sc.nextInt()", "sc.nextInt", "sc", "int b = sc.nextInt();", "b", "sc.nextInt()", "sc.nextInt", "sc", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double A = a;", "A", "a", "double B = b;", "B", "b", "double f = A / B;", "f", "A / B", "A", "B", "System.out.println(d+\" \"+r+\" \" + String.format(\"%.5f\", f))", "System.out.println", "System.out", "System", "System.out", "d+\" \"+r+\" \" + String.format(\"%.5f\", f)", "\" \"", "r", "d+\" \"+r+\" \" + String.format(\"%.5f\", f)", "d", "\" \"", "r", "\" \"", "String.format(\"%.5f\", f)", "String.format", "String", "\"%.5f\"", "f", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tsc.useDelimiter(\"\\\\s\");\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble A = a;\n\t\tdouble B = b;\n\t\tdouble f = A / B;\n\t\tSystem.out.println(d+\" \"+r+\" \" + String.format(\"%.5f\", f));\n\t}\n\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tsc.useDelimiter(\"\\\\s\");\n\t\tint a = sc.nextInt();\n\t\tint b = sc.nextInt();\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble A = a;\n\t\tdouble B = b;\n\t\tdouble f = A / B;\n\t\tSystem.out.println(d+\" \"+r+\" \" + String.format(\"%.5f\", f));\n\t}\n\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); sc.useDelimiter("\\s"); int a = sc.nextInt(); int b = sc.nextInt(); int d = a / b; int r = a % b; double A = a; double B = b; double f = A / B; System.out.println(d+" "+r+" " + String.format("%.5f", f)); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 17, 41, 13, 17, 41, 13, 17, 41, 13, 17, 41, 13, 17, 41, 13, 17, 38, 5, 13, 30, 4, 18, 18, 13, 13, 13, 5, 13, 30, 4, 18, 18, 13, 13, 17, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 41, 13, 20, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 21, 23 ], [ 17, 24 ], [ 24, 25 ], [ 24, 26 ], [ 17, 27 ], [ 27, 28 ], [ 27, 29 ], [ 17, 30 ], [ 30, 31 ], [ 30, 32 ], [ 17, 33 ], [ 33, 34 ], [ 33, 35 ], [ 17, 36 ], [ 36, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 40, 45 ], [ 36, 46 ], [ 46, 47 ], [ 46, 48 ], [ 48, 49 ], [ 49, 50 ], [ 50, 51 ], [ 51, 52 ], [ 51, 53 ], [ 49, 54 ], [ 36, 55 ], [ 55, 56 ], [ 56, 57 ], [ 56, 58 ], [ 55, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 62, 63 ], [ 55, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 67, 68 ], [ 66, 69 ], [ 55, 70 ], [ 70, 71 ], [ 70, 72 ], [ 72, 73 ], [ 73, 74 ], [ 72, 75 ], [ 75, 76 ], [ 75, 77 ], [ 55, 78 ], [ 78, 79 ], [ 78, 80 ], [ 80, 81 ], [ 81, 82 ], [ 80, 83 ], [ 83, 84 ], [ 83, 85 ], [ 55, 86 ], [ 86, 87 ], [ 86, 88 ], [ 88, 89 ], [ 88, 90 ], [ 55, 91 ], [ 91, 92 ], [ 91, 93 ], [ 93, 94 ], [ 93, 95 ], [ 55, 96 ], [ 96, 97 ], [ 96, 98 ], [ 98, 99 ], [ 98, 100 ], [ 55, 101 ], [ 101, 102 ], [ 101, 103 ], [ 55, 104 ], [ 104, 105 ], [ 105, 106 ], [ 106, 107 ], [ 106, 108 ], [ 104, 109 ], [ 112, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 112, 114 ], [ 111, 115 ], [ 110, 116 ], [ 112, 117 ], [ 117, 118 ], [ 118, 119 ], [ 117, 120 ], [ 15, 121 ], [ 121, 122 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.text.DecimalFormat;\n\n\n/**\n * 2つの整数 a と b を読み込んで、以下の値を計算するプログラム\n * @author 前島佑介\n * @version 2014/12/1\n */\nclass Main {\n\n\t// プログラムのエントリポイント\n\tpublic static void main(String[] args) {\n\n\t\t//入力値1つ目\n\t\tint intNum1 = 0;\n\n\t\t//入力値2つ目\n\t\tint intNum2 = 0;\n\n\t\t//何回約数が存在したかカウンター\n\t\tint intAnswer = 0;\n\n\t\t//割った数\n\t\tint intDivision = 0;\n\n\t\t//剰余\n\t\tint intSurplus = 0;\n\n\t\t//割った数\n\t\tdouble dbDivision = 0.0;\n\n\t\ttry{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//文字列の分割:入力値を\" \"で分ける\n\t\t\t//分けた文字列はstrLineAry[0]とstrLineAry[1]とstrLineAry[2]に分けられる\n\t\t\tString[] strLineAry = strLine.split(\" \");\n\n\n\t\t\t//入力値の1つ目の値\n\t\t\tintNum1 = Integer.parseInt(strLineAry[0]);\n\n\t\t\t//2つ目の値\n\t\t\tintNum2 = Integer.parseInt(strLineAry[1]);\n\n\t\t\t//割った数\n\t\t\tintDivision = intNum1 / intNum2;\n\n\t\t\t//剰余\n\t\t\tintSurplus = intNum1 % intNum2;\n\n\t\t\t//割った数\n\t\t\tdbDivision = (double)intNum1 / (double)intNum2;\n\n\t\t\t //小数5桁まで\n\t\t DecimalFormat insdf = new DecimalFormat(\"0.00000\");\n\n\t\t\t//結果を出力 double型は少数5桁まで表示\n\t\t\tSystem.out.println(intDivision + \" \" + intSurplus + \" \" + insdf.format(dbDivision));\n\n\t\t\t//例外処理\n\t\t\t}catch(IOException e) {\n\n\t\t\t\t//例外時の出力\n\t\t\t\tSystem.out.println(e);\n\n\t\t\t}catch(NumberFormatException e) {\n\n\t\t\t\t//数値以外の入力値で出力\n\t\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t\t}\n\t}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.text.DecimalFormat;", "DecimalFormat", "java.text", "class Main {\n\n\t// プログラムのエントリポイント\n\tpublic static void main(String[] args) {\n\n\t\t//入力値1つ目\n\t\tint intNum1 = 0;\n\n\t\t//入力値2つ目\n\t\tint intNum2 = 0;\n\n\t\t//何回約数が存在したかカウンター\n\t\tint intAnswer = 0;\n\n\t\t//割った数\n\t\tint intDivision = 0;\n\n\t\t//剰余\n\t\tint intSurplus = 0;\n\n\t\t//割った数\n\t\tdouble dbDivision = 0.0;\n\n\t\ttry{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//文字列の分割:入力値を\" \"で分ける\n\t\t\t//分けた文字列はstrLineAry[0]とstrLineAry[1]とstrLineAry[2]に分けられる\n\t\t\tString[] strLineAry = strLine.split(\" \");\n\n\n\t\t\t//入力値の1つ目の値\n\t\t\tintNum1 = Integer.parseInt(strLineAry[0]);\n\n\t\t\t//2つ目の値\n\t\t\tintNum2 = Integer.parseInt(strLineAry[1]);\n\n\t\t\t//割った数\n\t\t\tintDivision = intNum1 / intNum2;\n\n\t\t\t//剰余\n\t\t\tintSurplus = intNum1 % intNum2;\n\n\t\t\t//割った数\n\t\t\tdbDivision = (double)intNum1 / (double)intNum2;\n\n\t\t\t //小数5桁まで\n\t\t DecimalFormat insdf = new DecimalFormat(\"0.00000\");\n\n\t\t\t//結果を出力 double型は少数5桁まで表示\n\t\t\tSystem.out.println(intDivision + \" \" + intSurplus + \" \" + insdf.format(dbDivision));\n\n\t\t\t//例外処理\n\t\t\t}catch(IOException e) {\n\n\t\t\t\t//例外時の出力\n\t\t\t\tSystem.out.println(e);\n\n\t\t\t}catch(NumberFormatException e) {\n\n\t\t\t\t//数値以外の入力値で出力\n\t\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t\t}\n\t}\n}", "Main", "// プログラムのエントリポイント\n\tpublic static void main(String[] args) {\n\n\t\t//入力値1つ目\n\t\tint intNum1 = 0;\n\n\t\t//入力値2つ目\n\t\tint intNum2 = 0;\n\n\t\t//何回約数が存在したかカウンター\n\t\tint intAnswer = 0;\n\n\t\t//割った数\n\t\tint intDivision = 0;\n\n\t\t//剰余\n\t\tint intSurplus = 0;\n\n\t\t//割った数\n\t\tdouble dbDivision = 0.0;\n\n\t\ttry{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//文字列の分割:入力値を\" \"で分ける\n\t\t\t//分けた文字列はstrLineAry[0]とstrLineAry[1]とstrLineAry[2]に分けられる\n\t\t\tString[] strLineAry = strLine.split(\" \");\n\n\n\t\t\t//入力値の1つ目の値\n\t\t\tintNum1 = Integer.parseInt(strLineAry[0]);\n\n\t\t\t//2つ目の値\n\t\t\tintNum2 = Integer.parseInt(strLineAry[1]);\n\n\t\t\t//割った数\n\t\t\tintDivision = intNum1 / intNum2;\n\n\t\t\t//剰余\n\t\t\tintSurplus = intNum1 % intNum2;\n\n\t\t\t//割った数\n\t\t\tdbDivision = (double)intNum1 / (double)intNum2;\n\n\t\t\t //小数5桁まで\n\t\t DecimalFormat insdf = new DecimalFormat(\"0.00000\");\n\n\t\t\t//結果を出力 double型は少数5桁まで表示\n\t\t\tSystem.out.println(intDivision + \" \" + intSurplus + \" \" + insdf.format(dbDivision));\n\n\t\t\t//例外処理\n\t\t\t}catch(IOException e) {\n\n\t\t\t\t//例外時の出力\n\t\t\t\tSystem.out.println(e);\n\n\t\t\t}catch(NumberFormatException e) {\n\n\t\t\t\t//数値以外の入力値で出力\n\t\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t\t}\n\t}", "main", "{\n\n\t\t//入力値1つ目\n\t\tint intNum1 = 0;\n\n\t\t//入力値2つ目\n\t\tint intNum2 = 0;\n\n\t\t//何回約数が存在したかカウンター\n\t\tint intAnswer = 0;\n\n\t\t//割った数\n\t\tint intDivision = 0;\n\n\t\t//剰余\n\t\tint intSurplus = 0;\n\n\t\t//割った数\n\t\tdouble dbDivision = 0.0;\n\n\t\ttry{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//文字列の分割:入力値を\" \"で分ける\n\t\t\t//分けた文字列はstrLineAry[0]とstrLineAry[1]とstrLineAry[2]に分けられる\n\t\t\tString[] strLineAry = strLine.split(\" \");\n\n\n\t\t\t//入力値の1つ目の値\n\t\t\tintNum1 = Integer.parseInt(strLineAry[0]);\n\n\t\t\t//2つ目の値\n\t\t\tintNum2 = Integer.parseInt(strLineAry[1]);\n\n\t\t\t//割った数\n\t\t\tintDivision = intNum1 / intNum2;\n\n\t\t\t//剰余\n\t\t\tintSurplus = intNum1 % intNum2;\n\n\t\t\t//割った数\n\t\t\tdbDivision = (double)intNum1 / (double)intNum2;\n\n\t\t\t //小数5桁まで\n\t\t DecimalFormat insdf = new DecimalFormat(\"0.00000\");\n\n\t\t\t//結果を出力 double型は少数5桁まで表示\n\t\t\tSystem.out.println(intDivision + \" \" + intSurplus + \" \" + insdf.format(dbDivision));\n\n\t\t\t//例外処理\n\t\t\t}catch(IOException e) {\n\n\t\t\t\t//例外時の出力\n\t\t\t\tSystem.out.println(e);\n\n\t\t\t}catch(NumberFormatException e) {\n\n\t\t\t\t//数値以外の入力値で出力\n\t\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t\t}\n\t}", "int intNum1 = 0;", "intNum1", "0", "int intNum2 = 0;", "intNum2", "0", "int intAnswer = 0;", "intAnswer", "0", "int intDivision = 0;", "intDivision", "0", "int intSurplus = 0;", "intSurplus", "0", "double dbDivision = 0.0;", "dbDivision", "0.0", "try{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//文字列の分割:入力値を\" \"で分ける\n\t\t\t//分けた文字列はstrLineAry[0]とstrLineAry[1]とstrLineAry[2]に分けられる\n\t\t\tString[] strLineAry = strLine.split(\" \");\n\n\n\t\t\t//入力値の1つ目の値\n\t\t\tintNum1 = Integer.parseInt(strLineAry[0]);\n\n\t\t\t//2つ目の値\n\t\t\tintNum2 = Integer.parseInt(strLineAry[1]);\n\n\t\t\t//割った数\n\t\t\tintDivision = intNum1 / intNum2;\n\n\t\t\t//剰余\n\t\t\tintSurplus = intNum1 % intNum2;\n\n\t\t\t//割った数\n\t\t\tdbDivision = (double)intNum1 / (double)intNum2;\n\n\t\t\t //小数5桁まで\n\t\t DecimalFormat insdf = new DecimalFormat(\"0.00000\");\n\n\t\t\t//結果を出力 double型は少数5桁まで表示\n\t\t\tSystem.out.println(intDivision + \" \" + intSurplus + \" \" + insdf.format(dbDivision));\n\n\t\t\t//例外処理\n\t\t\t}catch(IOException e) {\n\n\t\t\t\t//例外時の出力\n\t\t\t\tSystem.out.println(e);\n\n\t\t\t}catch(NumberFormatException e) {\n\n\t\t\t\t//数値以外の入力値で出力\n\t\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t\t}", "catch(IOException e) {\n\n\t\t\t\t//例外時の出力\n\t\t\t\tSystem.out.println(e);\n\n\t\t\t}", "IOException e", "{\n\n\t\t\t\t//例外時の出力\n\t\t\t\tSystem.out.println(e);\n\n\t\t\t}", "System.out.println(e)", "System.out.println", "System.out", "System", "System.out", "e", "catch(NumberFormatException e) {\n\n\t\t\t\t//数値以外の入力値で出力\n\t\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t\t}", "NumberFormatException e", "{\n\n\t\t\t\t//数値以外の入力値で出力\n\t\t\t\tSystem.out.println(\"数値で入力して下さい\");\n\t\t\t}", "System.out.println(\"数値で入力して下さい\")", "System.out.println", "System.out", "System", "System.out", "\"数値で入力して下さい\"", "{\n\t\t\t//キーボードからの入力準備\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\t\t//キーボードからの入力をString型で受け取る\n\t\t\tString strLine = br.readLine();\n\n\t\t\t//文字列の分割:入力値を\" \"で分ける\n\t\t\t//分けた文字列はstrLineAry[0]とstrLineAry[1]とstrLineAry[2]に分けられる\n\t\t\tString[] strLineAry = strLine.split(\" \");\n\n\n\t\t\t//入力値の1つ目の値\n\t\t\tintNum1 = Integer.parseInt(strLineAry[0]);\n\n\t\t\t//2つ目の値\n\t\t\tintNum2 = Integer.parseInt(strLineAry[1]);\n\n\t\t\t//割った数\n\t\t\tintDivision = intNum1 / intNum2;\n\n\t\t\t//剰余\n\t\t\tintSurplus = intNum1 % intNum2;\n\n\t\t\t//割った数\n\t\t\tdbDivision = (double)intNum1 / (double)intNum2;\n\n\t\t\t //小数5桁まで\n\t\t DecimalFormat insdf = new DecimalFormat(\"0.00000\");\n\n\t\t\t//結果を出力 double型は少数5桁まで表示\n\t\t\tSystem.out.println(intDivision + \" \" + intSurplus + \" \" + insdf.format(dbDivision));\n\n\t\t\t//例外処理\n\t\t\t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String strLine = br.readLine();", "strLine", "br.readLine()", "br.readLine", "br", "String[] strLineAry = strLine.split(\" \");", "strLineAry", "strLine.split(\" \")", "strLine.split", "strLine", "\" \"", "intNum1 = Integer.parseInt(strLineAry[0])", "intNum1", "Integer.parseInt(strLineAry[0])", "Integer.parseInt", "Integer", "strLineAry[0]", "strLineAry", "0", "intNum2 = Integer.parseInt(strLineAry[1])", "intNum2", "Integer.parseInt(strLineAry[1])", "Integer.parseInt", "Integer", "strLineAry[1]", "strLineAry", "1", "intDivision = intNum1 / intNum2", "intDivision", "intNum1 / intNum2", "intNum1", "intNum2", "intSurplus = intNum1 % intNum2", "intSurplus", "intNum1 % intNum2", "intNum1", "intNum2", "dbDivision = (double)intNum1 / (double)intNum2", "dbDivision", "(double)intNum1 / (double)intNum2", "(double)intNum1", "(double)intNum2", "DecimalFormat insdf = new DecimalFormat(\"0.00000\");", "insdf", "new DecimalFormat(\"0.00000\")", "System.out.println(intDivision + \" \" + intSurplus + \" \" + insdf.format(dbDivision))", "System.out.println", "System.out", "System", "System.out", "intDivision + \" \" + intSurplus + \" \" + insdf.format(dbDivision)", "\" \"", "intSurplus", "intDivision + \" \" + intSurplus + \" \" + insdf.format(dbDivision)", "intDivision", "\" \"", "intSurplus", "\" \"", "insdf.format(dbDivision)", "insdf.format", "insdf", "dbDivision", "String[] args", "args" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.text.DecimalFormat; /** * 2つの整数 a と b を読み込んで、以下の値を計算するプログラム * @author 前島佑介 * @version 2014/12/1 */ class Main { // プログラムのエントリポイント public static void main(String[] args) { //入力値1つ目 int intNum1 = 0; //入力値2つ目 int intNum2 = 0; //何回約数が存在したかカウンター int intAnswer = 0; //割った数 int intDivision = 0; //剰余 int intSurplus = 0; //割った数 double dbDivision = 0.0; try{ //キーボードからの入力準備 BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); //キーボードからの入力をString型で受け取る String strLine = br.readLine(); //文字列の分割:入力値を" "で分ける //分けた文字列はstrLineAry[0]とstrLineAry[1]とstrLineAry[2]に分けられる String[] strLineAry = strLine.split(" "); //入力値の1つ目の値 intNum1 = Integer.parseInt(strLineAry[0]); //2つ目の値 intNum2 = Integer.parseInt(strLineAry[1]); //割った数 intDivision = intNum1 / intNum2; //剰余 intSurplus = intNum1 % intNum2; //割った数 dbDivision = (double)intNum1 / (double)intNum2; //小数5桁まで DecimalFormat insdf = new DecimalFormat("0.00000"); //結果を出力 double型は少数5桁まで表示 System.out.println(intDivision + " " + intSurplus + " " + insdf.format(dbDivision)); //例外処理 }catch(IOException e) { //例外時の出力 System.out.println(e); }catch(NumberFormatException e) { //数値以外の入力値で出力 System.out.println("数値で入力して下さい"); } } }
[ 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 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 ], [ 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 ], [ 38, 40 ], [ 8, 41 ], [ 41, 42 ], [ 41, 43 ], [ 43, 44 ], [ 43, 45 ], [ 8, 46 ], [ 46, 47 ], [ 46, 48 ], [ 48, 49 ], [ 48, 50 ], [ 8, 51 ], [ 51, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 51, 56 ], [ 51, 57 ], [ 51, 58 ], [ 51, 59 ], [ 6, 60 ], [ 60, 61 ] ]
[ "import java.io.*;\n\nclass Main\n{\n public static void main (String[ ] args) throws Exception\n {\n BufferedReader br = new BufferedReader (new InputStreamReader (System.in));\n //StringBuffer sb = new StringBuffer();\n \n String[] strAry = (br.readLine()).split(\" \");\n int a = Integer.parseInt(strAry[0]);\n int b = Integer.parseInt(strAry[1]);\n \n int d = a / b;\n int r = a % b;\n double f = (double)a / b;\n\n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\n }\n}", "import java.io.*;", "io.*", "java", "class Main\n{\n public static void main (String[ ] args) throws Exception\n {\n BufferedReader br = new BufferedReader (new InputStreamReader (System.in));\n //StringBuffer sb = new StringBuffer();\n \n String[] strAry = (br.readLine()).split(\" \");\n int a = Integer.parseInt(strAry[0]);\n int b = Integer.parseInt(strAry[1]);\n \n int d = a / b;\n int r = a % b;\n double f = (double)a / b;\n\n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\n }\n}", "Main", "public static void main (String[ ] args) throws Exception\n {\n BufferedReader br = new BufferedReader (new InputStreamReader (System.in));\n //StringBuffer sb = new StringBuffer();\n \n String[] strAry = (br.readLine()).split(\" \");\n int a = Integer.parseInt(strAry[0]);\n int b = Integer.parseInt(strAry[1]);\n \n int d = a / b;\n int r = a % b;\n double f = (double)a / b;\n\n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\n }", "main", "{\n BufferedReader br = new BufferedReader (new InputStreamReader (System.in));\n //StringBuffer sb = new StringBuffer();\n \n String[] strAry = (br.readLine()).split(\" \");\n int a = Integer.parseInt(strAry[0]);\n int b = Integer.parseInt(strAry[1]);\n \n int d = a / b;\n int r = a % b;\n double f = (double)a / b;\n\n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\n }", "BufferedReader br = new BufferedReader (new InputStreamReader (System.in));", "br", "new BufferedReader (new InputStreamReader (System.in))", "String[] strAry = (br.readLine()).split(\" \");", "strAry", "(br.readLine()).split(\" \")", "(br.readLine()).split", "(br.readLine())", "br.readLine", "br", "\" \"", "int a = Integer.parseInt(strAry[0]);", "a", "Integer.parseInt(strAry[0])", "Integer.parseInt", "Integer", "strAry[0]", "strAry", "0", "int b = Integer.parseInt(strAry[1]);", "b", "Integer.parseInt(strAry[1])", "Integer.parseInt", "Integer", "strAry[1]", "strAry", "1", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = (double)a / b;", "f", "(double)a / b", "(double)a", "b", "System.out.printf(\"%d %d %.5f\\n\", d, r, f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %.5f\\n\"", "d", "r", "f", "String[ ] args", "args" ]
import java.io.*; class Main { public static void main (String[ ] args) throws Exception { BufferedReader br = new BufferedReader (new InputStreamReader (System.in)); //StringBuffer sb = new StringBuffer(); String[] strAry = (br.readLine()).split(" "); int a = Integer.parseInt(strAry[0]); int b = Integer.parseInt(strAry[1]); int d = a / b; int r = a % b; double f = (double)a / b; System.out.printf("%d %d %.5f\n", d, r, f); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 38, 5, 13, 30, 4, 18, 18, 13, 13, 2, 17, 13, 30, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 13, 0, 13, 13, 0, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 115, 11 ], [ 115, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 19, 20 ], [ 19, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 27, 28 ], [ 27, 29 ], [ 18, 30 ], [ 30, 31 ], [ 31, 32 ], [ 30, 33 ], [ 33, 34 ], [ 30, 35 ], [ 35, 36 ], [ 30, 37 ], [ 37, 38 ], [ 30, 39 ], [ 39, 40 ], [ 30, 41 ], [ 41, 42 ], [ 30, 43 ], [ 43, 44 ], [ 30, 45 ], [ 45, 46 ], [ 30, 47 ], [ 47, 48 ], [ 30, 49 ], [ 49, 50 ], [ 49, 51 ], [ 51, 52 ], [ 52, 53 ], [ 30, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 30, 60 ], [ 60, 61 ], [ 60, 62 ], [ 62, 63 ], [ 63, 64 ], [ 62, 65 ], [ 65, 66 ], [ 65, 67 ], [ 30, 68 ], [ 68, 69 ], [ 68, 70 ], [ 70, 71 ], [ 71, 72 ], [ 70, 73 ], [ 73, 74 ], [ 73, 75 ], [ 30, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 78, 80 ], [ 30, 81 ], [ 81, 82 ], [ 81, 83 ], [ 83, 84 ], [ 83, 85 ], [ 30, 86 ], [ 86, 87 ], [ 86, 88 ], [ 30, 89 ], [ 89, 90 ], [ 89, 91 ], [ 30, 92 ], [ 92, 93 ], [ 92, 94 ], [ 94, 95 ], [ 94, 96 ], [ 30, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 99, 101 ], [ 97, 102 ], [ 105, 103 ], [ 103, 104 ], [ 104, 105 ], [ 105, 106 ], [ 105, 107 ], [ 104, 108 ], [ 103, 109 ], [ 105, 110 ], [ 97, 111 ], [ 12, 112 ], [ 112, 113 ], [ 0, 114 ], [ 114, 115 ], [ 114, 116 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tBufferedReader input = new BufferedReader(new InputStreamReader(System.in));\n\n\n\t\t try{\n\n\n\t\t\t String ab;\n\t\t\t String[] strAry;\n\t\t\t int a;\n\t\t\t int b;\n\t\t\t int d;\n\t\t\t int r;\n\t\t\t double e;\n\t\t\t double h;\n\t\t\t double f;\n\n\t\t\t\n\t\t\t ab = input.readLine();\n\t\t strAry = ab.split(\" \");\n\t\t a=Integer.parseInt(strAry[0]);\n\t b=Integer.parseInt(strAry[1]);\n\n\t\t\t d=a/b;\n\t\t\t r=a%b;\n\t\t\t e=a;\n\t\t\t h=b;\n\t\t\t f=e/h;\n\n\t\t\t System.out.printf(d+\" \"+r+\" \"+\"%f\",f);\n\n\n\n\t\t }catch(IOException e) { System.out.println(\"Exception : \" + e);\n\t\t }\n\n\t}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tBufferedReader input = new BufferedReader(new InputStreamReader(System.in));\n\n\n\t\t try{\n\n\n\t\t\t String ab;\n\t\t\t String[] strAry;\n\t\t\t int a;\n\t\t\t int b;\n\t\t\t int d;\n\t\t\t int r;\n\t\t\t double e;\n\t\t\t double h;\n\t\t\t double f;\n\n\t\t\t\n\t\t\t ab = input.readLine();\n\t\t strAry = ab.split(\" \");\n\t\t a=Integer.parseInt(strAry[0]);\n\t b=Integer.parseInt(strAry[1]);\n\n\t\t\t d=a/b;\n\t\t\t r=a%b;\n\t\t\t e=a;\n\t\t\t h=b;\n\t\t\t f=e/h;\n\n\t\t\t System.out.printf(d+\" \"+r+\" \"+\"%f\",f);\n\n\n\n\t\t }catch(IOException e) { System.out.println(\"Exception : \" + e);\n\t\t }\n\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tBufferedReader input = new BufferedReader(new InputStreamReader(System.in));\n\n\n\t\t try{\n\n\n\t\t\t String ab;\n\t\t\t String[] strAry;\n\t\t\t int a;\n\t\t\t int b;\n\t\t\t int d;\n\t\t\t int r;\n\t\t\t double e;\n\t\t\t double h;\n\t\t\t double f;\n\n\t\t\t\n\t\t\t ab = input.readLine();\n\t\t strAry = ab.split(\" \");\n\t\t a=Integer.parseInt(strAry[0]);\n\t b=Integer.parseInt(strAry[1]);\n\n\t\t\t d=a/b;\n\t\t\t r=a%b;\n\t\t\t e=a;\n\t\t\t h=b;\n\t\t\t f=e/h;\n\n\t\t\t System.out.printf(d+\" \"+r+\" \"+\"%f\",f);\n\n\n\n\t\t }catch(IOException e) { System.out.println(\"Exception : \" + e);\n\t\t }\n\n\t}", "main", "{\n\t\tBufferedReader input = new BufferedReader(new InputStreamReader(System.in));\n\n\n\t\t try{\n\n\n\t\t\t String ab;\n\t\t\t String[] strAry;\n\t\t\t int a;\n\t\t\t int b;\n\t\t\t int d;\n\t\t\t int r;\n\t\t\t double e;\n\t\t\t double h;\n\t\t\t double f;\n\n\t\t\t\n\t\t\t ab = input.readLine();\n\t\t strAry = ab.split(\" \");\n\t\t a=Integer.parseInt(strAry[0]);\n\t b=Integer.parseInt(strAry[1]);\n\n\t\t\t d=a/b;\n\t\t\t r=a%b;\n\t\t\t e=a;\n\t\t\t h=b;\n\t\t\t f=e/h;\n\n\t\t\t System.out.printf(d+\" \"+r+\" \"+\"%f\",f);\n\n\n\n\t\t }catch(IOException e) { System.out.println(\"Exception : \" + e);\n\t\t }\n\n\t}", "BufferedReader input = new BufferedReader(new InputStreamReader(System.in));", "input", "new BufferedReader(new InputStreamReader(System.in))", "try{\n\n\n\t\t\t String ab;\n\t\t\t String[] strAry;\n\t\t\t int a;\n\t\t\t int b;\n\t\t\t int d;\n\t\t\t int r;\n\t\t\t double e;\n\t\t\t double h;\n\t\t\t double f;\n\n\t\t\t\n\t\t\t ab = input.readLine();\n\t\t strAry = ab.split(\" \");\n\t\t a=Integer.parseInt(strAry[0]);\n\t b=Integer.parseInt(strAry[1]);\n\n\t\t\t d=a/b;\n\t\t\t r=a%b;\n\t\t\t e=a;\n\t\t\t h=b;\n\t\t\t f=e/h;\n\n\t\t\t System.out.printf(d+\" \"+r+\" \"+\"%f\",f);\n\n\n\n\t\t }catch(IOException e) { System.out.println(\"Exception : \" + e);\n\t\t }", "catch(IOException e) { System.out.println(\"Exception : \" + e);\n\t\t }", "IOException e", "{ System.out.println(\"Exception : \" + e);\n\t\t }", "System.out.println(\"Exception : \" + e)", "System.out.println", "System.out", "System", "System.out", "\"Exception : \" + e", "\"Exception : \"", "e", "{\n\n\n\t\t\t String ab;\n\t\t\t String[] strAry;\n\t\t\t int a;\n\t\t\t int b;\n\t\t\t int d;\n\t\t\t int r;\n\t\t\t double e;\n\t\t\t double h;\n\t\t\t double f;\n\n\t\t\t\n\t\t\t ab = input.readLine();\n\t\t strAry = ab.split(\" \");\n\t\t a=Integer.parseInt(strAry[0]);\n\t b=Integer.parseInt(strAry[1]);\n\n\t\t\t d=a/b;\n\t\t\t r=a%b;\n\t\t\t e=a;\n\t\t\t h=b;\n\t\t\t f=e/h;\n\n\t\t\t System.out.printf(d+\" \"+r+\" \"+\"%f\",f);\n\n\n\n\t\t }", "String ab;", "ab", "String[] strAry;", "strAry", "int a;", "a", "int b;", "b", "int d;", "d", "int r;", "r", "double e;", "e", "double h;", "h", "double f;", "f", "ab = input.readLine()", "ab", "input.readLine()", "input.readLine", "input", "strAry = ab.split(\" \")", "strAry", "ab.split(\" \")", "ab.split", "ab", "\" \"", "a=Integer.parseInt(strAry[0])", "a", "Integer.parseInt(strAry[0])", "Integer.parseInt", "Integer", "strAry[0]", "strAry", "0", "b=Integer.parseInt(strAry[1])", "b", "Integer.parseInt(strAry[1])", "Integer.parseInt", "Integer", "strAry[1]", "strAry", "1", "d=a/b", "d", "a/b", "a", "b", "r=a%b", "r", "a%b", "a", "b", "e=a", "e", "a", "h=b", "h", "b", "f=e/h", "f", "e/h", "e", "h", "System.out.printf(d+\" \"+r+\" \"+\"%f\",f)", "System.out.printf", "System.out", "System", "System.out", "d+\" \"+r+\" \"+\"%f\"", "\" \"", "r", "d+\" \"+r+\" \"+\"%f\"", "d", "\" \"", "r", "\" \"", "\"%f\"", "f", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tBufferedReader input = new BufferedReader(new InputStreamReader(System.in));\n\n\n\t\t try{\n\n\n\t\t\t String ab;\n\t\t\t String[] strAry;\n\t\t\t int a;\n\t\t\t int b;\n\t\t\t int d;\n\t\t\t int r;\n\t\t\t double e;\n\t\t\t double h;\n\t\t\t double f;\n\n\t\t\t\n\t\t\t ab = input.readLine();\n\t\t strAry = ab.split(\" \");\n\t\t a=Integer.parseInt(strAry[0]);\n\t b=Integer.parseInt(strAry[1]);\n\n\t\t\t d=a/b;\n\t\t\t r=a%b;\n\t\t\t e=a;\n\t\t\t h=b;\n\t\t\t f=e/h;\n\n\t\t\t System.out.printf(d+\" \"+r+\" \"+\"%f\",f);\n\n\n\n\t\t }catch(IOException e) { System.out.println(\"Exception : \" + e);\n\t\t }\n\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tBufferedReader input = new BufferedReader(new InputStreamReader(System.in));\n\n\n\t\t try{\n\n\n\t\t\t String ab;\n\t\t\t String[] strAry;\n\t\t\t int a;\n\t\t\t int b;\n\t\t\t int d;\n\t\t\t int r;\n\t\t\t double e;\n\t\t\t double h;\n\t\t\t double f;\n\n\t\t\t\n\t\t\t ab = input.readLine();\n\t\t strAry = ab.split(\" \");\n\t\t a=Integer.parseInt(strAry[0]);\n\t b=Integer.parseInt(strAry[1]);\n\n\t\t\t d=a/b;\n\t\t\t r=a%b;\n\t\t\t e=a;\n\t\t\t h=b;\n\t\t\t f=e/h;\n\n\t\t\t System.out.printf(d+\" \"+r+\" \"+\"%f\",f);\n\n\n\n\t\t }catch(IOException e) { System.out.println(\"Exception : \" + e);\n\t\t }\n\n\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) { BufferedReader input = new BufferedReader(new InputStreamReader(System.in)); try{ String ab; String[] strAry; int a; int b; int d; int r; double e; double h; double f; ab = input.readLine(); strAry = ab.split(" "); a=Integer.parseInt(strAry[0]); b=Integer.parseInt(strAry[1]); d=a/b; r=a%b; e=a; h=b; f=e/h; System.out.printf(d+" "+r+" "+"%f",f); }catch(IOException e) { System.out.println("Exception : " + e); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 2, 4, 18, 13, 13, 4, 18, 13, 13, 41, 13, 2, 4, 18, 13, 13, 4, 18, 13, 13, 41, 13, 2, 4, 18, 13, 13, 4, 18, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 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 ], [ 84, 8 ], [ 84, 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 ], [ 11, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 11, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 32, 33 ], [ 31, 34 ], [ 30, 35 ], [ 35, 36 ], [ 36, 37 ], [ 35, 38 ], [ 11, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 42, 45 ], [ 41, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 11, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 53, 56 ], [ 52, 57 ], [ 57, 58 ], [ 58, 59 ], [ 57, 60 ], [ 11, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 61, 66 ], [ 69, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 68, 72 ], [ 67, 73 ], [ 69, 74 ], [ 74, 75 ], [ 75, 76 ], [ 74, 77 ], [ 11, 78 ], [ 78, 79 ], [ 79, 80 ], [ 9, 81 ], [ 81, 82 ], [ 0, 83 ], [ 83, 84 ], [ 83, 85 ] ]
[ "import java.text.DecimalFormat;\nimport java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scan = new Scanner(System.in);\n\t\tDecimalFormat df = new DecimalFormat(\"####################.####################\");\n\n\t\tString a = scan.next();\n\t\tString b = scan.next();\n\n\t\tint result1 = Integer.parseInt(a) / Integer.parseInt(b);\n\t\tint result2 = Integer.parseInt(a) % Integer.parseInt(b);\n\t\tdouble result3 = Double.parseDouble(a) / Double.parseDouble(b);\n\n\t\tSystem.out.println(result1 + \" \" + result2 + \" \" + df.format(result3));\n\n\t\tscan.close();\n\n\t}\n}", "import java.text.DecimalFormat;", "DecimalFormat", "java.text", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scan = new Scanner(System.in);\n\t\tDecimalFormat df = new DecimalFormat(\"####################.####################\");\n\n\t\tString a = scan.next();\n\t\tString b = scan.next();\n\n\t\tint result1 = Integer.parseInt(a) / Integer.parseInt(b);\n\t\tint result2 = Integer.parseInt(a) % Integer.parseInt(b);\n\t\tdouble result3 = Double.parseDouble(a) / Double.parseDouble(b);\n\n\t\tSystem.out.println(result1 + \" \" + result2 + \" \" + df.format(result3));\n\n\t\tscan.close();\n\n\t}\n}", "Main", "public static void main(String args[]){\n\t\tScanner scan = new Scanner(System.in);\n\t\tDecimalFormat df = new DecimalFormat(\"####################.####################\");\n\n\t\tString a = scan.next();\n\t\tString b = scan.next();\n\n\t\tint result1 = Integer.parseInt(a) / Integer.parseInt(b);\n\t\tint result2 = Integer.parseInt(a) % Integer.parseInt(b);\n\t\tdouble result3 = Double.parseDouble(a) / Double.parseDouble(b);\n\n\t\tSystem.out.println(result1 + \" \" + result2 + \" \" + df.format(result3));\n\n\t\tscan.close();\n\n\t}", "main", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\tDecimalFormat df = new DecimalFormat(\"####################.####################\");\n\n\t\tString a = scan.next();\n\t\tString b = scan.next();\n\n\t\tint result1 = Integer.parseInt(a) / Integer.parseInt(b);\n\t\tint result2 = Integer.parseInt(a) % Integer.parseInt(b);\n\t\tdouble result3 = Double.parseDouble(a) / Double.parseDouble(b);\n\n\t\tSystem.out.println(result1 + \" \" + result2 + \" \" + df.format(result3));\n\n\t\tscan.close();\n\n\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "DecimalFormat df = new DecimalFormat(\"####################.####################\");", "df", "new DecimalFormat(\"####################.####################\")", "String a = scan.next();", "a", "scan.next()", "scan.next", "scan", "String b = scan.next();", "b", "scan.next()", "scan.next", "scan", "int result1 = Integer.parseInt(a) / Integer.parseInt(b);", "result1", "Integer.parseInt(a) / Integer.parseInt(b)", "Integer.parseInt(a)", "Integer.parseInt", "Integer", "a", "Integer.parseInt(b)", "Integer.parseInt", "Integer", "b", "int result2 = Integer.parseInt(a) % Integer.parseInt(b);", "result2", "Integer.parseInt(a) % Integer.parseInt(b)", "Integer.parseInt(a)", "Integer.parseInt", "Integer", "a", "Integer.parseInt(b)", "Integer.parseInt", "Integer", "b", "double result3 = Double.parseDouble(a) / Double.parseDouble(b);", "result3", "Double.parseDouble(a) / Double.parseDouble(b)", "Double.parseDouble(a)", "Double.parseDouble", "Double", "a", "Double.parseDouble(b)", "Double.parseDouble", "Double", "b", "System.out.println(result1 + \" \" + result2 + \" \" + df.format(result3))", "System.out.println", "System.out", "System", "System.out", "result1 + \" \" + result2 + \" \" + df.format(result3)", "\" \"", "result2", "result1 + \" \" + result2 + \" \" + df.format(result3)", "result1", "\" \"", "result2", "\" \"", "df.format(result3)", "df.format", "df", "result3", "scan.close()", "scan.close", "scan", "String args[]", "args", "public class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scan = new Scanner(System.in);\n\t\tDecimalFormat df = new DecimalFormat(\"####################.####################\");\n\n\t\tString a = scan.next();\n\t\tString b = scan.next();\n\n\t\tint result1 = Integer.parseInt(a) / Integer.parseInt(b);\n\t\tint result2 = Integer.parseInt(a) % Integer.parseInt(b);\n\t\tdouble result3 = Double.parseDouble(a) / Double.parseDouble(b);\n\n\t\tSystem.out.println(result1 + \" \" + result2 + \" \" + df.format(result3));\n\n\t\tscan.close();\n\n\t}\n}", "public class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scan = new Scanner(System.in);\n\t\tDecimalFormat df = new DecimalFormat(\"####################.####################\");\n\n\t\tString a = scan.next();\n\t\tString b = scan.next();\n\n\t\tint result1 = Integer.parseInt(a) / Integer.parseInt(b);\n\t\tint result2 = Integer.parseInt(a) % Integer.parseInt(b);\n\t\tdouble result3 = Double.parseDouble(a) / Double.parseDouble(b);\n\n\t\tSystem.out.println(result1 + \" \" + result2 + \" \" + df.format(result3));\n\n\t\tscan.close();\n\n\t}\n}", "Main" ]
import java.text.DecimalFormat; import java.util.Scanner; public class Main { public static void main(String args[]){ Scanner scan = new Scanner(System.in); DecimalFormat df = new DecimalFormat("####################.####################"); String a = scan.next(); String b = scan.next(); int result1 = Integer.parseInt(a) / Integer.parseInt(b); int result2 = Integer.parseInt(a) % Integer.parseInt(b); double result3 = Double.parseDouble(a) / Double.parseDouble(b); System.out.println(result1 + " " + result2 + " " + df.format(result3)); scan.close(); } }
[ 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 63, 5 ], [ 63, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 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 ], [ 38, 40 ], [ 8, 41 ], [ 41, 42 ], [ 41, 43 ], [ 43, 44 ], [ 43, 45 ], [ 8, 46 ], [ 46, 47 ], [ 46, 48 ], [ 48, 49 ], [ 48, 50 ], [ 8, 51 ], [ 51, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 51, 56 ], [ 51, 57 ], [ 51, 58 ], [ 51, 59 ], [ 6, 60 ], [ 60, 61 ], [ 0, 62 ], [ 62, 63 ], [ 62, 64 ] ]
[ "import java.io.*;\n\npublic class Main {\n\t\n\t\tpublic static void main(String[] args) throws IOException{\n\t\t\t\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString[] str = br.readLine().split(\" \");\n\t\t\t\n\t\t\tint a= Integer.parseInt(str[0]);\n\t\t\tint b = Integer.parseInt(str[1]);\n\t\t\t\n\t\t\tint div = a / b;\n\t\t\tint amari = a % b;\n\t\t\t//String syosu = String.format(\"%.5f\",((double)a/(double)b));\n\t\t\tdouble syosu = (double)a/(double)b;\n\t\t\t\n\t\t\t//System.out.println(div + \" \" + amari + \" \" + syosu);\n\t\t\tSystem.out.printf(\"%d %d %5f\", div, amari, syosu);\n\t\t}\n\n}", "import java.io.*;", "io.*", "java", "public class Main {\n\t\n\t\tpublic static void main(String[] args) throws IOException{\n\t\t\t\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString[] str = br.readLine().split(\" \");\n\t\t\t\n\t\t\tint a= Integer.parseInt(str[0]);\n\t\t\tint b = Integer.parseInt(str[1]);\n\t\t\t\n\t\t\tint div = a / b;\n\t\t\tint amari = a % b;\n\t\t\t//String syosu = String.format(\"%.5f\",((double)a/(double)b));\n\t\t\tdouble syosu = (double)a/(double)b;\n\t\t\t\n\t\t\t//System.out.println(div + \" \" + amari + \" \" + syosu);\n\t\t\tSystem.out.printf(\"%d %d %5f\", div, amari, syosu);\n\t\t}\n\n}", "Main", "public static void main(String[] args) throws IOException{\n\t\t\t\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString[] str = br.readLine().split(\" \");\n\t\t\t\n\t\t\tint a= Integer.parseInt(str[0]);\n\t\t\tint b = Integer.parseInt(str[1]);\n\t\t\t\n\t\t\tint div = a / b;\n\t\t\tint amari = a % b;\n\t\t\t//String syosu = String.format(\"%.5f\",((double)a/(double)b));\n\t\t\tdouble syosu = (double)a/(double)b;\n\t\t\t\n\t\t\t//System.out.println(div + \" \" + amari + \" \" + syosu);\n\t\t\tSystem.out.printf(\"%d %d %5f\", div, amari, syosu);\n\t\t}", "main", "{\n\t\t\t\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString[] str = br.readLine().split(\" \");\n\t\t\t\n\t\t\tint a= Integer.parseInt(str[0]);\n\t\t\tint b = Integer.parseInt(str[1]);\n\t\t\t\n\t\t\tint div = a / b;\n\t\t\tint amari = a % b;\n\t\t\t//String syosu = String.format(\"%.5f\",((double)a/(double)b));\n\t\t\tdouble syosu = (double)a/(double)b;\n\t\t\t\n\t\t\t//System.out.println(div + \" \" + amari + \" \" + syosu);\n\t\t\tSystem.out.printf(\"%d %d %5f\", div, amari, syosu);\n\t\t}", "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", "\" \"", "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 div = a / b;", "div", "a / b", "a", "b", "int amari = a % b;", "amari", "a % b", "a", "b", "double syosu = (double)a/(double)b;", "syosu", "(double)a/(double)b", "(double)a", "(double)b", "System.out.printf(\"%d %d %5f\", div, amari, syosu)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %5f\"", "div", "amari", "syosu", "String[] args", "args", "public class Main {\n\t\n\t\tpublic static void main(String[] args) throws IOException{\n\t\t\t\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString[] str = br.readLine().split(\" \");\n\t\t\t\n\t\t\tint a= Integer.parseInt(str[0]);\n\t\t\tint b = Integer.parseInt(str[1]);\n\t\t\t\n\t\t\tint div = a / b;\n\t\t\tint amari = a % b;\n\t\t\t//String syosu = String.format(\"%.5f\",((double)a/(double)b));\n\t\t\tdouble syosu = (double)a/(double)b;\n\t\t\t\n\t\t\t//System.out.println(div + \" \" + amari + \" \" + syosu);\n\t\t\tSystem.out.printf(\"%d %d %5f\", div, amari, syosu);\n\t\t}\n\n}", "public class Main {\n\t\n\t\tpublic static void main(String[] args) throws IOException{\n\t\t\t\n\t\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString[] str = br.readLine().split(\" \");\n\t\t\t\n\t\t\tint a= Integer.parseInt(str[0]);\n\t\t\tint b = Integer.parseInt(str[1]);\n\t\t\t\n\t\t\tint div = a / b;\n\t\t\tint amari = a % b;\n\t\t\t//String syosu = String.format(\"%.5f\",((double)a/(double)b));\n\t\t\tdouble syosu = (double)a/(double)b;\n\t\t\t\n\t\t\t//System.out.println(div + \" \" + amari + \" \" + syosu);\n\t\t\tSystem.out.printf(\"%d %d %5f\", div, amari, syosu);\n\t\t}\n\n}", "Main" ]
import java.io.*; public class Main { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] str = br.readLine().split(" "); int a= Integer.parseInt(str[0]); int b = Integer.parseInt(str[1]); int div = a / b; int amari = a % b; //String syosu = String.format("%.5f",((double)a/(double)b)); double syosu = (double)a/(double)b; //System.out.println(div + " " + amari + " " + syosu); System.out.printf("%d %d %5f", div, amari, syosu); } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 41, 13, 4, 13, 41, 13, 4, 13, 4, 18, 18, 13, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 4, 18, 13, 17, 2, 13, 13, 4, 13, 23, 13, 12, 13, 30, 29, 4, 18, 13, 12, 13, 30, 14, 2, 13, 17, 30, 4, 18, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 83, 5 ], [ 83, 6 ], [ 6, 7 ], [ 6, 8 ], [ 83, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 11, 16 ], [ 16, 17 ], [ 16, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 21, 22 ], [ 22, 23 ], [ 22, 24 ], [ 20, 25 ], [ 25, 26 ], [ 25, 27 ], [ 11, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 30, 32 ], [ 28, 33 ], [ 11, 34 ], [ 34, 35 ], [ 35, 36 ], [ 36, 37 ], [ 36, 38 ], [ 34, 39 ], [ 39, 40 ], [ 39, 41 ], [ 11, 42 ], [ 42, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 42, 47 ], [ 11, 48 ], [ 48, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 48, 53 ], [ 53, 54 ], [ 54, 55 ], [ 53, 56 ], [ 53, 57 ], [ 57, 58 ], [ 57, 59 ], [ 11, 60 ], [ 60, 61 ], [ 9, 62 ], [ 62, 63 ], [ 83, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 83, 71 ], [ 71, 72 ], [ 71, 73 ], [ 73, 74 ], [ 74, 75 ], [ 75, 76 ], [ 75, 77 ], [ 74, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 0, 82 ], [ 82, 83 ], [ 82, 84 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static Scanner scanner = new Scanner(System.in);\n\n\tpublic static void main(String[] args) {\n\n\t\tint a = input();\n\t\tint b = input();\n\n\t\tSystem.out.print(a / b);\n\t\tSystem.out.print(\" \");\n\t\tSystem.out.print(a % b);\n\t\tSystem.out.print(\" \");\n\t\tSystem.out.print(String.format(\"%.5f\", (double) a / b));\n\n\t\tclose();\n\n\t}\n\n\tpublic static int input() {\n\n\t\treturn scanner.nextInt();\n\n\t}\n\n\tpublic static void close() {\n\n\t\tif (scanner != null) {\n\n\t\t\tscanner.close();\n\n\t\t}\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static Scanner scanner = new Scanner(System.in);\n\n\tpublic static void main(String[] args) {\n\n\t\tint a = input();\n\t\tint b = input();\n\n\t\tSystem.out.print(a / b);\n\t\tSystem.out.print(\" \");\n\t\tSystem.out.print(a % b);\n\t\tSystem.out.print(\" \");\n\t\tSystem.out.print(String.format(\"%.5f\", (double) a / b));\n\n\t\tclose();\n\n\t}\n\n\tpublic static int input() {\n\n\t\treturn scanner.nextInt();\n\n\t}\n\n\tpublic static void close() {\n\n\t\tif (scanner != null) {\n\n\t\t\tscanner.close();\n\n\t\t}\n\t}\n}", "Main", "public static Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "public static void main(String[] args) {\n\n\t\tint a = input();\n\t\tint b = input();\n\n\t\tSystem.out.print(a / b);\n\t\tSystem.out.print(\" \");\n\t\tSystem.out.print(a % b);\n\t\tSystem.out.print(\" \");\n\t\tSystem.out.print(String.format(\"%.5f\", (double) a / b));\n\n\t\tclose();\n\n\t}", "main", "{\n\n\t\tint a = input();\n\t\tint b = input();\n\n\t\tSystem.out.print(a / b);\n\t\tSystem.out.print(\" \");\n\t\tSystem.out.print(a % b);\n\t\tSystem.out.print(\" \");\n\t\tSystem.out.print(String.format(\"%.5f\", (double) a / b));\n\n\t\tclose();\n\n\t}", "int a = input();", "a", "input()", "input", "int b = input();", "b", "input()", "input", "System.out.print(a / b)", "System.out.print", "System.out", "System", "System.out", "a / b", "a", "b", "System.out.print(\" \")", "System.out.print", "System.out", "System", "System.out", "\" \"", "System.out.print(a % b)", "System.out.print", "System.out", "System", "System.out", "a % b", "a", "b", "System.out.print(\" \")", "System.out.print", "System.out", "System", "System.out", "\" \"", "System.out.print(String.format(\"%.5f\", (double) a / b))", "System.out.print", "System.out", "System", "System.out", "String.format(\"%.5f\", (double) a / b)", "String.format", "String", "\"%.5f\"", "(double) a / b", "(double) a", "b", "close()", "close", "String[] args", "args", "public static int input() {\n\n\t\treturn scanner.nextInt();\n\n\t}", "input", "{\n\n\t\treturn scanner.nextInt();\n\n\t}", "return scanner.nextInt();", "scanner.nextInt()", "scanner.nextInt", "scanner", "public static void close() {\n\n\t\tif (scanner != null) {\n\n\t\t\tscanner.close();\n\n\t\t}\n\t}", "close", "{\n\n\t\tif (scanner != null) {\n\n\t\t\tscanner.close();\n\n\t\t}\n\t}", "if (scanner != null) {\n\n\t\t\tscanner.close();\n\n\t\t}", "scanner != null", "scanner", "null", "{\n\n\t\t\tscanner.close();\n\n\t\t}", "scanner.close()", "scanner.close", "scanner", "public class Main {\n\n\tpublic static Scanner scanner = new Scanner(System.in);\n\n\tpublic static void main(String[] args) {\n\n\t\tint a = input();\n\t\tint b = input();\n\n\t\tSystem.out.print(a / b);\n\t\tSystem.out.print(\" \");\n\t\tSystem.out.print(a % b);\n\t\tSystem.out.print(\" \");\n\t\tSystem.out.print(String.format(\"%.5f\", (double) a / b));\n\n\t\tclose();\n\n\t}\n\n\tpublic static int input() {\n\n\t\treturn scanner.nextInt();\n\n\t}\n\n\tpublic static void close() {\n\n\t\tif (scanner != null) {\n\n\t\t\tscanner.close();\n\n\t\t}\n\t}\n}", "public class Main {\n\n\tpublic static Scanner scanner = new Scanner(System.in);\n\n\tpublic static void main(String[] args) {\n\n\t\tint a = input();\n\t\tint b = input();\n\n\t\tSystem.out.print(a / b);\n\t\tSystem.out.print(\" \");\n\t\tSystem.out.print(a % b);\n\t\tSystem.out.print(\" \");\n\t\tSystem.out.print(String.format(\"%.5f\", (double) a / b));\n\n\t\tclose();\n\n\t}\n\n\tpublic static int input() {\n\n\t\treturn scanner.nextInt();\n\n\t}\n\n\tpublic static void close() {\n\n\t\tif (scanner != null) {\n\n\t\t\tscanner.close();\n\n\t\t}\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static Scanner scanner = new Scanner(System.in); public static void main(String[] args) { int a = input(); int b = input(); System.out.print(a / b); System.out.print(" "); System.out.print(a % b); System.out.print(" "); System.out.print(String.format("%.5f", (double) a / b)); close(); } public static int input() { return scanner.nextInt(); } public static void close() { if (scanner != null) { scanner.close(); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 17, 41, 13, 17, 41, 13, 17, 41, 13, 17, 41, 13, 17, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 41, 13, 4, 18, 13, 17, 13, 4, 18, 18, 13, 13, 13, 4, 18, 18, 13, 13, 2, 17, 13, 4, 18, 18, 13, 13, 2, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 107, 11 ], [ 107, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 14, 21 ], [ 21, 22 ], [ 21, 23 ], [ 14, 24 ], [ 24, 25 ], [ 24, 26 ], [ 14, 27 ], [ 27, 28 ], [ 27, 29 ], [ 14, 30 ], [ 30, 31 ], [ 30, 32 ], [ 14, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 36, 37 ], [ 14, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 14, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 49, 50 ], [ 49, 51 ], [ 14, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 55, 56 ], [ 54, 57 ], [ 57, 58 ], [ 57, 59 ], [ 14, 60 ], [ 60, 61 ], [ 60, 62 ], [ 62, 63 ], [ 62, 64 ], [ 14, 65 ], [ 65, 66 ], [ 65, 67 ], [ 67, 68 ], [ 67, 69 ], [ 14, 70 ], [ 70, 71 ], [ 70, 72 ], [ 72, 73 ], [ 72, 74 ], [ 14, 75 ], [ 75, 76 ], [ 75, 77 ], [ 77, 78 ], [ 78, 79 ], [ 77, 80 ], [ 77, 81 ], [ 14, 82 ], [ 82, 83 ], [ 83, 84 ], [ 84, 85 ], [ 84, 86 ], [ 82, 87 ], [ 14, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 88, 93 ], [ 93, 94 ], [ 93, 95 ], [ 14, 96 ], [ 96, 97 ], [ 97, 98 ], [ 98, 99 ], [ 98, 100 ], [ 96, 101 ], [ 101, 102 ], [ 101, 103 ], [ 12, 104 ], [ 104, 105 ], [ 0, 106 ], [ 106, 107 ], [ 106, 108 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tint a = 0;\n\t\tint b = 0;\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0;\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] num = str.split(\" \");\n\n\t\ta = Integer.parseInt(num[0]);\n\t\tb = Integer.parseInt(num[1]);\n\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf = (double) a / (double) b;\n\t\t\n\t\tString g = String.format(\"%.5f\" , f);\n\n\t\tSystem.out.print(d);\n\t\tSystem.out.print(\" \" + r);\n\t\tSystem.out.print(\" \" + g);\n\t}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tint a = 0;\n\t\tint b = 0;\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0;\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] num = str.split(\" \");\n\n\t\ta = Integer.parseInt(num[0]);\n\t\tb = Integer.parseInt(num[1]);\n\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf = (double) a / (double) b;\n\t\t\n\t\tString g = String.format(\"%.5f\" , f);\n\n\t\tSystem.out.print(d);\n\t\tSystem.out.print(\" \" + r);\n\t\tSystem.out.print(\" \" + g);\n\t}\n}", "Main", "public static void main(String[] args) throws IOException {\n\t\tint a = 0;\n\t\tint b = 0;\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0;\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] num = str.split(\" \");\n\n\t\ta = Integer.parseInt(num[0]);\n\t\tb = Integer.parseInt(num[1]);\n\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf = (double) a / (double) b;\n\t\t\n\t\tString g = String.format(\"%.5f\" , f);\n\n\t\tSystem.out.print(d);\n\t\tSystem.out.print(\" \" + r);\n\t\tSystem.out.print(\" \" + g);\n\t}", "main", "{\n\t\tint a = 0;\n\t\tint b = 0;\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0;\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] num = str.split(\" \");\n\n\t\ta = Integer.parseInt(num[0]);\n\t\tb = Integer.parseInt(num[1]);\n\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf = (double) a / (double) b;\n\t\t\n\t\tString g = String.format(\"%.5f\" , f);\n\n\t\tSystem.out.print(d);\n\t\tSystem.out.print(\" \" + r);\n\t\tSystem.out.print(\" \" + g);\n\t}", "int a = 0;", "a", "0", "int b = 0;", "b", "0", "int d = 0;", "d", "0", "int r = 0;", "r", "0", "double f = 0;", "f", "0", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String str = br.readLine();", "str", "br.readLine()", "br.readLine", "br", "String[] num = str.split(\" \");", "num", "str.split(\" \")", "str.split", "str", "\" \"", "a = Integer.parseInt(num[0])", "a", "Integer.parseInt(num[0])", "Integer.parseInt", "Integer", "num[0]", "num", "0", "b = Integer.parseInt(num[1])", "b", "Integer.parseInt(num[1])", "Integer.parseInt", "Integer", "num[1]", "num", "1", "d = a / b", "d", "a / b", "a", "b", "r = a % b", "r", "a % b", "a", "b", "f = (double) a / (double) b", "f", "(double) a / (double) b", "(double) a", "(double) b", "String g = String.format(\"%.5f\" , f);", "g", "String.format(\"%.5f\" , f)", "String.format", "String", "\"%.5f\"", "f", "System.out.print(d)", "System.out.print", "System.out", "System", "System.out", "d", "System.out.print(\" \" + r)", "System.out.print", "System.out", "System", "System.out", "\" \" + r", "\" \"", "r", "System.out.print(\" \" + g)", "System.out.print", "System.out", "System", "System.out", "\" \" + g", "\" \"", "g", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tint a = 0;\n\t\tint b = 0;\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0;\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] num = str.split(\" \");\n\n\t\ta = Integer.parseInt(num[0]);\n\t\tb = Integer.parseInt(num[1]);\n\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf = (double) a / (double) b;\n\t\t\n\t\tString g = String.format(\"%.5f\" , f);\n\n\t\tSystem.out.print(d);\n\t\tSystem.out.print(\" \" + r);\n\t\tSystem.out.print(\" \" + g);\n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tint a = 0;\n\t\tint b = 0;\n\t\tint d = 0;\n\t\tint r = 0;\n\t\tdouble f = 0;\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] num = str.split(\" \");\n\n\t\ta = Integer.parseInt(num[0]);\n\t\tb = Integer.parseInt(num[1]);\n\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf = (double) a / (double) b;\n\t\t\n\t\tString g = String.format(\"%.5f\" , f);\n\n\t\tSystem.out.print(d);\n\t\tSystem.out.print(\" \" + r);\n\t\tSystem.out.print(\" \" + g);\n\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { int a = 0; int b = 0; int d = 0; int r = 0; double f = 0; BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String str = br.readLine(); String[] num = str.split(" "); a = Integer.parseInt(num[0]); b = Integer.parseInt(num[1]); d = a / b; r = a % b; f = (double) a / (double) b; String g = String.format("%.5f" , f); System.out.print(d); System.out.print(" " + r); System.out.print(" " + g); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 17, 2, 13, 13, 2, 13, 13, 2, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 40, 5 ], [ 40, 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 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 22, 28 ], [ 28, 29 ], [ 28, 30 ], [ 22, 31 ], [ 31, 32 ], [ 31, 33 ], [ 22, 34 ], [ 34, 35 ], [ 34, 36 ], [ 6, 37 ], [ 37, 38 ], [ 0, 39 ], [ 39, 40 ], [ 39, 41 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n public static void main(String[] args) {\n Scanner stdin = new Scanner(System.in);\n int a = stdin.nextInt();\n int b = stdin.nextInt();\n System.out.printf(\"%d %d %f\", a / b, a % b, (double) a / b);\n }\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n public static void main(String[] args) {\n Scanner stdin = new Scanner(System.in);\n int a = stdin.nextInt();\n int b = stdin.nextInt();\n System.out.printf(\"%d %d %f\", a / b, a % b, (double) a / b);\n }\n\n}", "Main", "public static void main(String[] args) {\n Scanner stdin = new Scanner(System.in);\n int a = stdin.nextInt();\n int b = stdin.nextInt();\n System.out.printf(\"%d %d %f\", a / b, a % b, (double) a / b);\n }", "main", "{\n Scanner stdin = new Scanner(System.in);\n int a = stdin.nextInt();\n int b = stdin.nextInt();\n System.out.printf(\"%d %d %f\", a / b, a % b, (double) a / b);\n }", "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", "System.out.printf(\"%d %d %f\", a / b, a % b, (double) a / b)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\"", "a / b", "a", "b", "a % b", "a", "b", "(double) a / b", "(double) a", "b", "String[] args", "args", "public class Main {\n\n public static void main(String[] args) {\n Scanner stdin = new Scanner(System.in);\n int a = stdin.nextInt();\n int b = stdin.nextInt();\n System.out.printf(\"%d %d %f\", a / b, a % b, (double) a / b);\n }\n\n}", "public class Main {\n\n public static void main(String[] args) {\n Scanner stdin = new Scanner(System.in);\n int a = stdin.nextInt();\n int b = stdin.nextInt();\n System.out.printf(\"%d %d %f\", a / b, a % b, (double) a / b);\n }\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(); System.out.printf("%d %d %f", a / b, a % b, (double) a / b); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 17, 2, 13, 13, 2, 13, 13, 2, 4, 18, 13, 13, 4, 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 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 22, 28 ], [ 28, 29 ], [ 28, 30 ], [ 22, 31 ], [ 31, 32 ], [ 31, 33 ], [ 22, 34 ], [ 34, 35 ], [ 35, 36 ], [ 36, 37 ], [ 35, 38 ], [ 34, 39 ], [ 39, 40 ], [ 40, 41 ], [ 39, 42 ], [ 8, 43 ], [ 43, 44 ], [ 44, 45 ], [ 6, 46 ], [ 46, 47 ], [ 0, 48 ], [ 48, 49 ], [ 48, 50 ] ]
[ "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 System.out.printf(\"%d %d %f\\n\", a / b, a % b, Double.valueOf(a) / Double.valueOf(b));\n sc.close();\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 int a = sc.nextInt();\n int b = sc.nextInt();\n System.out.printf(\"%d %d %f\\n\", a / b, a % b, Double.valueOf(a) / Double.valueOf(b));\n sc.close();\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 System.out.printf(\"%d %d %f\\n\", a / b, a % b, Double.valueOf(a) / Double.valueOf(b));\n sc.close();\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n System.out.printf(\"%d %d %f\\n\", a / b, a % b, Double.valueOf(a) / Double.valueOf(b));\n sc.close();\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", "System.out.printf(\"%d %d %f\\n\", a / b, a % b, Double.valueOf(a) / Double.valueOf(b))", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %f\\n\"", "a / b", "a", "b", "a % b", "a", "b", "Double.valueOf(a) / Double.valueOf(b)", "Double.valueOf(a)", "Double.valueOf", "Double", "a", "Double.valueOf(b)", "Double.valueOf", "Double", "b", "sc.close()", "sc.close", "sc", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int a = sc.nextInt();\n int b = sc.nextInt();\n System.out.printf(\"%d %d %f\\n\", a / b, a % b, Double.valueOf(a) / Double.valueOf(b));\n sc.close();\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 System.out.printf(\"%d %d %f\\n\", a / b, a % b, Double.valueOf(a) / Double.valueOf(b));\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 a = sc.nextInt(); int b = sc.nextInt(); System.out.printf("%d %d %f\n", a / b, a % b, Double.valueOf(a) / Double.valueOf(b)); sc.close(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 13, 41, 13, 4, 18, 13, 17, 17, 14, 2, 2, 17, 13, 2, 13, 13, 30, 14, 2, 2, 17, 13, 2, 13, 13, 30, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 17, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 19, 22 ], [ 8, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 30, 33 ], [ 8, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 37, 38 ], [ 36, 39 ], [ 36, 40 ], [ 8, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 43, 45 ], [ 42, 46 ], [ 46, 47 ], [ 46, 48 ], [ 41, 49 ], [ 49, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 55, 56 ], [ 55, 57 ], [ 50, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 61, 63 ], [ 58, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 66, 68 ], [ 58, 69 ], [ 69, 70 ], [ 69, 71 ], [ 71, 72 ], [ 71, 73 ], [ 58, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 74, 79 ], [ 82, 80 ], [ 80, 81 ], [ 81, 82 ], [ 82, 83 ], [ 82, 84 ], [ 81, 85 ], [ 80, 86 ], [ 82, 87 ], [ 87, 88 ], [ 88, 89 ], [ 87, 90 ], [ 87, 91 ], [ 6, 92 ], [ 92, 93 ] ]
[ "\nimport java.util.Scanner;\n\nclass Main {\n\tpublic static void main(String args[]){\n\t\t\n\t\t//スキャナーで整数を2つ読み取る\n\t Scanner sc = new Scanner(System.in);\n\t String s1 = sc.next();\n\t int a = Integer.parseInt(s1);\n\t String s2 = sc.next();\n\t int b = Integer.parseInt(s2);\n\t double p = Math.pow(10, 9);\n\t \n\t //a、bが指定の条件(1から10の9乗)内にあるか確認\n\t if(1 <= a && a <= p){\n\t \tif(1 <= b && b <= p){\n\t \t\t//計算\n\t \t\tint d = a / b;\n\t \t\tint r = a % b;\n\t \t\tdouble f = (double)a / (double)b;\n\t \t\t\n\t \t\t//計算結果を表示\n\t \t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%1$3f\",f));\n\t \t}\n\t }\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main {\n\tpublic static void main(String args[]){\n\t\t\n\t\t//スキャナーで整数を2つ読み取る\n\t Scanner sc = new Scanner(System.in);\n\t String s1 = sc.next();\n\t int a = Integer.parseInt(s1);\n\t String s2 = sc.next();\n\t int b = Integer.parseInt(s2);\n\t double p = Math.pow(10, 9);\n\t \n\t //a、bが指定の条件(1から10の9乗)内にあるか確認\n\t if(1 <= a && a <= p){\n\t \tif(1 <= b && b <= p){\n\t \t\t//計算\n\t \t\tint d = a / b;\n\t \t\tint r = a % b;\n\t \t\tdouble f = (double)a / (double)b;\n\t \t\t\n\t \t\t//計算結果を表示\n\t \t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%1$3f\",f));\n\t \t}\n\t }\n\t}\n}", "Main", "public static void main(String args[]){\n\t\t\n\t\t//スキャナーで整数を2つ読み取る\n\t Scanner sc = new Scanner(System.in);\n\t String s1 = sc.next();\n\t int a = Integer.parseInt(s1);\n\t String s2 = sc.next();\n\t int b = Integer.parseInt(s2);\n\t double p = Math.pow(10, 9);\n\t \n\t //a、bが指定の条件(1から10の9乗)内にあるか確認\n\t if(1 <= a && a <= p){\n\t \tif(1 <= b && b <= p){\n\t \t\t//計算\n\t \t\tint d = a / b;\n\t \t\tint r = a % b;\n\t \t\tdouble f = (double)a / (double)b;\n\t \t\t\n\t \t\t//計算結果を表示\n\t \t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%1$3f\",f));\n\t \t}\n\t }\n\t}", "main", "{\n\t\t\n\t\t//スキャナーで整数を2つ読み取る\n\t Scanner sc = new Scanner(System.in);\n\t String s1 = sc.next();\n\t int a = Integer.parseInt(s1);\n\t String s2 = sc.next();\n\t int b = Integer.parseInt(s2);\n\t double p = Math.pow(10, 9);\n\t \n\t //a、bが指定の条件(1から10の9乗)内にあるか確認\n\t if(1 <= a && a <= p){\n\t \tif(1 <= b && b <= p){\n\t \t\t//計算\n\t \t\tint d = a / b;\n\t \t\tint r = a % b;\n\t \t\tdouble f = (double)a / (double)b;\n\t \t\t\n\t \t\t//計算結果を表示\n\t \t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%1$3f\",f));\n\t \t}\n\t }\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "String s1 = sc.next();", "s1", "sc.next()", "sc.next", "sc", "int a = Integer.parseInt(s1);", "a", "Integer.parseInt(s1)", "Integer.parseInt", "Integer", "s1", "String s2 = sc.next();", "s2", "sc.next()", "sc.next", "sc", "int b = Integer.parseInt(s2);", "b", "Integer.parseInt(s2)", "Integer.parseInt", "Integer", "s2", "double p = Math.pow(10, 9);", "p", "Math.pow(10, 9)", "Math.pow", "Math", "10", "9", "if(1 <= a && a <= p){\n\t \tif(1 <= b && b <= p){\n\t \t\t//計算\n\t \t\tint d = a / b;\n\t \t\tint r = a % b;\n\t \t\tdouble f = (double)a / (double)b;\n\t \t\t\n\t \t\t//計算結果を表示\n\t \t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%1$3f\",f));\n\t \t}\n\t }", "1 <= a && a <= p", "1 <= a", "1", "a", "a <= p", "a", "p", "{\n\t \tif(1 <= b && b <= p){\n\t \t\t//計算\n\t \t\tint d = a / b;\n\t \t\tint r = a % b;\n\t \t\tdouble f = (double)a / (double)b;\n\t \t\t\n\t \t\t//計算結果を表示\n\t \t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%1$3f\",f));\n\t \t}\n\t }", "if(1 <= b && b <= p){\n\t \t\t//計算\n\t \t\tint d = a / b;\n\t \t\tint r = a % b;\n\t \t\tdouble f = (double)a / (double)b;\n\t \t\t\n\t \t\t//計算結果を表示\n\t \t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%1$3f\",f));\n\t \t}", "1 <= b && b <= p", "1 <= b", "1", "b", "b <= p", "b", "p", "{\n\t \t\t//計算\n\t \t\tint d = a / b;\n\t \t\tint r = a % b;\n\t \t\tdouble f = (double)a / (double)b;\n\t \t\t\n\t \t\t//計算結果を表示\n\t \t\tSystem.out.println(d + \" \" + r + \" \" + String.format(\"%1$3f\",f));\n\t \t}", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = (double)a / (double)b;", "f", "(double)a / (double)b", "(double)a", "(double)b", "System.out.println(d + \" \" + r + \" \" + String.format(\"%1$3f\",f))", "System.out.println", "System.out", "System", "System.out", "d + \" \" + r + \" \" + String.format(\"%1$3f\",f)", "\" \"", "r", "d + \" \" + r + \" \" + String.format(\"%1$3f\",f)", "d", "\" \"", "r", "\" \"", "String.format(\"%1$3f\",f)", "String.format", "String", "\"%1$3f\"", "f", "String args[]", "args" ]
import java.util.Scanner; class Main { public static void main(String args[]){ //スキャナーで整数を2つ読み取る Scanner sc = new Scanner(System.in); String s1 = sc.next(); int a = Integer.parseInt(s1); String s2 = sc.next(); int b = Integer.parseInt(s2); double p = Math.pow(10, 9); //a、bが指定の条件(1から10の9乗)内にあるか確認 if(1 <= a && a <= p){ if(1 <= b && b <= p){ //計算 int d = a / b; int r = a % b; double f = (double)a / (double)b; //計算結果を表示 System.out.println(d + " " + r + " " + String.format("%1$3f",f)); } } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 72, 11 ], [ 72, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 14, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 25, 28 ], [ 14, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 31, 34 ], [ 34, 35 ], [ 34, 36 ], [ 14, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 39, 42 ], [ 42, 43 ], [ 42, 44 ], [ 14, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 47, 49 ], [ 14, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 52, 54 ], [ 14, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 57, 59 ], [ 14, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 60, 65 ], [ 60, 66 ], [ 60, 67 ], [ 60, 68 ], [ 12, 69 ], [ 69, 70 ], [ 0, 71 ], [ 71, 72 ], [ 71, 73 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\npublic class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader br =new BufferedReader(new InputStreamReader(System.in));\n\t\tString str =br.readLine();\n\t\tString[] stra = str.split(\" \");\n\t\t\n\t\tint a = Integer.parseInt(stra[0]);\n\t\tint b = Integer.parseInt(stra[1]);\n\t\tdouble f= (double)a/b;\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tSystem.out.printf(\"%d %d %.7f\",d,r,f);\n\t}\n\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader br =new BufferedReader(new InputStreamReader(System.in));\n\t\tString str =br.readLine();\n\t\tString[] stra = str.split(\" \");\n\t\t\n\t\tint a = Integer.parseInt(stra[0]);\n\t\tint b = Integer.parseInt(stra[1]);\n\t\tdouble f= (double)a/b;\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tSystem.out.printf(\"%d %d %.7f\",d,r,f);\n\t}\n\n}", "Main", "public static void main(String[] args) throws IOException{\n\t\tBufferedReader br =new BufferedReader(new InputStreamReader(System.in));\n\t\tString str =br.readLine();\n\t\tString[] stra = str.split(\" \");\n\t\t\n\t\tint a = Integer.parseInt(stra[0]);\n\t\tint b = Integer.parseInt(stra[1]);\n\t\tdouble f= (double)a/b;\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tSystem.out.printf(\"%d %d %.7f\",d,r,f);\n\t}", "main", "{\n\t\tBufferedReader br =new BufferedReader(new InputStreamReader(System.in));\n\t\tString str =br.readLine();\n\t\tString[] stra = str.split(\" \");\n\t\t\n\t\tint a = Integer.parseInt(stra[0]);\n\t\tint b = Integer.parseInt(stra[1]);\n\t\tdouble f= (double)a/b;\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tSystem.out.printf(\"%d %d %.7f\",d,r,f);\n\t}", "BufferedReader br =new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String str =br.readLine();", "str", "br.readLine()", "br.readLine", "br", "String[] stra = str.split(\" \");", "stra", "str.split(\" \")", "str.split", "str", "\" \"", "int a = Integer.parseInt(stra[0]);", "a", "Integer.parseInt(stra[0])", "Integer.parseInt", "Integer", "stra[0]", "stra", "0", "int b = Integer.parseInt(stra[1]);", "b", "Integer.parseInt(stra[1])", "Integer.parseInt", "Integer", "stra[1]", "stra", "1", "double f= (double)a/b;", "f", "(double)a/b", "(double)a", "b", "int d = a/b;", "d", "a/b", "a", "b", "int r = a%b;", "r", "a%b", "a", "b", "System.out.printf(\"%d %d %.7f\",d,r,f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %.7f\"", "d", "r", "f", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader br =new BufferedReader(new InputStreamReader(System.in));\n\t\tString str =br.readLine();\n\t\tString[] stra = str.split(\" \");\n\t\t\n\t\tint a = Integer.parseInt(stra[0]);\n\t\tint b = Integer.parseInt(stra[1]);\n\t\tdouble f= (double)a/b;\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tSystem.out.printf(\"%d %d %.7f\",d,r,f);\n\t}\n\n}", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader br =new BufferedReader(new InputStreamReader(System.in));\n\t\tString str =br.readLine();\n\t\tString[] stra = str.split(\" \");\n\t\t\n\t\tint a = Integer.parseInt(stra[0]);\n\t\tint b = Integer.parseInt(stra[1]);\n\t\tdouble f= (double)a/b;\n\t\tint d = a/b;\n\t\tint r = a%b;\n\t\tSystem.out.printf(\"%d %d %.7f\",d,r,f);\n\t}\n\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException{ BufferedReader br =new BufferedReader(new InputStreamReader(System.in)); String str =br.readLine(); String[] stra = str.split(" "); int a = Integer.parseInt(stra[0]); int b = Integer.parseInt(stra[1]); double f= (double)a/b; int d = a/b; int r = a%b; System.out.printf("%d %d %.7f",d,r,f); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 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, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 13, 17, 13, 17, 17, 17, 13, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 60, 5 ], [ 60, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 24, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 29, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 34, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 37, 42 ], [ 46, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 45, 49 ], [ 44, 50 ], [ 43, 51 ], [ 46, 52 ], [ 37, 53 ], [ 8, 54 ], [ 54, 55 ], [ 55, 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\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tdouble a = sc.nextDouble();\n\t\tdouble b = sc.nextDouble();\n\t\t\n\t\tint d = (int)a / (int)b;\n\t\tint r = (int)a % (int)b;\n\t\tdouble f = a / b;\n\t\t\n\t\tSystem.out.printf(d + \" \" + r + \" \" + \" \" + \"%.5f\",f);\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\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tdouble a = sc.nextDouble();\n\t\tdouble b = sc.nextDouble();\n\t\t\n\t\tint d = (int)a / (int)b;\n\t\tint r = (int)a % (int)b;\n\t\tdouble f = a / b;\n\t\t\n\t\tSystem.out.printf(d + \" \" + r + \" \" + \" \" + \"%.5f\",f);\n\t\t\n\t\tsc.close();\n\t}\n\n}", "Main", "public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tdouble a = sc.nextDouble();\n\t\tdouble b = sc.nextDouble();\n\t\t\n\t\tint d = (int)a / (int)b;\n\t\tint r = (int)a % (int)b;\n\t\tdouble f = a / b;\n\t\t\n\t\tSystem.out.printf(d + \" \" + r + \" \" + \" \" + \"%.5f\",f);\n\t\t\n\t\tsc.close();\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tdouble a = sc.nextDouble();\n\t\tdouble b = sc.nextDouble();\n\t\t\n\t\tint d = (int)a / (int)b;\n\t\tint r = (int)a % (int)b;\n\t\tdouble f = a / b;\n\t\t\n\t\tSystem.out.printf(d + \" \" + r + \" \" + \" \" + \"%.5f\",f);\n\t\t\n\t\tsc.close();\n\t}", "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", "int d = (int)a / (int)b;", "d", "(int)a / (int)b", "(int)a", "(int)b", "int r = (int)a % (int)b;", "r", "(int)a % (int)b", "(int)a", "(int)b", "double f = a / b;", "f", "a / b", "a", "b", "System.out.printf(d + \" \" + r + \" \" + \" \" + \"%.5f\",f)", "System.out.printf", "System.out", "System", "System.out", "d + \" \" + r + \" \" + \" \" + \"%.5f\"", "\" \"", "\" \"", "r", "d + \" \" + r + \" \" + \" \" + \"%.5f\"", "d", "\" \"", "r", "\" \"", "\" \"", "\"%.5f\"", "f", "sc.close()", "sc.close", "sc", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tdouble a = sc.nextDouble();\n\t\tdouble b = sc.nextDouble();\n\t\t\n\t\tint d = (int)a / (int)b;\n\t\tint r = (int)a % (int)b;\n\t\tdouble f = a / b;\n\t\t\n\t\tSystem.out.printf(d + \" \" + r + \" \" + \" \" + \"%.5f\",f);\n\t\t\n\t\tsc.close();\n\t}\n\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tdouble a = sc.nextDouble();\n\t\tdouble b = sc.nextDouble();\n\t\t\n\t\tint d = (int)a / (int)b;\n\t\tint r = (int)a % (int)b;\n\t\tdouble f = a / b;\n\t\t\n\t\tSystem.out.printf(d + \" \" + r + \" \" + \" \" + \"%.5f\",f);\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); double a = sc.nextDouble(); double b = sc.nextDouble(); int d = (int)a / (int)b; int r = (int)a % (int)b; double f = a / b; System.out.printf(d + " " + r + " " + " " + "%.5f",f); sc.close(); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 41, 13, 41, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 13, 17, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 13, 13, 17, 2, 13, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 62, 8 ], [ 62, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 11, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 11, 22 ], [ 22, 23 ], [ 11, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 11, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 11, 34 ], [ 34, 35 ], [ 35, 36 ], [ 34, 37 ], [ 34, 38 ], [ 38, 39 ], [ 38, 40 ], [ 11, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 43, 45 ], [ 41, 46 ], [ 49, 47 ], [ 47, 48 ], [ 54, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 49, 53 ], [ 54, 54 ], [ 54, 55 ], [ 54, 56 ], [ 47, 57 ], [ 49, 58 ], [ 9, 59 ], [ 59, 60 ], [ 0, 61 ], [ 61, 62 ], [ 61, 63 ] ]
[ "import java.util.Scanner;\nimport java.util.Formatter;\npublic class Main\n{\n\tpublic static void main(String args[])\n\t{\n\t\tScanner inp = new Scanner(System.in);\n\t\tFormatter frm = new Formatter();\n\t\tint a, b;\n\t\tdouble c;\n\t\ta = inp.nextInt();\n\t\tb = inp.nextInt();\n\t\tfrm.format(\"%.5f\",(double)a/b);\n\t\tSystem.out.println(a/b + \" \" + a%b + \" \" + frm);\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "import java.util.Formatter;", "Formatter", "java.util", "public class Main\n{\n\tpublic static void main(String args[])\n\t{\n\t\tScanner inp = new Scanner(System.in);\n\t\tFormatter frm = new Formatter();\n\t\tint a, b;\n\t\tdouble c;\n\t\ta = inp.nextInt();\n\t\tb = inp.nextInt();\n\t\tfrm.format(\"%.5f\",(double)a/b);\n\t\tSystem.out.println(a/b + \" \" + a%b + \" \" + frm);\n\t}\n}", "Main", "public static void main(String args[])\n\t{\n\t\tScanner inp = new Scanner(System.in);\n\t\tFormatter frm = new Formatter();\n\t\tint a, b;\n\t\tdouble c;\n\t\ta = inp.nextInt();\n\t\tb = inp.nextInt();\n\t\tfrm.format(\"%.5f\",(double)a/b);\n\t\tSystem.out.println(a/b + \" \" + a%b + \" \" + frm);\n\t}", "main", "{\n\t\tScanner inp = new Scanner(System.in);\n\t\tFormatter frm = new Formatter();\n\t\tint a, b;\n\t\tdouble c;\n\t\ta = inp.nextInt();\n\t\tb = inp.nextInt();\n\t\tfrm.format(\"%.5f\",(double)a/b);\n\t\tSystem.out.println(a/b + \" \" + a%b + \" \" + frm);\n\t}", "Scanner inp = new Scanner(System.in);", "inp", "new Scanner(System.in)", "Formatter frm = new Formatter();", "frm", "new Formatter()", "int a", "a", "b;", "b", "double c;", "c", "a = inp.nextInt()", "a", "inp.nextInt()", "inp.nextInt", "inp", "b = inp.nextInt()", "b", "inp.nextInt()", "inp.nextInt", "inp", "frm.format(\"%.5f\",(double)a/b)", "frm.format", "frm", "\"%.5f\"", "(double)a/b", "(double)a", "b", "System.out.println(a/b + \" \" + a%b + \" \" + frm)", "System.out.println", "System.out", "System", "System.out", "a/b + \" \" + a%b + \" \" + frm", "\" \"", "a%b", "a/b + \" \" + a%b + \" \" + frm", "a/b", "a", "b", "\" \"", "a%b", "a", "b", "\" \"", "frm", "String args[]", "args", "public class Main\n{\n\tpublic static void main(String args[])\n\t{\n\t\tScanner inp = new Scanner(System.in);\n\t\tFormatter frm = new Formatter();\n\t\tint a, b;\n\t\tdouble c;\n\t\ta = inp.nextInt();\n\t\tb = inp.nextInt();\n\t\tfrm.format(\"%.5f\",(double)a/b);\n\t\tSystem.out.println(a/b + \" \" + a%b + \" \" + frm);\n\t}\n}", "public class Main\n{\n\tpublic static void main(String args[])\n\t{\n\t\tScanner inp = new Scanner(System.in);\n\t\tFormatter frm = new Formatter();\n\t\tint a, b;\n\t\tdouble c;\n\t\ta = inp.nextInt();\n\t\tb = inp.nextInt();\n\t\tfrm.format(\"%.5f\",(double)a/b);\n\t\tSystem.out.println(a/b + \" \" + a%b + \" \" + frm);\n\t}\n}", "Main" ]
import java.util.Scanner; import java.util.Formatter; public class Main { public static void main(String args[]) { Scanner inp = new Scanner(System.in); Formatter frm = new Formatter(); int a, b; double c; a = inp.nextInt(); b = inp.nextInt(); frm.format("%.5f",(double)a/b); System.out.println(a/b + " " + a%b + " " + frm); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 38, 5, 13, 30, 30, 41, 13, 20, 41, 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 2, 17, 13, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 76, 8 ], [ 76, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 13, 14 ], [ 13, 15 ], [ 12, 16 ], [ 16, 17 ], [ 17, 18 ], [ 17, 19 ], [ 16, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 16, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 28, 29 ], [ 27, 30 ], [ 16, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 34, 35 ], [ 33, 36 ], [ 36, 37 ], [ 36, 38 ], [ 16, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 42, 43 ], [ 41, 44 ], [ 44, 45 ], [ 44, 46 ], [ 16, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 49, 51 ], [ 16, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 16, 57 ], [ 57, 58 ], [ 57, 59 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 59, 63 ], [ 16, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 66, 68 ], [ 64, 69 ], [ 64, 70 ], [ 64, 71 ], [ 64, 72 ], [ 9, 73 ], [ 73, 74 ], [ 0, 75 ], [ 75, 76 ], [ 75, 77 ] ]
[ "import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\n\npublic class Main {\n\tpublic static void main(String[] args) throws Exception {\ntry {\n\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString input = buf.readLine();\n\t\n\tString[] strAry = input.split(\" \");\n int a = Integer.parseInt(strAry[0]);\n int b = Integer.parseInt(strAry[1]);\n\n int d = a/b;\n int r = a%b;\n double f = 1.0 * a/b;\n \n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\n\n} catch (Exception e) {\n\t// TODO: handle exception\n}\n\t\t }\n }", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n\tpublic static void main(String[] args) throws Exception {\ntry {\n\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString input = buf.readLine();\n\t\n\tString[] strAry = input.split(\" \");\n int a = Integer.parseInt(strAry[0]);\n int b = Integer.parseInt(strAry[1]);\n\n int d = a/b;\n int r = a%b;\n double f = 1.0 * a/b;\n \n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\n\n} catch (Exception e) {\n\t// TODO: handle exception\n}\n\t\t }\n }", "Main", "public static void main(String[] args) throws Exception {\ntry {\n\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString input = buf.readLine();\n\t\n\tString[] strAry = input.split(\" \");\n int a = Integer.parseInt(strAry[0]);\n int b = Integer.parseInt(strAry[1]);\n\n int d = a/b;\n int r = a%b;\n double f = 1.0 * a/b;\n \n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\n\n} catch (Exception e) {\n\t// TODO: handle exception\n}\n\t\t }", "main", "{\ntry {\n\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString input = buf.readLine();\n\t\n\tString[] strAry = input.split(\" \");\n int a = Integer.parseInt(strAry[0]);\n int b = Integer.parseInt(strAry[1]);\n\n int d = a/b;\n int r = a%b;\n double f = 1.0 * a/b;\n \n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\n\n} catch (Exception e) {\n\t// TODO: handle exception\n}\n\t\t }", "try {\n\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString input = buf.readLine();\n\t\n\tString[] strAry = input.split(\" \");\n int a = Integer.parseInt(strAry[0]);\n int b = Integer.parseInt(strAry[1]);\n\n int d = a/b;\n int r = a%b;\n double f = 1.0 * a/b;\n \n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\n\n} catch (Exception e) {\n\t// TODO: handle exception\n}", "catch (Exception e) {\n\t// TODO: handle exception\n}", "Exception e", "{\n\t// TODO: handle exception\n}", "{\n\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString input = buf.readLine();\n\t\n\tString[] strAry = input.split(\" \");\n int a = Integer.parseInt(strAry[0]);\n int b = Integer.parseInt(strAry[1]);\n\n int d = a/b;\n int r = a%b;\n double f = 1.0 * a/b;\n \n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\n\n}", "BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));", "buf", "new BufferedReader(new InputStreamReader(System.in))", "String input = buf.readLine();", "input", "buf.readLine()", "buf.readLine", "buf", "String[] strAry = input.split(\" \");", "strAry", "input.split(\" \")", "input.split", "input", "\" \"", "int a = Integer.parseInt(strAry[0]);", "a", "Integer.parseInt(strAry[0])", "Integer.parseInt", "Integer", "strAry[0]", "strAry", "0", "int b = Integer.parseInt(strAry[1]);", "b", "Integer.parseInt(strAry[1])", "Integer.parseInt", "Integer", "strAry[1]", "strAry", "1", "int d = a/b;", "d", "a/b", "a", "b", "int r = a%b;", "r", "a%b", "a", "b", "double f = 1.0 * a/b;", "f", "1.0 * a/b", "1.0 * a", "1.0", "a", "b", "System.out.printf(\"%d %d %.5f\\n\", d, r, f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %.5f\\n\"", "d", "r", "f", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) throws Exception {\ntry {\n\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString input = buf.readLine();\n\t\n\tString[] strAry = input.split(\" \");\n int a = Integer.parseInt(strAry[0]);\n int b = Integer.parseInt(strAry[1]);\n\n int d = a/b;\n int r = a%b;\n double f = 1.0 * a/b;\n \n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\n\n} catch (Exception e) {\n\t// TODO: handle exception\n}\n\t\t }\n }", "public class Main {\n\tpublic static void main(String[] args) throws Exception {\ntry {\n\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tString input = buf.readLine();\n\t\n\tString[] strAry = input.split(\" \");\n int a = Integer.parseInt(strAry[0]);\n int b = Integer.parseInt(strAry[1]);\n\n int d = a/b;\n int r = a%b;\n double f = 1.0 * a/b;\n \n System.out.printf(\"%d %d %.5f\\n\", d, r, f);\n\n} catch (Exception e) {\n\t// TODO: handle exception\n}\n\t\t }\n }", "Main" ]
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws Exception { try { BufferedReader buf = new BufferedReader(new InputStreamReader(System.in)); String input = buf.readLine(); String[] strAry = input.split(" "); int a = Integer.parseInt(strAry[0]); int b = Integer.parseInt(strAry[1]); int d = a/b; int r = a%b; double f = 1.0 * a/b; System.out.printf("%d %d %.5f\n", d, r, f); } catch (Exception e) { // TODO: handle exception } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 17, 38, 30, 41, 13, 20, 41, 13, 41, 13, 17, 42, 2, 0, 13, 4, 18, 13, 17, 30, 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, 4, 18, 13, 17, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 13, 13, 17, 2, 13, 13, 17, 13, 3, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 103, 8 ], [ 103, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 16, 17 ], [ 17, 18 ], [ 17, 19 ], [ 16, 20 ], [ 20, 21 ], [ 16, 22 ], [ 22, 23 ], [ 22, 24 ], [ 16, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 26, 32 ], [ 25, 33 ], [ 33, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 37, 38 ], [ 36, 39 ], [ 33, 40 ], [ 40, 41 ], [ 40, 42 ], [ 42, 43 ], [ 43, 44 ], [ 42, 45 ], [ 45, 46 ], [ 45, 47 ], [ 33, 48 ], [ 48, 49 ], [ 48, 50 ], [ 50, 51 ], [ 51, 52 ], [ 50, 53 ], [ 53, 54 ], [ 53, 55 ], [ 33, 56 ], [ 56, 57 ], [ 56, 58 ], [ 58, 59 ], [ 59, 60 ], [ 58, 61 ], [ 61, 62 ], [ 61, 63 ], [ 33, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 67, 68 ], [ 66, 69 ], [ 69, 70 ], [ 69, 71 ], [ 33, 72 ], [ 72, 73 ], [ 72, 74 ], [ 74, 75 ], [ 75, 76 ], [ 74, 77 ], [ 74, 78 ], [ 78, 79 ], [ 78, 80 ], [ 33, 81 ], [ 81, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 81, 86 ], [ 89, 87 ], [ 87, 88 ], [ 94, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 89, 93 ], [ 94, 94 ], [ 94, 95 ], [ 94, 96 ], [ 87, 97 ], [ 89, 98 ], [ 33, 99 ], [ 9, 100 ], [ 100, 101 ], [ 0, 102 ], [ 102, 103 ], [ 102, 104 ] ]
[ "import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n\tpublic static void main(String[] args) throws Exception {\n // TODO ?????????????????????????????????????????????\n \n boolean first=true;\n try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n String line;\n int i=0;\n while ((line = br.readLine()) != null) {\n\n \tString[] str=line.split(\" \");\n \tint a=Integer.parseInt(str[0]);\n \tint b=Integer.parseInt(str[1]);\n \tdouble x=Integer.parseInt(str[0]);\n \tdouble y=Integer.parseInt(str[1]);\n \tString n=String.format(\"%.5f\", (x/y));\n \tSystem.out.println(a/b+\" \"+a%b+\" \"+n);\n \t\n \tbreak;\n }\n }\n }\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n\n\tpublic static void main(String[] args) throws Exception {\n // TODO ?????????????????????????????????????????????\n \n boolean first=true;\n try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n String line;\n int i=0;\n while ((line = br.readLine()) != null) {\n\n \tString[] str=line.split(\" \");\n \tint a=Integer.parseInt(str[0]);\n \tint b=Integer.parseInt(str[1]);\n \tdouble x=Integer.parseInt(str[0]);\n \tdouble y=Integer.parseInt(str[1]);\n \tString n=String.format(\"%.5f\", (x/y));\n \tSystem.out.println(a/b+\" \"+a%b+\" \"+n);\n \t\n \tbreak;\n }\n }\n }\n}", "Main", "public static void main(String[] args) throws Exception {\n // TODO ?????????????????????????????????????????????\n \n boolean first=true;\n try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n String line;\n int i=0;\n while ((line = br.readLine()) != null) {\n\n \tString[] str=line.split(\" \");\n \tint a=Integer.parseInt(str[0]);\n \tint b=Integer.parseInt(str[1]);\n \tdouble x=Integer.parseInt(str[0]);\n \tdouble y=Integer.parseInt(str[1]);\n \tString n=String.format(\"%.5f\", (x/y));\n \tSystem.out.println(a/b+\" \"+a%b+\" \"+n);\n \t\n \tbreak;\n }\n }\n }", "main", "{\n // TODO ?????????????????????????????????????????????\n \n boolean first=true;\n try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n String line;\n int i=0;\n while ((line = br.readLine()) != null) {\n\n \tString[] str=line.split(\" \");\n \tint a=Integer.parseInt(str[0]);\n \tint b=Integer.parseInt(str[1]);\n \tdouble x=Integer.parseInt(str[0]);\n \tdouble y=Integer.parseInt(str[1]);\n \tString n=String.format(\"%.5f\", (x/y));\n \tSystem.out.println(a/b+\" \"+a%b+\" \"+n);\n \t\n \tbreak;\n }\n }\n }", "boolean first=true;", "first", "true", "try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n String line;\n int i=0;\n while ((line = br.readLine()) != null) {\n\n \tString[] str=line.split(\" \");\n \tint a=Integer.parseInt(str[0]);\n \tint b=Integer.parseInt(str[1]);\n \tdouble x=Integer.parseInt(str[0]);\n \tdouble y=Integer.parseInt(str[1]);\n \tString n=String.format(\"%.5f\", (x/y));\n \tSystem.out.println(a/b+\" \"+a%b+\" \"+n);\n \t\n \tbreak;\n }\n }", "{\n String line;\n int i=0;\n while ((line = br.readLine()) != null) {\n\n \tString[] str=line.split(\" \");\n \tint a=Integer.parseInt(str[0]);\n \tint b=Integer.parseInt(str[1]);\n \tdouble x=Integer.parseInt(str[0]);\n \tdouble y=Integer.parseInt(str[1]);\n \tString n=String.format(\"%.5f\", (x/y));\n \tSystem.out.println(a/b+\" \"+a%b+\" \"+n);\n \t\n \tbreak;\n }\n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in))", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in))", "new BufferedReader(new InputStreamReader(System.in))", "String line;", "line", "int i=0;", "i", "0", "while ((line = br.readLine()) != null) {\n\n \tString[] str=line.split(\" \");\n \tint a=Integer.parseInt(str[0]);\n \tint b=Integer.parseInt(str[1]);\n \tdouble x=Integer.parseInt(str[0]);\n \tdouble y=Integer.parseInt(str[1]);\n \tString n=String.format(\"%.5f\", (x/y));\n \tSystem.out.println(a/b+\" \"+a%b+\" \"+n);\n \t\n \tbreak;\n }", "(line = br.readLine()) != null", "(line = br.readLine())", "line", "br.readLine()", "br.readLine", "br", "null", "{\n\n \tString[] str=line.split(\" \");\n \tint a=Integer.parseInt(str[0]);\n \tint b=Integer.parseInt(str[1]);\n \tdouble x=Integer.parseInt(str[0]);\n \tdouble y=Integer.parseInt(str[1]);\n \tString n=String.format(\"%.5f\", (x/y));\n \tSystem.out.println(a/b+\" \"+a%b+\" \"+n);\n \t\n \tbreak;\n }", "String[] str=line.split(\" \");", "str", "line.split(\" \")", "line.split", "line", "\" \"", "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", "double x=Integer.parseInt(str[0]);", "x", "Integer.parseInt(str[0])", "Integer.parseInt", "Integer", "str[0]", "str", "0", "double y=Integer.parseInt(str[1]);", "y", "Integer.parseInt(str[1])", "Integer.parseInt", "Integer", "str[1]", "str", "1", "String n=String.format(\"%.5f\", (x/y));", "n", "String.format(\"%.5f\", (x/y))", "String.format", "String", "\"%.5f\"", "(x/y)", "x", "y", "System.out.println(a/b+\" \"+a%b+\" \"+n)", "System.out.println", "System.out", "System", "System.out", "a/b+\" \"+a%b+\" \"+n", "\" \"", "a%b", "a/b+\" \"+a%b+\" \"+n", "a/b", "a", "b", "\" \"", "a%b", "a", "b", "\" \"", "n", "break;", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) throws Exception {\n // TODO ?????????????????????????????????????????????\n \n boolean first=true;\n try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n String line;\n int i=0;\n while ((line = br.readLine()) != null) {\n\n \tString[] str=line.split(\" \");\n \tint a=Integer.parseInt(str[0]);\n \tint b=Integer.parseInt(str[1]);\n \tdouble x=Integer.parseInt(str[0]);\n \tdouble y=Integer.parseInt(str[1]);\n \tString n=String.format(\"%.5f\", (x/y));\n \tSystem.out.println(a/b+\" \"+a%b+\" \"+n);\n \t\n \tbreak;\n }\n }\n }\n}", "public class Main {\n\n\tpublic static void main(String[] args) throws Exception {\n // TODO ?????????????????????????????????????????????\n \n boolean first=true;\n try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {\n String line;\n int i=0;\n while ((line = br.readLine()) != null) {\n\n \tString[] str=line.split(\" \");\n \tint a=Integer.parseInt(str[0]);\n \tint b=Integer.parseInt(str[1]);\n \tdouble x=Integer.parseInt(str[0]);\n \tdouble y=Integer.parseInt(str[1]);\n \tString n=String.format(\"%.5f\", (x/y));\n \tSystem.out.println(a/b+\" \"+a%b+\" \"+n);\n \t\n \tbreak;\n }\n }\n }\n}", "Main" ]
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws Exception { // TODO ????????????????????????????????????????????? boolean first=true; try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) { String line; int i=0; while ((line = br.readLine()) != null) { String[] str=line.split(" "); int a=Integer.parseInt(str[0]); int b=Integer.parseInt(str[1]); double x=Integer.parseInt(str[0]); double y=Integer.parseInt(str[1]); String n=String.format("%.5f", (x/y)); System.out.println(a/b+" "+a%b+" "+n); break; } } } }
[ 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, 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, 4, 18, 18, 13, 13, 2, 2, 13, 13, 17, 4, 18, 18, 13, 13, 2, 2, 13, 13, 17, 41, 13, 2, 13, 13, 41, 13, 20, 41, 13, 4, 18, 13, 17, 18, 13, 13, 4, 18, 18, 13, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 105, 8 ], [ 105, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 11, 26 ], [ 26, 27 ], [ 26, 28 ], [ 28, 29 ], [ 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 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 58, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 11, 68 ], [ 68, 69 ], [ 69, 70 ], [ 70, 71 ], [ 70, 72 ], [ 68, 73 ], [ 73, 74 ], [ 74, 75 ], [ 74, 76 ], [ 73, 77 ], [ 11, 78 ], [ 78, 79 ], [ 78, 80 ], [ 80, 81 ], [ 80, 82 ], [ 11, 83 ], [ 83, 84 ], [ 83, 85 ], [ 11, 86 ], [ 86, 87 ], [ 86, 88 ], [ 88, 89 ], [ 89, 90 ], [ 88, 91 ], [ 88, 92 ], [ 92, 93 ], [ 92, 94 ], [ 11, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 97, 99 ], [ 95, 100 ], [ 95, 101 ], [ 9, 102 ], [ 102, 103 ], [ 0, 104 ], [ 104, 105 ], [ 104, 106 ] ]
[ "import java.math.BigDecimal;\nimport java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] x = line.split(\" \");\n\t\tint a = Integer.parseInt(x[0]);\n\t\tint b = Integer.parseInt(x[1]);\n\t\tdouble fa = Integer.parseInt(x[0]);\n\t\tdouble fb = Integer.parseInt(x[1]);\n\t\tSystem.out.print(a / b + \" \");\n\t\tSystem.out.print(a % b + \" \");\n\t\tdouble f = fa / fb;\n\t\tBigDecimal B = new BigDecimal(f);\n\t\tBigDecimal F = B.setScale(9, BigDecimal.ROUND_HALF_UP);\n\t\tSystem.out.printf(\"%.8f\",F);\n\n\t}\n\n}", "import java.math.BigDecimal;", "BigDecimal", "java.math", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] x = line.split(\" \");\n\t\tint a = Integer.parseInt(x[0]);\n\t\tint b = Integer.parseInt(x[1]);\n\t\tdouble fa = Integer.parseInt(x[0]);\n\t\tdouble fb = Integer.parseInt(x[1]);\n\t\tSystem.out.print(a / b + \" \");\n\t\tSystem.out.print(a % b + \" \");\n\t\tdouble f = fa / fb;\n\t\tBigDecimal B = new BigDecimal(f);\n\t\tBigDecimal F = B.setScale(9, BigDecimal.ROUND_HALF_UP);\n\t\tSystem.out.printf(\"%.8f\",F);\n\n\t}\n\n}", "Main", "public static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] x = line.split(\" \");\n\t\tint a = Integer.parseInt(x[0]);\n\t\tint b = Integer.parseInt(x[1]);\n\t\tdouble fa = Integer.parseInt(x[0]);\n\t\tdouble fb = Integer.parseInt(x[1]);\n\t\tSystem.out.print(a / b + \" \");\n\t\tSystem.out.print(a % b + \" \");\n\t\tdouble f = fa / fb;\n\t\tBigDecimal B = new BigDecimal(f);\n\t\tBigDecimal F = B.setScale(9, BigDecimal.ROUND_HALF_UP);\n\t\tSystem.out.printf(\"%.8f\",F);\n\n\t}", "main", "{\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] x = line.split(\" \");\n\t\tint a = Integer.parseInt(x[0]);\n\t\tint b = Integer.parseInt(x[1]);\n\t\tdouble fa = Integer.parseInt(x[0]);\n\t\tdouble fb = Integer.parseInt(x[1]);\n\t\tSystem.out.print(a / b + \" \");\n\t\tSystem.out.print(a % b + \" \");\n\t\tdouble f = fa / fb;\n\t\tBigDecimal B = new BigDecimal(f);\n\t\tBigDecimal F = B.setScale(9, BigDecimal.ROUND_HALF_UP);\n\t\tSystem.out.printf(\"%.8f\",F);\n\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "String line = sc.nextLine();", "line", "sc.nextLine()", "sc.nextLine", "sc", "String[] x = line.split(\" \");", "x", "line.split(\" \")", "line.split", "line", "\" \"", "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", "double fa = Integer.parseInt(x[0]);", "fa", "Integer.parseInt(x[0])", "Integer.parseInt", "Integer", "x[0]", "x", "0", "double fb = Integer.parseInt(x[1]);", "fb", "Integer.parseInt(x[1])", "Integer.parseInt", "Integer", "x[1]", "x", "1", "System.out.print(a / b + \" \")", "System.out.print", "System.out", "System", "System.out", "a / b + \" \"", "a / b", "a", "b", "\" \"", "System.out.print(a % b + \" \")", "System.out.print", "System.out", "System", "System.out", "a % b + \" \"", "a % b", "a", "b", "\" \"", "double f = fa / fb;", "f", "fa / fb", "fa", "fb", "BigDecimal B = new BigDecimal(f);", "B", "new BigDecimal(f)", "BigDecimal F = B.setScale(9, BigDecimal.ROUND_HALF_UP);", "F", "B.setScale(9, BigDecimal.ROUND_HALF_UP)", "B.setScale", "B", "9", "BigDecimal.ROUND_HALF_UP", "BigDecimal", "BigDecimal.ROUND_HALF_UP", "System.out.printf(\"%.8f\",F)", "System.out.printf", "System.out", "System", "System.out", "\"%.8f\"", "F", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] x = line.split(\" \");\n\t\tint a = Integer.parseInt(x[0]);\n\t\tint b = Integer.parseInt(x[1]);\n\t\tdouble fa = Integer.parseInt(x[0]);\n\t\tdouble fb = Integer.parseInt(x[1]);\n\t\tSystem.out.print(a / b + \" \");\n\t\tSystem.out.print(a % b + \" \");\n\t\tdouble f = fa / fb;\n\t\tBigDecimal B = new BigDecimal(f);\n\t\tBigDecimal F = B.setScale(9, BigDecimal.ROUND_HALF_UP);\n\t\tSystem.out.printf(\"%.8f\",F);\n\n\t}\n\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] x = line.split(\" \");\n\t\tint a = Integer.parseInt(x[0]);\n\t\tint b = Integer.parseInt(x[1]);\n\t\tdouble fa = Integer.parseInt(x[0]);\n\t\tdouble fb = Integer.parseInt(x[1]);\n\t\tSystem.out.print(a / b + \" \");\n\t\tSystem.out.print(a % b + \" \");\n\t\tdouble f = fa / fb;\n\t\tBigDecimal B = new BigDecimal(f);\n\t\tBigDecimal F = B.setScale(9, BigDecimal.ROUND_HALF_UP);\n\t\tSystem.out.printf(\"%.8f\",F);\n\n\t}\n\n}", "Main" ]
import java.math.BigDecimal; import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO ????????????????????????????????????????????? Scanner sc = new Scanner(System.in); String line = sc.nextLine(); String[] x = line.split(" "); int a = Integer.parseInt(x[0]); int b = Integer.parseInt(x[1]); double fa = Integer.parseInt(x[0]); double fb = Integer.parseInt(x[1]); System.out.print(a / b + " "); System.out.print(a % b + " "); double f = fa / fb; BigDecimal B = new BigDecimal(f); BigDecimal F = B.setScale(9, BigDecimal.ROUND_HALF_UP); System.out.printf("%.8f",F); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 2, 2, 13, 13, 17, 4, 18, 18, 13, 13, 2, 2, 13, 13, 17, 41, 13, 2, 13, 13, 41, 13, 4, 18, 13, 17, 13, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 63, 5 ], [ 63, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 27, 31 ], [ 8, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 34, 36 ], [ 32, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 37, 41 ], [ 8, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 44, 46 ], [ 8, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 50, 51 ], [ 49, 52 ], [ 49, 53 ], [ 8, 54 ], [ 54, 55 ], [ 55, 56 ], [ 56, 57 ], [ 56, 58 ], [ 54, 59 ], [ 6, 60 ], [ 60, 61 ], [ 0, 62 ], [ 62, 63 ], [ 62, 64 ] ]
[ "import java.util.Scanner;\npublic class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n long a = sc.nextInt();\n long b = sc.nextInt();\n System.out.print(a/b + \" \");\n System.out.print(a%b + \" \");\n double f = (double)a/b;\n String f2 = String.format(\"%.5f\", f);\n System.out.println(f2);\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 long a = sc.nextInt();\n long b = sc.nextInt();\n System.out.print(a/b + \" \");\n System.out.print(a%b + \" \");\n double f = (double)a/b;\n String f2 = String.format(\"%.5f\", f);\n System.out.println(f2);\n }\n}", "Main", "public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n long a = sc.nextInt();\n long b = sc.nextInt();\n System.out.print(a/b + \" \");\n System.out.print(a%b + \" \");\n double f = (double)a/b;\n String f2 = String.format(\"%.5f\", f);\n System.out.println(f2);\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n long a = sc.nextInt();\n long b = sc.nextInt();\n System.out.print(a/b + \" \");\n System.out.print(a%b + \" \");\n double f = (double)a/b;\n String f2 = String.format(\"%.5f\", f);\n System.out.println(f2);\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "long a = sc.nextInt();", "a", "sc.nextInt()", "sc.nextInt", "sc", "long b = sc.nextInt();", "b", "sc.nextInt()", "sc.nextInt", "sc", "System.out.print(a/b + \" \")", "System.out.print", "System.out", "System", "System.out", "a/b + \" \"", "a/b", "a", "b", "\" \"", "System.out.print(a%b + \" \")", "System.out.print", "System.out", "System", "System.out", "a%b + \" \"", "a%b", "a", "b", "\" \"", "double f = (double)a/b;", "f", "(double)a/b", "(double)a", "b", "String f2 = String.format(\"%.5f\", f);", "f2", "String.format(\"%.5f\", f)", "String.format", "String", "\"%.5f\"", "f", "System.out.println(f2)", "System.out.println", "System.out", "System", "System.out", "f2", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n long a = sc.nextInt();\n long b = sc.nextInt();\n System.out.print(a/b + \" \");\n System.out.print(a%b + \" \");\n double f = (double)a/b;\n String f2 = String.format(\"%.5f\", f);\n System.out.println(f2);\n }\n}", "public class Main {\n public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n long a = sc.nextInt();\n long b = sc.nextInt();\n System.out.print(a/b + \" \");\n System.out.print(a%b + \" \");\n double f = (double)a/b;\n String f2 = String.format(\"%.5f\", f);\n System.out.println(f2);\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.nextInt(); long b = sc.nextInt(); System.out.print(a/b + " "); System.out.print(a%b + " "); double f = (double)a/b; String f2 = String.format("%.5f", f); System.out.println(f2); } }
[ 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, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 13, 17, 13, 17, 4, 18, 18, 13, 13, 17, 13, 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 ], [ 85, 8 ], [ 85, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 11, 26 ], [ 26, 27 ], [ 26, 28 ], [ 28, 29 ], [ 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 ], [ 44, 46 ], [ 11, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 49, 51 ], [ 11, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 11, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 57, 62 ], [ 64, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 64, 68 ], [ 11, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 71, 73 ], [ 69, 74 ], [ 69, 75 ], [ 11, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 76, 81 ], [ 9, 82 ], [ 82, 83 ], [ 0, 84 ], [ 84, 85 ], [ 84, 86 ] ]
[ "import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\npublic class Main {\n public static void main(String[] args) throws Exception {\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n \n String[] ary = line.split(\" \");\n int a = Integer.parseInt(ary[0]);\n int b = Integer.parseInt(ary[1]);\n \n int ansA = a / b;\n int ansB = a % b;\n double ansC = (double)a / (double)b;\n \n \n System.out.print(ansA + \" \" + ansB + \" \");\n System.out.printf(\"%.5f\", ansC);\n System.out.println(\"\");\n }\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\n public static void main(String[] args) throws Exception {\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n \n String[] ary = line.split(\" \");\n int a = Integer.parseInt(ary[0]);\n int b = Integer.parseInt(ary[1]);\n \n int ansA = a / b;\n int ansB = a % b;\n double ansC = (double)a / (double)b;\n \n \n System.out.print(ansA + \" \" + ansB + \" \");\n System.out.printf(\"%.5f\", ansC);\n System.out.println(\"\");\n }\n}", "Main", "public static void main(String[] args) throws Exception {\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n \n String[] ary = line.split(\" \");\n int a = Integer.parseInt(ary[0]);\n int b = Integer.parseInt(ary[1]);\n \n int ansA = a / b;\n int ansB = a % b;\n double ansC = (double)a / (double)b;\n \n \n System.out.print(ansA + \" \" + ansB + \" \");\n System.out.printf(\"%.5f\", ansC);\n System.out.println(\"\");\n }", "main", "{\n \n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n \n String[] ary = line.split(\" \");\n int a = Integer.parseInt(ary[0]);\n int b = Integer.parseInt(ary[1]);\n \n int ansA = a / b;\n int ansB = a % b;\n double ansC = (double)a / (double)b;\n \n \n System.out.print(ansA + \" \" + ansB + \" \");\n System.out.printf(\"%.5f\", ansC);\n System.out.println(\"\");\n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String line = br.readLine();", "line", "br.readLine()", "br.readLine", "br", "String[] ary = line.split(\" \");", "ary", "line.split(\" \")", "line.split", "line", "\" \"", "int a = Integer.parseInt(ary[0]);", "a", "Integer.parseInt(ary[0])", "Integer.parseInt", "Integer", "ary[0]", "ary", "0", "int b = Integer.parseInt(ary[1]);", "b", "Integer.parseInt(ary[1])", "Integer.parseInt", "Integer", "ary[1]", "ary", "1", "int ansA = a / b;", "ansA", "a / b", "a", "b", "int ansB = a % b;", "ansB", "a % b", "a", "b", "double ansC = (double)a / (double)b;", "ansC", "(double)a / (double)b", "(double)a", "(double)b", "System.out.print(ansA + \" \" + ansB + \" \")", "System.out.print", "System.out", "System", "System.out", "ansA + \" \" + ansB + \" \"", "ansB", "ansA + \" \" + ansB + \" \"", "ansA", "\" \"", "ansB", "\" \"", "System.out.printf(\"%.5f\", ansC)", "System.out.printf", "System.out", "System", "System.out", "\"%.5f\"", "ansC", "System.out.println(\"\")", "System.out.println", "System.out", "System", "System.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 String line = br.readLine();\n \n String[] ary = line.split(\" \");\n int a = Integer.parseInt(ary[0]);\n int b = Integer.parseInt(ary[1]);\n \n int ansA = a / b;\n int ansB = a % b;\n double ansC = (double)a / (double)b;\n \n \n System.out.print(ansA + \" \" + ansB + \" \");\n System.out.printf(\"%.5f\", ansC);\n System.out.println(\"\");\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 String line = br.readLine();\n \n String[] ary = line.split(\" \");\n int a = Integer.parseInt(ary[0]);\n int b = Integer.parseInt(ary[1]);\n \n int ansA = a / b;\n int ansB = a % b;\n double ansC = (double)a / (double)b;\n \n \n System.out.print(ansA + \" \" + ansB + \" \");\n System.out.printf(\"%.5f\", ansC);\n System.out.println(\"\");\n }\n}", "Main" ]
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line = br.readLine(); String[] ary = line.split(" "); int a = Integer.parseInt(ary[0]); int b = Integer.parseInt(ary[1]); int ansA = a / b; int ansB = a % b; double ansC = (double)a / (double)b; System.out.print(ansA + " " + ansB + " "); System.out.printf("%.5f", ansC); System.out.println(""); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 41, 13, 12, 13, 30, 41, 13, 20, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 4, 18, 18, 13, 13, 17, 12, 13, 30, 20, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 7, 11 ], [ 11, 12 ], [ 7, 13 ], [ 13, 14 ], [ 13, 15 ], [ 15, 16 ], [ 16, 17 ], [ 16, 18 ], [ 15, 19 ], [ 19, 20 ], [ 19, 21 ], [ 21, 22 ], [ 22, 23 ], [ 15, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 15, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 31, 33 ], [ 15, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 36, 38 ], [ 15, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 41, 43 ], [ 15, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 44, 49 ], [ 44, 50 ], [ 44, 51 ], [ 44, 52 ], [ 15, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 53, 58 ], [ 7, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 59, 63 ], [ 63, 64 ] ]
[ "import java.util.*;\nimport java.io.*;\n\nclass Main{\t\t//?????£??????\n\n\tint a;\n\tint b;\n\n\tpublic Main(){\n\t\tScanner scan = new Scanner(System.in);\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\n\t\tint x = a / b;\n\t\tint y = a % b;\n\t\tdouble z = (double)a / (double)b;\n\n\t\tSystem.out.printf(\"%d %d %.5f\", x, y, z);\n\t\tSystem.out.println(\"\");\n\t}\n\tpublic static void main(String[] args){\n\t\tnew Main();\n\t}\n}", "import java.util.*;", "util.*", "java", "import java.io.*;", "io.*", "java", "class Main{\t\t//?????£??????\n\n\tint a;\n\tint b;\n\n\tpublic Main(){\n\t\tScanner scan = new Scanner(System.in);\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\n\t\tint x = a / b;\n\t\tint y = a % b;\n\t\tdouble z = (double)a / (double)b;\n\n\t\tSystem.out.printf(\"%d %d %.5f\", x, y, z);\n\t\tSystem.out.println(\"\");\n\t}\n\tpublic static void main(String[] args){\n\t\tnew Main();\n\t}\n}", "Main", "int a;", "a", "int b;", "b", "public Main(){\n\t\tScanner scan = new Scanner(System.in);\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\n\t\tint x = a / b;\n\t\tint y = a % b;\n\t\tdouble z = (double)a / (double)b;\n\n\t\tSystem.out.printf(\"%d %d %.5f\", x, y, z);\n\t\tSystem.out.println(\"\");\n\t}", "Main", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\ta = scan.nextInt();\n\t\tb = scan.nextInt();\n\n\t\tint x = a / b;\n\t\tint y = a % b;\n\t\tdouble z = (double)a / (double)b;\n\n\t\tSystem.out.printf(\"%d %d %.5f\", x, y, z);\n\t\tSystem.out.println(\"\");\n\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "a = scan.nextInt()", "a", "scan.nextInt()", "scan.nextInt", "scan", "b = scan.nextInt()", "b", "scan.nextInt()", "scan.nextInt", "scan", "int x = a / b;", "x", "a / b", "a", "b", "int y = a % b;", "y", "a % b", "a", "b", "double z = (double)a / (double)b;", "z", "(double)a / (double)b", "(double)a", "(double)b", "System.out.printf(\"%d %d %.5f\", x, y, z)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %.5f\"", "x", "y", "z", "System.out.println(\"\")", "System.out.println", "System.out", "System", "System.out", "\"\"", "public static void main(String[] args){\n\t\tnew Main();\n\t}", "main", "{\n\t\tnew Main();\n\t}", "new Main()", "String[] args", "args" ]
import java.util.*; import java.io.*; class Main{ //?????£?????? int a; int b; public Main(){ Scanner scan = new Scanner(System.in); a = scan.nextInt(); b = scan.nextInt(); int x = a / b; int y = a % b; double z = (double)a / (double)b; System.out.printf("%d %d %.5f", x, y, z); System.out.println(""); } public static void main(String[] args){ new Main(); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 20, 41, 13, 20, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 2, 13, 13, 0, 13, 2, 13, 13, 0, 13, 2, 2, 17, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 13, 17, 13, 17, 4, 18, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 75, 8 ], [ 75, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 11, 14 ], [ 14, 15 ], [ 11, 16 ], [ 16, 17 ], [ 11, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 11, 22 ], [ 22, 23 ], [ 22, 24 ], [ 11, 25 ], [ 25, 26 ], [ 25, 27 ], [ 11, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 11, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 36, 37 ], [ 11, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 40, 42 ], [ 11, 43 ], [ 43, 44 ], [ 43, 45 ], [ 45, 46 ], [ 45, 47 ], [ 11, 48 ], [ 48, 49 ], [ 48, 50 ], [ 50, 51 ], [ 51, 52 ], [ 51, 53 ], [ 50, 54 ], [ 11, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 55, 60 ], [ 63, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 62, 66 ], [ 61, 67 ], [ 63, 68 ], [ 68, 69 ], [ 69, 70 ], [ 68, 71 ], [ 9, 72 ], [ 72, 73 ], [ 0, 74 ], [ 74, 75 ], [ 74, 76 ] ]
[ "\nimport java.util.Scanner;\nimport java.text.DecimalFormat;\n\npublic class Main {\n\tpublic static void main(String[] args){\n\t\tint a, b, d, r;\n\t\tdouble f;\n\t\tDecimalFormat t = new DecimalFormat(\"0.00000\");\n\t\tScanner sc = new Scanner(System.in);\n\t\ta = sc.nextInt();\n\t\tb = sc.nextInt();\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf =1.0 * a / b;\n\t\tSystem.out.println(d + \" \" + r + \" \" + t.format(f));\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "import java.text.DecimalFormat;", "DecimalFormat", "java.text", "public class Main {\n\tpublic static void main(String[] args){\n\t\tint a, b, d, r;\n\t\tdouble f;\n\t\tDecimalFormat t = new DecimalFormat(\"0.00000\");\n\t\tScanner sc = new Scanner(System.in);\n\t\ta = sc.nextInt();\n\t\tb = sc.nextInt();\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf =1.0 * a / b;\n\t\tSystem.out.println(d + \" \" + r + \" \" + t.format(f));\n\t}\n}", "Main", "public static void main(String[] args){\n\t\tint a, b, d, r;\n\t\tdouble f;\n\t\tDecimalFormat t = new DecimalFormat(\"0.00000\");\n\t\tScanner sc = new Scanner(System.in);\n\t\ta = sc.nextInt();\n\t\tb = sc.nextInt();\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf =1.0 * a / b;\n\t\tSystem.out.println(d + \" \" + r + \" \" + t.format(f));\n\t}", "main", "{\n\t\tint a, b, d, r;\n\t\tdouble f;\n\t\tDecimalFormat t = new DecimalFormat(\"0.00000\");\n\t\tScanner sc = new Scanner(System.in);\n\t\ta = sc.nextInt();\n\t\tb = sc.nextInt();\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf =1.0 * a / b;\n\t\tSystem.out.println(d + \" \" + r + \" \" + t.format(f));\n\t}", "int a", "a", "b", "b", "d", "d", "r;", "r", "double f;", "f", "DecimalFormat t = new DecimalFormat(\"0.00000\");", "t", "new DecimalFormat(\"0.00000\")", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "a = sc.nextInt()", "a", "sc.nextInt()", "sc.nextInt", "sc", "b = sc.nextInt()", "b", "sc.nextInt()", "sc.nextInt", "sc", "d = a / b", "d", "a / b", "a", "b", "r = a % b", "r", "a % b", "a", "b", "f =1.0 * a / b", "f", "1.0 * a / b", "1.0 * a", "1.0", "a", "b", "System.out.println(d + \" \" + r + \" \" + t.format(f))", "System.out.println", "System.out", "System", "System.out", "d + \" \" + r + \" \" + t.format(f)", "\" \"", "r", "d + \" \" + r + \" \" + t.format(f)", "d", "\" \"", "r", "\" \"", "t.format(f)", "t.format", "t", "f", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args){\n\t\tint a, b, d, r;\n\t\tdouble f;\n\t\tDecimalFormat t = new DecimalFormat(\"0.00000\");\n\t\tScanner sc = new Scanner(System.in);\n\t\ta = sc.nextInt();\n\t\tb = sc.nextInt();\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf =1.0 * a / b;\n\t\tSystem.out.println(d + \" \" + r + \" \" + t.format(f));\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args){\n\t\tint a, b, d, r;\n\t\tdouble f;\n\t\tDecimalFormat t = new DecimalFormat(\"0.00000\");\n\t\tScanner sc = new Scanner(System.in);\n\t\ta = sc.nextInt();\n\t\tb = sc.nextInt();\n\t\td = a / b;\n\t\tr = a % b;\n\t\tf =1.0 * a / b;\n\t\tSystem.out.println(d + \" \" + r + \" \" + t.format(f));\n\t}\n}", "Main" ]
import java.util.Scanner; import java.text.DecimalFormat; public class Main { public static void main(String[] args){ int a, b, d, r; double f; DecimalFormat t = new DecimalFormat("0.00000"); Scanner sc = new Scanner(System.in); a = sc.nextInt(); b = sc.nextInt(); d = a / b; r = a % b; f =1.0 * a / b; System.out.println(d + " " + r + " " + t.format(f)); } }
[ 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, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 13, 41, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 13, 17, 13, 17, 4, 18, 18, 13, 13, 4, 18, 13, 17, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 74, 5 ], [ 74, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 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 ], [ 30, 32 ], [ 8, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 35, 37 ], [ 8, 38 ], [ 38, 39 ], [ 38, 40 ], [ 8, 41 ], [ 41, 42 ], [ 41, 43 ], [ 8, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 46, 48 ], [ 8, 49 ], [ 49, 50 ], [ 50, 51 ], [ 51, 52 ], [ 51, 53 ], [ 49, 54 ], [ 56, 55 ], [ 55, 56 ], [ 56, 57 ], [ 56, 58 ], [ 55, 59 ], [ 56, 60 ], [ 8, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 61, 66 ], [ 66, 67 ], [ 67, 68 ], [ 66, 69 ], [ 66, 70 ], [ 6, 71 ], [ 71, 72 ], [ 0, 73 ], [ 73, 74 ], [ 73, 75 ] ]
[ "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 a = Integer.parseInt(sc.next());\n\t\tint b = Integer.parseInt(sc.next());\n\n\t\tint d = a/b ;\n\t\tint r = a%b ;\n\n\t\tdouble c = (double) a;\n\t\tdouble e = (double) b;\n\n\t\tdouble f = c / e;\n\n\t\tSystem.out.print(d +\" \"+r+\" \");\n\t\tSystem.out.println(String.format(\"%.5f\",f));\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 = Integer.parseInt(sc.next());\n\t\tint b = Integer.parseInt(sc.next());\n\n\t\tint d = a/b ;\n\t\tint r = a%b ;\n\n\t\tdouble c = (double) a;\n\t\tdouble e = (double) b;\n\n\t\tdouble f = c / e;\n\n\t\tSystem.out.print(d +\" \"+r+\" \");\n\t\tSystem.out.println(String.format(\"%.5f\",f));\n\t}\n}", "Main", "public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = Integer.parseInt(sc.next());\n\t\tint b = Integer.parseInt(sc.next());\n\n\t\tint d = a/b ;\n\t\tint r = a%b ;\n\n\t\tdouble c = (double) a;\n\t\tdouble e = (double) b;\n\n\t\tdouble f = c / e;\n\n\t\tSystem.out.print(d +\" \"+r+\" \");\n\t\tSystem.out.println(String.format(\"%.5f\",f));\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint a = Integer.parseInt(sc.next());\n\t\tint b = Integer.parseInt(sc.next());\n\n\t\tint d = a/b ;\n\t\tint r = a%b ;\n\n\t\tdouble c = (double) a;\n\t\tdouble e = (double) b;\n\n\t\tdouble f = c / e;\n\n\t\tSystem.out.print(d +\" \"+r+\" \");\n\t\tSystem.out.println(String.format(\"%.5f\",f));\n\t}", "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 d = a/b ;", "d", "a/b", "a", "b", "int r = a%b ;", "r", "a%b", "a", "b", "double c = (double) a;", "c", "(double) a", "double e = (double) b;", "e", "(double) b", "double f = c / e;", "f", "c / e", "c", "e", "System.out.print(d +\" \"+r+\" \")", "System.out.print", "System.out", "System", "System.out", "d +\" \"+r+\" \"", "r", "d +\" \"+r+\" \"", "d", "\" \"", "r", "\" \"", "System.out.println(String.format(\"%.5f\",f))", "System.out.println", "System.out", "System", "System.out", "String.format(\"%.5f\",f)", "String.format", "String", "\"%.5f\"", "f", "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 = Integer.parseInt(sc.next());\n\t\tint b = Integer.parseInt(sc.next());\n\n\t\tint d = a/b ;\n\t\tint r = a%b ;\n\n\t\tdouble c = (double) a;\n\t\tdouble e = (double) b;\n\n\t\tdouble f = c / e;\n\n\t\tSystem.out.print(d +\" \"+r+\" \");\n\t\tSystem.out.println(String.format(\"%.5f\",f));\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 = Integer.parseInt(sc.next());\n\t\tint b = Integer.parseInt(sc.next());\n\n\t\tint d = a/b ;\n\t\tint r = a%b ;\n\n\t\tdouble c = (double) a;\n\t\tdouble e = (double) b;\n\n\t\tdouble f = c / e;\n\n\t\tSystem.out.print(d +\" \"+r+\" \");\n\t\tSystem.out.println(String.format(\"%.5f\",f));\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 = Integer.parseInt(sc.next()); int b = Integer.parseInt(sc.next()); int d = a/b ; int r = a%b ; double c = (double) a; double e = (double) b; double f = c / e; System.out.print(d +" "+r+" "); System.out.println(String.format("%.5f",f)); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 17, 0, 13, 4, 18, 4, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 14, 2, 2, 2, 2, 13, 17, 2, 13, 17, 2, 4, 18, 13, 17, 17, 13, 2, 4, 18, 13, 17, 17, 13, 30, 37, 20, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 13, 13, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 14, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 24, 29 ], [ 14, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 32, 35 ], [ 35, 36 ], [ 35, 37 ], [ 14, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 43, 44 ], [ 43, 45 ], [ 14, 46 ], [ 46, 47 ], [ 49, 48 ], [ 56, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 49, 53 ], [ 53, 54 ], [ 53, 55 ], [ 56, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 57, 60 ], [ 57, 61 ], [ 56, 62 ], [ 49, 63 ], [ 63, 64 ], [ 64, 65 ], [ 65, 66 ], [ 64, 67 ], [ 64, 68 ], [ 63, 69 ], [ 46, 70 ], [ 70, 71 ], [ 71, 72 ], [ 14, 73 ], [ 73, 74 ], [ 73, 75 ], [ 75, 76 ], [ 75, 77 ], [ 14, 78 ], [ 78, 79 ], [ 78, 80 ], [ 80, 81 ], [ 80, 82 ], [ 14, 83 ], [ 83, 84 ], [ 83, 85 ], [ 85, 86 ], [ 85, 87 ], [ 14, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 88, 93 ], [ 88, 94 ], [ 88, 95 ], [ 88, 96 ], [ 12, 97 ], [ 97, 98 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\nclass Main{\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] str = new String[2];\n\t\tstr = in.readLine().split(\" \");\n\t\tint a = Integer.parseInt(str[0]);\n\t\tint b = Integer.parseInt(str[1]);\n\n\t\tif (a < 1 || b < 1 || Math.pow(10, 9) < a || Math.pow(10, 9) < b) {\n\t\t\tthrow new RuntimeException(\"error: Range over\");\n\t\t}\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = a / (double) b;\n\t\tSystem.out.printf(\"%d %d %.5f\", d, r, f);\n\t}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "class Main{\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] str = new String[2];\n\t\tstr = in.readLine().split(\" \");\n\t\tint a = Integer.parseInt(str[0]);\n\t\tint b = Integer.parseInt(str[1]);\n\n\t\tif (a < 1 || b < 1 || Math.pow(10, 9) < a || Math.pow(10, 9) < b) {\n\t\t\tthrow new RuntimeException(\"error: Range over\");\n\t\t}\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = a / (double) b;\n\t\tSystem.out.printf(\"%d %d %.5f\", d, r, f);\n\t}\n}", "Main", "public static void main(String[] args) throws IOException {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] str = new String[2];\n\t\tstr = in.readLine().split(\" \");\n\t\tint a = Integer.parseInt(str[0]);\n\t\tint b = Integer.parseInt(str[1]);\n\n\t\tif (a < 1 || b < 1 || Math.pow(10, 9) < a || Math.pow(10, 9) < b) {\n\t\t\tthrow new RuntimeException(\"error: Range over\");\n\t\t}\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = a / (double) b;\n\t\tSystem.out.printf(\"%d %d %.5f\", d, r, f);\n\t}", "main", "{\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] str = new String[2];\n\t\tstr = in.readLine().split(\" \");\n\t\tint a = Integer.parseInt(str[0]);\n\t\tint b = Integer.parseInt(str[1]);\n\n\t\tif (a < 1 || b < 1 || Math.pow(10, 9) < a || Math.pow(10, 9) < b) {\n\t\t\tthrow new RuntimeException(\"error: Range over\");\n\t\t}\n\t\tint d = a / b;\n\t\tint r = a % b;\n\t\tdouble f = a / (double) b;\n\t\tSystem.out.printf(\"%d %d %.5f\", d, r, f);\n\t}", "BufferedReader in = new BufferedReader(new InputStreamReader(System.in));", "in", "new BufferedReader(new InputStreamReader(System.in))", "String[] str = new String[2];", "str", "new String[2]", "2", "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", "if (a < 1 || b < 1 || Math.pow(10, 9) < a || Math.pow(10, 9) < b) {\n\t\t\tthrow new RuntimeException(\"error: Range over\");\n\t\t}", "a < 1 || b < 1 || Math.pow(10, 9) < a || Math.pow(10, 9) < b", "Math.pow(10, 9) < a", "a < 1 || b < 1 || Math.pow(10, 9) < a || Math.pow(10, 9) < b", "a < 1", "a", "1", "b < 1", "b", "1", "Math.pow(10, 9) < a", "Math.pow(10, 9)", "Math.pow", "Math", "10", "9", "a", "Math.pow(10, 9) < b", "Math.pow(10, 9)", "Math.pow", "Math", "10", "9", "b", "{\n\t\t\tthrow new RuntimeException(\"error: Range over\");\n\t\t}", "throw new RuntimeException(\"error: Range over\");", "new RuntimeException(\"error: Range over\")", "int d = a / b;", "d", "a / b", "a", "b", "int r = a % b;", "r", "a % b", "a", "b", "double f = a / (double) b;", "f", "a / (double) b", "a", "(double) b", "System.out.printf(\"%d %d %.5f\", d, r, f)", "System.out.printf", "System.out", "System", "System.out", "\"%d %d %.5f\"", "d", "r", "f", "String[] args", "args" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; class Main{ public static void main(String[] args) throws IOException { BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); String[] str = new String[2]; str = in.readLine().split(" "); int a = Integer.parseInt(str[0]); int b = Integer.parseInt(str[1]); if (a < 1 || b < 1 || Math.pow(10, 9) < a || Math.pow(10, 9) < b) { throw new RuntimeException("error: Range over"); } int d = a / b; int r = a % b; double f = a / (double) b; System.out.printf("%d %d %.5f", d, r, f); } }