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, 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, 4, 18, 13, 17, 41, 13, 20, 17, 41, 13, 41, 13, 41, 13, 41, 13, 41, 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, 0, 13, 18, 13, 17, 0, 13, 18, 13, 17, 0, 13, 18, 13, 17, 0, 13, 18, 13, 17, 0, 13, 18, 13, 17, 14, 2, 2, 2, 2, 13, 13, 2, 13, 2, 13, 13, 2, 13, 13, 2, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 138, 11 ], [ 138, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 16, 17 ], [ 16, 18 ], [ 18, 19 ], [ 19, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 19, 24 ], [ 15, 25 ], [ 25, 26 ], [ 26, 27 ], [ 26, 28 ], [ 25, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 31, 36 ], [ 25, 37 ], [ 37, 38 ], [ 37, 39 ], [ 25, 41 ], [ 41, 42 ], [ 25, 43 ], [ 43, 44 ], [ 25, 45 ], [ 45, 46 ], [ 25, 47 ], [ 47, 48 ], [ 25, 49 ], [ 49, 50 ], [ 25, 51 ], [ 51, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 51, 56 ], [ 56, 57 ], [ 56, 58 ], [ 58, 59 ], [ 58, 60 ], [ 51, 61 ], [ 61, 62 ], [ 62, 63 ], [ 51, 64 ], [ 65, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 66, 70 ], [ 70, 71 ], [ 71, 72 ], [ 70, 73 ], [ 73, 74 ], [ 73, 75 ], [ 25, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 78, 80 ], [ 25, 81 ], [ 81, 82 ], [ 81, 83 ], [ 83, 84 ], [ 83, 85 ], [ 25, 86 ], [ 86, 87 ], [ 86, 88 ], [ 88, 89 ], [ 88, 90 ], [ 25, 91 ], [ 91, 92 ], [ 91, 93 ], [ 93, 94 ], [ 93, 95 ], [ 25, 96 ], [ 96, 97 ], [ 96, 98 ], [ 98, 99 ], [ 98, 100 ], [ 25, 101 ], [ 101, 102 ], [ 104, 103 ], [ 113, 104 ], [ 104, 105 ], [ 105, 106 ], [ 105, 107 ], [ 104, 108 ], [ 108, 109 ], [ 108, 110 ], [ 110, 111 ], [ 110, 112 ], [ 113, 113 ], [ 113, 114 ], [ 113, 115 ], [ 104, 116 ], [ 116, 117 ], [ 116, 118 ], [ 118, 119 ], [ 118, 120 ], [ 101, 121 ], [ 121, 122 ], [ 122, 123 ], [ 123, 124 ], [ 124, 125 ], [ 124, 126 ], [ 122, 127 ], [ 101, 128 ], [ 128, 129 ], [ 129, 130 ], [ 130, 131 ], [ 131, 132 ], [ 131, 133 ], [ 129, 134 ], [ 12, 135 ], [ 135, 136 ], [ 0, 137 ], [ 137, 138 ], [ 137, 139 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\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[] strArray = br.readLine().split(\"\\\\s\");\n int[] intArray = new int[5];\n int w,h,x,y,r;\n \n for (int i = 0; i < strArray.length; i++) {\n intArray[i] = Integer.valueOf(strArray[i]);\n }\n \n w = intArray[0];\n h = intArray[1];\n x = intArray[2];\n y = intArray[3];\n r = intArray[4];\n \n if(r <= x & x <= h-r & r <= y & y <= h-r){\n System.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\n } catch (IOException e) {\n System.err.println(e);\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) {\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String[] strArray = br.readLine().split(\"\\\\s\");\n int[] intArray = new int[5];\n int w,h,x,y,r;\n \n for (int i = 0; i < strArray.length; i++) {\n intArray[i] = Integer.valueOf(strArray[i]);\n }\n \n w = intArray[0];\n h = intArray[1];\n x = intArray[2];\n y = intArray[3];\n r = intArray[4];\n \n if(r <= x & x <= h-r & r <= y & y <= h-r){\n System.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\n } catch (IOException e) {\n System.err.println(e);\n }\n\n }\n}", "Main", "public static void main(String[] args) {\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String[] strArray = br.readLine().split(\"\\\\s\");\n int[] intArray = new int[5];\n int w,h,x,y,r;\n \n for (int i = 0; i < strArray.length; i++) {\n intArray[i] = Integer.valueOf(strArray[i]);\n }\n \n w = intArray[0];\n h = intArray[1];\n x = intArray[2];\n y = intArray[3];\n r = intArray[4];\n \n if(r <= x & x <= h-r & r <= y & y <= h-r){\n System.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\n } catch (IOException e) {\n System.err.println(e);\n }\n\n }", "main", "{\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String[] strArray = br.readLine().split(\"\\\\s\");\n int[] intArray = new int[5];\n int w,h,x,y,r;\n \n for (int i = 0; i < strArray.length; i++) {\n intArray[i] = Integer.valueOf(strArray[i]);\n }\n \n w = intArray[0];\n h = intArray[1];\n x = intArray[2];\n y = intArray[3];\n r = intArray[4];\n \n if(r <= x & x <= h-r & r <= y & y <= h-r){\n System.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\n } catch (IOException e) {\n System.err.println(e);\n }\n\n }", "try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String[] strArray = br.readLine().split(\"\\\\s\");\n int[] intArray = new int[5];\n int w,h,x,y,r;\n \n for (int i = 0; i < strArray.length; i++) {\n intArray[i] = Integer.valueOf(strArray[i]);\n }\n \n w = intArray[0];\n h = intArray[1];\n x = intArray[2];\n y = intArray[3];\n r = intArray[4];\n \n if(r <= x & x <= h-r & r <= y & y <= h-r){\n System.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\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[] strArray = br.readLine().split(\"\\\\s\");\n int[] intArray = new int[5];\n int w,h,x,y,r;\n \n for (int i = 0; i < strArray.length; i++) {\n intArray[i] = Integer.valueOf(strArray[i]);\n }\n \n w = intArray[0];\n h = intArray[1];\n x = intArray[2];\n y = intArray[3];\n r = intArray[4];\n \n if(r <= x & x <= h-r & r <= y & y <= h-r){\n System.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String[] strArray = br.readLine().split(\"\\\\s\");", "strArray", "br.readLine().split(\"\\\\s\")", "br.readLine().split", "br.readLine()", "br.readLine", "br", "\"\\\\s\"", "int[] intArray = new int[5];", "intArray", "new int[5]", "5", "int w", "w", "h", "h", "x", "x", "y", "y", "r;", "r", "for (int i = 0; i < strArray.length; i++) {\n intArray[i] = Integer.valueOf(strArray[i]);\n }", "int i = 0;", "int i = 0;", "i", "0", "i < strArray.length", "i", "strArray.length", "strArray", "strArray.length", "i++", "i++", "i", "{\n intArray[i] = Integer.valueOf(strArray[i]);\n }", "{\n intArray[i] = Integer.valueOf(strArray[i]);\n }", "intArray[i] = Integer.valueOf(strArray[i])", "intArray[i]", "intArray", "i", "Integer.valueOf(strArray[i])", "Integer.valueOf", "Integer", "strArray[i]", "strArray", "i", "w = intArray[0]", "w", "intArray[0]", "intArray", "0", "h = intArray[1]", "h", "intArray[1]", "intArray", "1", "x = intArray[2]", "x", "intArray[2]", "intArray", "2", "y = intArray[3]", "y", "intArray[3]", "intArray", "3", "r = intArray[4]", "r", "intArray[4]", "intArray", "4", "if(r <= x & x <= h-r & r <= y & y <= h-r){\n System.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }", "r <= x & x <= h-r & r <= y & y <= h-r", "r <= y", "r <= x & x <= h-r & r <= y & y <= h-r", "r <= x", "r", "x", "x <= h-r", "x", "h-r", "h", "r", "r <= y", "r", "y", "y <= h-r", "y", "h-r", "h", "r", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n \tSystem.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\n public static void main(String[] args) {\n try {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String[] strArray = br.readLine().split(\"\\\\s\");\n int[] intArray = new int[5];\n int w,h,x,y,r;\n \n for (int i = 0; i < strArray.length; i++) {\n intArray[i] = Integer.valueOf(strArray[i]);\n }\n \n w = intArray[0];\n h = intArray[1];\n x = intArray[2];\n y = intArray[3];\n r = intArray[4];\n \n if(r <= x & x <= h-r & r <= y & y <= h-r){\n System.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\n } catch (IOException e) {\n System.err.println(e);\n }\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[] strArray = br.readLine().split(\"\\\\s\");\n int[] intArray = new int[5];\n int w,h,x,y,r;\n \n for (int i = 0; i < strArray.length; i++) {\n intArray[i] = Integer.valueOf(strArray[i]);\n }\n \n w = intArray[0];\n h = intArray[1];\n x = intArray[2];\n y = intArray[3];\n r = intArray[4];\n \n if(r <= x & x <= h-r & r <= y & y <= h-r){\n System.out.println(\"Yes\");\n }else{\n \tSystem.out.println(\"No\");\n }\n } catch (IOException e) {\n System.err.println(e);\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) { try { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] strArray = br.readLine().split("\\s"); int[] intArray = new int[5]; int w,h,x,y,r; for (int i = 0; i < strArray.length; i++) { intArray[i] = Integer.valueOf(strArray[i]); } w = intArray[0]; h = intArray[1]; x = intArray[2]; y = intArray[3]; r = intArray[4]; if(r <= x & x <= h-r & r <= y & y <= h-r){ System.out.println("Yes"); }else{ System.out.println("No"); } } catch (IOException e) { System.err.println(e); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 13, 13, 2, 13, 13, 30, 14, 2, 2, 13, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 78, 5 ], [ 78, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 38, 42 ], [ 42, 43 ], [ 42, 44 ], [ 37, 45 ], [ 45, 46 ], [ 46, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 47, 51 ], [ 51, 52 ], [ 51, 53 ], [ 46, 54 ], [ 54, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 55, 60 ], [ 46, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 62, 67 ], [ 37, 68 ], [ 68, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 71, 73 ], [ 69, 74 ], [ 6, 75 ], [ 75, 76 ], [ 0, 77 ], [ 77, 78 ], [ 77, 79 ] ]
[ "import java.util.*;\n\npublic class Main{\n public static void main(String[] args){\n\tScanner sc = new Scanner(System.in);\n\n\tint W = sc.nextInt();\n\tint H = sc.nextInt();\n\tint x = sc.nextInt();\n\tint y = sc.nextInt();\n\tint r = sc.nextInt();\n\t\n\n\tif(x<W && y<H){\n\t if(r<=x && r<=y){\n\t System.out.println(\"Yes\");\n\t }else{\n\t System.out.println(\"No\");\n\t }\n\t}else{\n\t System.out.println(\"No\");\n\t}\n\n }\n}", "import java.util.*;", "util.*", "java", "public class Main{\n public static void main(String[] args){\n\tScanner sc = new Scanner(System.in);\n\n\tint W = sc.nextInt();\n\tint H = sc.nextInt();\n\tint x = sc.nextInt();\n\tint y = sc.nextInt();\n\tint r = sc.nextInt();\n\t\n\n\tif(x<W && y<H){\n\t if(r<=x && r<=y){\n\t System.out.println(\"Yes\");\n\t }else{\n\t System.out.println(\"No\");\n\t }\n\t}else{\n\t System.out.println(\"No\");\n\t}\n\n }\n}", "Main", "public static void main(String[] args){\n\tScanner sc = new Scanner(System.in);\n\n\tint W = sc.nextInt();\n\tint H = sc.nextInt();\n\tint x = sc.nextInt();\n\tint y = sc.nextInt();\n\tint r = sc.nextInt();\n\t\n\n\tif(x<W && y<H){\n\t if(r<=x && r<=y){\n\t System.out.println(\"Yes\");\n\t }else{\n\t System.out.println(\"No\");\n\t }\n\t}else{\n\t System.out.println(\"No\");\n\t}\n\n }", "main", "{\n\tScanner sc = new Scanner(System.in);\n\n\tint W = sc.nextInt();\n\tint H = sc.nextInt();\n\tint x = sc.nextInt();\n\tint y = sc.nextInt();\n\tint r = sc.nextInt();\n\t\n\n\tif(x<W && y<H){\n\t if(r<=x && r<=y){\n\t System.out.println(\"Yes\");\n\t }else{\n\t System.out.println(\"No\");\n\t }\n\t}else{\n\t System.out.println(\"No\");\n\t}\n\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int W = sc.nextInt();", "W", "sc.nextInt()", "sc.nextInt", "sc", "int H = sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "if(x<W && y<H){\n\t if(r<=x && r<=y){\n\t System.out.println(\"Yes\");\n\t }else{\n\t System.out.println(\"No\");\n\t }\n\t}else{\n\t System.out.println(\"No\");\n\t}", "x<W && y<H", "x<W", "x", "W", "y<H", "y", "H", "{\n\t if(r<=x && r<=y){\n\t System.out.println(\"Yes\");\n\t }else{\n\t System.out.println(\"No\");\n\t }\n\t}", "if(r<=x && r<=y){\n\t System.out.println(\"Yes\");\n\t }else{\n\t System.out.println(\"No\");\n\t }", "r<=x && r<=y", "r<=x", "r", "x", "r<=y", "r", "y", "{\n\t System.out.println(\"Yes\");\n\t }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t System.out.println(\"No\");\n\t }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n\t System.out.println(\"No\");\n\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main{\n public static void main(String[] args){\n\tScanner sc = new Scanner(System.in);\n\n\tint W = sc.nextInt();\n\tint H = sc.nextInt();\n\tint x = sc.nextInt();\n\tint y = sc.nextInt();\n\tint r = sc.nextInt();\n\t\n\n\tif(x<W && y<H){\n\t if(r<=x && r<=y){\n\t System.out.println(\"Yes\");\n\t }else{\n\t System.out.println(\"No\");\n\t }\n\t}else{\n\t System.out.println(\"No\");\n\t}\n\n }\n}", "public class Main{\n public static void main(String[] args){\n\tScanner sc = new Scanner(System.in);\n\n\tint W = sc.nextInt();\n\tint H = sc.nextInt();\n\tint x = sc.nextInt();\n\tint y = sc.nextInt();\n\tint r = sc.nextInt();\n\t\n\n\tif(x<W && y<H){\n\t if(r<=x && r<=y){\n\t System.out.println(\"Yes\");\n\t }else{\n\t System.out.println(\"No\");\n\t }\n\t}else{\n\t System.out.println(\"No\");\n\t}\n\n }\n}", "Main" ]
import java.util.*; public class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int W = sc.nextInt(); int H = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int r = sc.nextInt(); if(x<W && y<H){ if(r<=x && r<=y){ System.out.println("Yes"); }else{ System.out.println("No"); } }else{ System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 14, 2, 2, 2, 2, 2, 13, 13, 2, 13, 13, 2, 13, 17, 2, 13, 17, 40, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 30, 0, 13, 17, 30, 0, 13, 17, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 85, 5 ], [ 85, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 8, 39 ], [ 39, 40 ], [ 40, 41 ], [ 41, 42 ], [ 50, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 43, 47 ], [ 47, 48 ], [ 47, 49 ], [ 50, 50 ], [ 50, 51 ], [ 50, 52 ], [ 41, 53 ], [ 53, 54 ], [ 53, 55 ], [ 40, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 58, 62 ], [ 57, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 39, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 39, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 8, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 76, 81 ], [ 6, 82 ], [ 82, 83 ], [ 0, 84 ], [ 84, 85 ], [ 84, 86 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n public static void main(String[] args) {\n Scanner s = new Scanner(System.in);\n\n int w = s.nextInt();\n int h = s.nextInt();\n int x = s.nextInt();\n int y = s.nextInt();\n int r = s.nextInt();\n\n String result;\n if((x >= w || y >= h || x <= 0 || y <= 0) || !(w - x >= r && h - y >=r)){\n result = \"No\";\n } else {\n result = \"Yes\";\n }\n\n System.out.println(result);\n }\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n public static void main(String[] args) {\n Scanner s = new Scanner(System.in);\n\n int w = s.nextInt();\n int h = s.nextInt();\n int x = s.nextInt();\n int y = s.nextInt();\n int r = s.nextInt();\n\n String result;\n if((x >= w || y >= h || x <= 0 || y <= 0) || !(w - x >= r && h - y >=r)){\n result = \"No\";\n } else {\n result = \"Yes\";\n }\n\n System.out.println(result);\n }\n\n}", "Main", "public static void main(String[] args) {\n Scanner s = new Scanner(System.in);\n\n int w = s.nextInt();\n int h = s.nextInt();\n int x = s.nextInt();\n int y = s.nextInt();\n int r = s.nextInt();\n\n String result;\n if((x >= w || y >= h || x <= 0 || y <= 0) || !(w - x >= r && h - y >=r)){\n result = \"No\";\n } else {\n result = \"Yes\";\n }\n\n System.out.println(result);\n }", "main", "{\n Scanner s = new Scanner(System.in);\n\n int w = s.nextInt();\n int h = s.nextInt();\n int x = s.nextInt();\n int y = s.nextInt();\n int r = s.nextInt();\n\n String result;\n if((x >= w || y >= h || x <= 0 || y <= 0) || !(w - x >= r && h - y >=r)){\n result = \"No\";\n } else {\n result = \"Yes\";\n }\n\n System.out.println(result);\n }", "Scanner s = new Scanner(System.in);", "s", "new Scanner(System.in)", "int w = s.nextInt();", "w", "s.nextInt()", "s.nextInt", "s", "int h = s.nextInt();", "h", "s.nextInt()", "s.nextInt", "s", "int x = s.nextInt();", "x", "s.nextInt()", "s.nextInt", "s", "int y = s.nextInt();", "y", "s.nextInt()", "s.nextInt", "s", "int r = s.nextInt();", "r", "s.nextInt()", "s.nextInt", "s", "String result;", "result", "if((x >= w || y >= h || x <= 0 || y <= 0) || !(w - x >= r && h - y >=r)){\n result = \"No\";\n } else {\n result = \"Yes\";\n }", "(x >= w || y >= h || x <= 0 || y <= 0) || !(w - x >= r && h - y >=r)", "(x >= w || y >= h || x <= 0 || y <= 0)", "x <= 0", "x >= w || y >= h || x <= 0 || y <= 0", "x >= w", "x", "w", "y >= h", "y", "h", "x <= 0", "x", "0", "y <= 0", "y", "0", "!(w - x >= r && h - y >=r)", "(w - x >= r && h - y >=r)", "w - x >= r", "w - x", "w", "x", "r", "h - y >=r", "h - y", "h", "y", "r", "{\n result = \"No\";\n }", "result = \"No\"", "result", "\"No\"", "{\n result = \"Yes\";\n }", "result = \"Yes\"", "result", "\"Yes\"", "System.out.println(result)", "System.out.println", "System.out", "System", "System.out", "result", "String[] args", "args", "public class Main {\n\n public static void main(String[] args) {\n Scanner s = new Scanner(System.in);\n\n int w = s.nextInt();\n int h = s.nextInt();\n int x = s.nextInt();\n int y = s.nextInt();\n int r = s.nextInt();\n\n String result;\n if((x >= w || y >= h || x <= 0 || y <= 0) || !(w - x >= r && h - y >=r)){\n result = \"No\";\n } else {\n result = \"Yes\";\n }\n\n System.out.println(result);\n }\n\n}", "public class Main {\n\n public static void main(String[] args) {\n Scanner s = new Scanner(System.in);\n\n int w = s.nextInt();\n int h = s.nextInt();\n int x = s.nextInt();\n int y = s.nextInt();\n int r = s.nextInt();\n\n String result;\n if((x >= w || y >= h || x <= 0 || y <= 0) || !(w - x >= r && h - y >=r)){\n result = \"No\";\n } else {\n result = \"Yes\";\n }\n\n System.out.println(result);\n }\n\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner s = new Scanner(System.in); int w = s.nextInt(); int h = s.nextInt(); int x = s.nextInt(); int y = s.nextInt(); int r = s.nextInt(); String result; if((x >= w || y >= h || x <= 0 || y <= 0) || !(w - x >= r && h - y >=r)){ result = "No"; } else { result = "Yes"; } System.out.println(result); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 17, 13, 2, 17, 13, 2, 17, 13, 2, 17, 13, 2, 17, 13, 2, 17, 13, 2, 13, 17, 2, 13, 17, 2, 13, 40, 17, 2, 17, 13, 2, 13, 40, 17, 2, 17, 13, 2, 2, 2, 13, 13, 13, 17, 2, 13, 2, 13, 13, 2, 2, 2, 13, 13, 13, 17, 2, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 132, 5 ], [ 132, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 52, 39 ], [ 103, 40 ], [ 98, 41 ], [ 91, 42 ], [ 88, 43 ], [ 84, 44 ], [ 81, 45 ], [ 77, 46 ], [ 74, 47 ], [ 71, 48 ], [ 68, 49 ], [ 65, 50 ], [ 62, 51 ], [ 59, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 52, 56 ], [ 56, 57 ], [ 56, 58 ], [ 59, 59 ], [ 59, 60 ], [ 59, 61 ], [ 62, 62 ], [ 62, 63 ], [ 62, 64 ], [ 65, 65 ], [ 65, 66 ], [ 65, 67 ], [ 68, 68 ], [ 68, 69 ], [ 68, 70 ], [ 71, 71 ], [ 71, 72 ], [ 71, 73 ], [ 74, 74 ], [ 74, 75 ], [ 74, 76 ], [ 77, 77 ], [ 77, 78 ], [ 77, 79 ], [ 79, 80 ], [ 81, 81 ], [ 81, 82 ], [ 81, 83 ], [ 84, 84 ], [ 84, 85 ], [ 84, 86 ], [ 86, 87 ], [ 88, 88 ], [ 88, 89 ], [ 88, 90 ], [ 91, 91 ], [ 91, 92 ], [ 93, 93 ], [ 93, 94 ], [ 93, 95 ], [ 93, 96 ], [ 91, 97 ], [ 98, 98 ], [ 98, 99 ], [ 98, 100 ], [ 100, 101 ], [ 100, 102 ], [ 103, 103 ], [ 103, 104 ], [ 105, 105 ], [ 105, 106 ], [ 105, 107 ], [ 105, 108 ], [ 103, 109 ], [ 52, 110 ], [ 110, 111 ], [ 110, 112 ], [ 112, 113 ], [ 112, 114 ], [ 37, 115 ], [ 115, 116 ], [ 116, 117 ], [ 117, 118 ], [ 118, 119 ], [ 118, 120 ], [ 116, 121 ], [ 37, 122 ], [ 122, 123 ], [ 123, 124 ], [ 124, 125 ], [ 125, 126 ], [ 125, 127 ], [ 123, 128 ], [ 6, 129 ], [ 129, 130 ], [ 0, 131 ], [ 131, 132 ], [ 131, 133 ] ]
[ "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 W = scanner.nextInt();\n int H = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n\n if (0 < W && 0 < H && 0 < r && 100 >= W && 100 >= H && 100 >= r && x >= 0 && y >= 0 && x >= -100 && 100 >= x && y >= -100 && 100 >= y && W - x - r >= 0 && W >= r + x && H - y - r >= 0 && H >= y + r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\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 W = scanner.nextInt();\n int H = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n\n if (0 < W && 0 < H && 0 < r && 100 >= W && 100 >= H && 100 >= r && x >= 0 && y >= 0 && x >= -100 && 100 >= x && y >= -100 && 100 >= y && W - x - r >= 0 && W >= r + x && H - y - r >= 0 && H >= y + r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }\n}", "Main", "public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int W = scanner.nextInt();\n int H = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n\n if (0 < W && 0 < H && 0 < r && 100 >= W && 100 >= H && 100 >= r && x >= 0 && y >= 0 && x >= -100 && 100 >= x && y >= -100 && 100 >= y && W - x - r >= 0 && W >= r + x && H - y - r >= 0 && H >= y + r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }", "main", "{\n Scanner scanner = new Scanner(System.in);\n int W = scanner.nextInt();\n int H = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n\n if (0 < W && 0 < H && 0 < r && 100 >= W && 100 >= H && 100 >= r && x >= 0 && y >= 0 && x >= -100 && 100 >= x && y >= -100 && 100 >= y && W - x - r >= 0 && W >= r + x && H - y - r >= 0 && H >= y + r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "int W = scanner.nextInt();", "W", "scanner.nextInt()", "scanner.nextInt", "scanner", "int H = scanner.nextInt();", "H", "scanner.nextInt()", "scanner.nextInt", "scanner", "int x = scanner.nextInt();", "x", "scanner.nextInt()", "scanner.nextInt", "scanner", "int y = scanner.nextInt();", "y", "scanner.nextInt()", "scanner.nextInt", "scanner", "int r = scanner.nextInt();", "r", "scanner.nextInt()", "scanner.nextInt", "scanner", "if (0 < W && 0 < H && 0 < r && 100 >= W && 100 >= H && 100 >= r && x >= 0 && y >= 0 && x >= -100 && 100 >= x && y >= -100 && 100 >= y && W - x - r >= 0 && W >= r + x && H - y - r >= 0 && H >= y + r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }", "0 < W && 0 < H && 0 < r && 100 >= W && 100 >= H && 100 >= r && x >= 0 && y >= 0 && x >= -100 && 100 >= x && y >= -100 && 100 >= y && W - x - r >= 0 && W >= r + x && H - y - r >= 0 && H >= y + r", "H - y - r >= 0", "W >= r + x", "W - x - r >= 0", "100 >= y", "y >= -100", "100 >= x", "x >= -100", "y >= 0", "x >= 0", "100 >= r", "100 >= H", "100 >= W", "0 < r", "0 < W && 0 < H && 0 < r && 100 >= W && 100 >= H && 100 >= r && x >= 0 && y >= 0 && x >= -100 && 100 >= x && y >= -100 && 100 >= y && W - x - r >= 0 && W >= r + x && H - y - r >= 0 && H >= y + r", "0 < W", "0", "W", "0 < H", "0", "H", "0 < r", "0", "r", "100 >= W", "100", "W", "100 >= H", "100", "H", "100 >= r", "100", "r", "x >= 0", "x", "0", "y >= 0", "y", "0", "x >= -100", "x", "-100", "100", "100 >= x", "100", "x", "y >= -100", "y", "-100", "100", "100 >= y", "100", "y", "W - x - r >= 0", "W - x - r", "W - x - r", "W", "x", "r", "0", "W >= r + x", "W", "r + x", "r", "x", "H - y - r >= 0", "H - y - r", "H - y - r", "H", "y", "r", "0", "H >= y + r", "H", "y + r", "y", "r", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int W = scanner.nextInt();\n int H = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n\n if (0 < W && 0 < H && 0 < r && 100 >= W && 100 >= H && 100 >= r && x >= 0 && y >= 0 && x >= -100 && 100 >= x && y >= -100 && 100 >= y && W - x - r >= 0 && W >= r + x && H - y - r >= 0 && H >= y + r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }\n}", "public class Main {\n\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int W = scanner.nextInt();\n int H = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n\n if (0 < W && 0 < H && 0 < r && 100 >= W && 100 >= H && 100 >= r && x >= 0 && y >= 0 && x >= -100 && 100 >= x && y >= -100 && 100 >= y && W - x - r >= 0 && W >= r + x && H - y - r >= 0 && H >= y + r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int W = scanner.nextInt(); int H = scanner.nextInt(); int x = scanner.nextInt(); int y = scanner.nextInt(); int r = scanner.nextInt(); if (0 < W && 0 < H && 0 < r && 100 >= W && 100 >= H && 100 >= r && x >= 0 && y >= 0 && x >= -100 && 100 >= x && y >= -100 && 100 >= y && W - x - r >= 0 && W >= r + x && H - y - r >= 0 && H >= y + r) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 41, 13, 38, 5, 13, 30, 29, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 0, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 0, 13, 20, 14, 4, 18, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 6, 13, 12, 13, 23, 13, 6, 13, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 0, 18, 36, 13, 13, 23, 13, 23, 13, 12, 13, 30, 14, 2, 2, 4, 18, 13, 4, 18, 13, 17, 30, 29, 17, 14, 2, 2, 4, 18, 13, 4, 18, 13, 13, 30, 29, 17, 14, 2, 2, 4, 18, 13, 4, 18, 13, 17, 30, 29, 17, 14, 2, 2, 4, 18, 13, 4, 18, 13, 13, 30, 29, 17, 29, 17, 23, 13, 13, 6, 13, 12, 13, 12, 13, 12, 13, 6, 13, 41, 13, 41, 13, 41, 13, 12, 13, 30, 0, 18, 36, 13, 13, 0, 18, 36, 13, 13, 0, 18, 36, 13, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 29, 13, 12, 13, 30, 29, 13, 12, 13, 30, 29, 13, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 220, 5 ], [ 220, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 8, 11 ], [ 11, 12 ], [ 8, 13 ], [ 13, 14 ], [ 14, 15 ], [ 14, 16 ], [ 16, 17 ], [ 13, 18 ], [ 18, 19 ], [ 19, 20 ], [ 19, 21 ], [ 18, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 18, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 18, 32 ], [ 32, 33 ], [ 32, 34 ], [ 18, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 38, 39 ], [ 18, 40 ], [ 40, 41 ], [ 40, 42 ], [ 42, 43 ], [ 43, 44 ], [ 18, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 48, 49 ], [ 18, 50 ], [ 50, 51 ], [ 50, 52 ], [ 8, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 54, 57 ], [ 53, 58 ], [ 58, 59 ], [ 59, 60 ], [ 60, 61 ], [ 61, 62 ], [ 61, 63 ], [ 59, 64 ], [ 53, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 66, 71 ], [ 6, 72 ], [ 72, 73 ], [ 0, 74 ], [ 74, 75 ], [ 74, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 0, 80 ], [ 80, 81 ], [ 80, 82 ], [ 82, 83 ], [ 80, 84 ], [ 84, 85 ], [ 80, 86 ], [ 86, 87 ], [ 86, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 89, 93 ], [ 88, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 94, 98 ], [ 86, 99 ], [ 99, 100 ], [ 86, 101 ], [ 101, 102 ], [ 80, 103 ], [ 103, 104 ], [ 103, 105 ], [ 105, 106 ], [ 106, 107 ], [ 107, 108 ], [ 108, 109 ], [ 109, 110 ], [ 110, 111 ], [ 108, 112 ], [ 112, 113 ], [ 113, 114 ], [ 107, 115 ], [ 106, 116 ], [ 116, 117 ], [ 117, 118 ], [ 105, 119 ], [ 119, 120 ], [ 120, 121 ], [ 121, 122 ], [ 122, 123 ], [ 123, 124 ], [ 121, 125 ], [ 125, 126 ], [ 126, 127 ], [ 120, 128 ], [ 119, 129 ], [ 129, 130 ], [ 130, 131 ], [ 105, 132 ], [ 132, 133 ], [ 133, 134 ], [ 134, 135 ], [ 135, 136 ], [ 136, 137 ], [ 134, 138 ], [ 138, 139 ], [ 139, 140 ], [ 133, 141 ], [ 132, 142 ], [ 142, 143 ], [ 143, 144 ], [ 105, 145 ], [ 145, 146 ], [ 146, 147 ], [ 147, 148 ], [ 148, 149 ], [ 149, 150 ], [ 147, 151 ], [ 151, 152 ], [ 152, 153 ], [ 146, 154 ], [ 145, 155 ], [ 155, 156 ], [ 156, 157 ], [ 105, 158 ], [ 158, 159 ], [ 103, 160 ], [ 160, 161 ], [ 80, 162 ], [ 0, 163 ], [ 163, 164 ], [ 163, 165 ], [ 165, 166 ], [ 163, 167 ], [ 167, 168 ], [ 163, 169 ], [ 169, 170 ], [ 0, 171 ], [ 171, 172 ], [ 171, 173 ], [ 173, 174 ], [ 171, 175 ], [ 175, 176 ], [ 171, 177 ], [ 177, 178 ], [ 171, 179 ], [ 179, 180 ], [ 179, 181 ], [ 181, 182 ], [ 182, 183 ], [ 183, 184 ], [ 183, 185 ], [ 182, 186 ], [ 181, 187 ], [ 187, 188 ], [ 188, 189 ], [ 188, 190 ], [ 187, 191 ], [ 181, 192 ], [ 192, 193 ], [ 193, 194 ], [ 193, 195 ], [ 192, 196 ], [ 179, 197 ], [ 197, 198 ], [ 179, 199 ], [ 199, 200 ], [ 179, 201 ], [ 201, 202 ], [ 171, 203 ], [ 203, 204 ], [ 203, 205 ], [ 205, 206 ], [ 206, 207 ], [ 171, 208 ], [ 208, 209 ], [ 208, 210 ], [ 210, 211 ], [ 211, 212 ], [ 171, 213 ], [ 213, 214 ], [ 213, 215 ], [ 215, 216 ], [ 216, 217 ], [ 171, 218 ], [ 0, 219 ], [ 219, 220 ], [ 219, 221 ] ]
[ "\nimport java.util.Scanner;\n\npublic class Main {\n public static final void main(String[] args) {\n Rectangle rectangle;\n Circle circle;\n\n try (Scanner scanner = new Scanner(System.in)) {\n int width = scanner.nextInt();\n int height = scanner.nextInt();\n rectangle = new RectangleImpl(width, height);\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int center = scanner.nextInt();\n circle = new CircleImpl(x, y, center);\n } catch (Exception e) {\n return;\n }\n if (rectangle.isInCircle(circle)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}\n\ninterface Rectangle {\n boolean isInCircle(Circle circle);\n}\n\nfinal class RectangleImpl implements Rectangle {\n\n private final int width;\n private final int height;\n\n RectangleImpl(int width, int height) {\n this.width = width;\n this.height = height;\n }\n\n @Override\n public boolean isInCircle(Circle circle) {\n if (circle.getX() - circle.getCenter() < 0) {\n return false;\n }\n\n if (circle.getX() + circle.getCenter() > width) {\n return false;\n }\n\n if (circle.getY() - circle.getCenter() < 0) {\n return false;\n }\n\n if (circle.getY() + circle.getCenter() > height) {\n return false;\n }\n return true;\n }\n}\n\ninterface Circle {\n int getX();\n\n int getY();\n\n int getCenter();\n}\n\nfinal class CircleImpl implements Circle {\n private final int x;\n private final int y;\n private final int center;\n\n\n CircleImpl(int x, int y, int center) {\n this.x = x;\n this.y = y;\n this.center = center;\n }\n\n @Override\n public int getX() {\n return x;\n }\n\n @Override\n public int getY() {\n return y;\n }\n\n @Override\n public int getCenter() {\n return center;\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static final void main(String[] args) {\n Rectangle rectangle;\n Circle circle;\n\n try (Scanner scanner = new Scanner(System.in)) {\n int width = scanner.nextInt();\n int height = scanner.nextInt();\n rectangle = new RectangleImpl(width, height);\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int center = scanner.nextInt();\n circle = new CircleImpl(x, y, center);\n } catch (Exception e) {\n return;\n }\n if (rectangle.isInCircle(circle)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "Main", "public static final void main(String[] args) {\n Rectangle rectangle;\n Circle circle;\n\n try (Scanner scanner = new Scanner(System.in)) {\n int width = scanner.nextInt();\n int height = scanner.nextInt();\n rectangle = new RectangleImpl(width, height);\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int center = scanner.nextInt();\n circle = new CircleImpl(x, y, center);\n } catch (Exception e) {\n return;\n }\n if (rectangle.isInCircle(circle)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }", "main", "{\n Rectangle rectangle;\n Circle circle;\n\n try (Scanner scanner = new Scanner(System.in)) {\n int width = scanner.nextInt();\n int height = scanner.nextInt();\n rectangle = new RectangleImpl(width, height);\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int center = scanner.nextInt();\n circle = new CircleImpl(x, y, center);\n } catch (Exception e) {\n return;\n }\n if (rectangle.isInCircle(circle)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }", "Rectangle rectangle;", "rectangle", "Circle circle;", "circle", "try (Scanner scanner = new Scanner(System.in)) {\n int width = scanner.nextInt();\n int height = scanner.nextInt();\n rectangle = new RectangleImpl(width, height);\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int center = scanner.nextInt();\n circle = new CircleImpl(x, y, center);\n } catch (Exception e) {\n return;\n }", "catch (Exception e) {\n return;\n }", "Exception e", "{\n return;\n }", "return;", "{\n int width = scanner.nextInt();\n int height = scanner.nextInt();\n rectangle = new RectangleImpl(width, height);\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int center = scanner.nextInt();\n circle = new CircleImpl(x, y, center);\n }", "Scanner scanner = new Scanner(System.in)", "Scanner scanner = new Scanner(System.in)", "new Scanner(System.in)", "int width = scanner.nextInt();", "width", "scanner.nextInt()", "scanner.nextInt", "scanner", "int height = scanner.nextInt();", "height", "scanner.nextInt()", "scanner.nextInt", "scanner", "rectangle = new RectangleImpl(width, height)", "rectangle", "new RectangleImpl(width, height)", "int x = scanner.nextInt();", "x", "scanner.nextInt()", "scanner.nextInt", "scanner", "int y = scanner.nextInt();", "y", "scanner.nextInt()", "scanner.nextInt", "scanner", "int center = scanner.nextInt();", "center", "scanner.nextInt()", "scanner.nextInt", "scanner", "circle = new CircleImpl(x, y, center)", "circle", "new CircleImpl(x, y, center)", "if (rectangle.isInCircle(circle)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }", "rectangle.isInCircle(circle)", "rectangle.isInCircle", "rectangle", "circle", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "interface Rectangle {\n boolean isInCircle(Circle circle);\n}", "Rectangle", "boolean isInCircle(Circle circle);", "isInCircle", "Circle circle", "circle", "final class RectangleImpl implements Rectangle {\n\n private final int width;\n private final int height;\n\n RectangleImpl(int width, int height) {\n this.width = width;\n this.height = height;\n }\n\n @Override\n public boolean isInCircle(Circle circle) {\n if (circle.getX() - circle.getCenter() < 0) {\n return false;\n }\n\n if (circle.getX() + circle.getCenter() > width) {\n return false;\n }\n\n if (circle.getY() - circle.getCenter() < 0) {\n return false;\n }\n\n if (circle.getY() + circle.getCenter() > height) {\n return false;\n }\n return true;\n }\n}", "RectangleImpl", "private final int width;", "width", "private final int height;", "height", "RectangleImpl(int width, int height) {\n this.width = width;\n this.height = height;\n }", "RectangleImpl", "{\n this.width = width;\n this.height = height;\n }", "this.width = width", "this.width", "this", "this.width", "width", "this.height = height", "this.height", "this", "this.height", "height", "int width", "width", "int height", "height", "@Override\n public boolean isInCircle(Circle circle) {\n if (circle.getX() - circle.getCenter() < 0) {\n return false;\n }\n\n if (circle.getX() + circle.getCenter() > width) {\n return false;\n }\n\n if (circle.getY() - circle.getCenter() < 0) {\n return false;\n }\n\n if (circle.getY() + circle.getCenter() > height) {\n return false;\n }\n return true;\n }", "isInCircle", "{\n if (circle.getX() - circle.getCenter() < 0) {\n return false;\n }\n\n if (circle.getX() + circle.getCenter() > width) {\n return false;\n }\n\n if (circle.getY() - circle.getCenter() < 0) {\n return false;\n }\n\n if (circle.getY() + circle.getCenter() > height) {\n return false;\n }\n return true;\n }", "if (circle.getX() - circle.getCenter() < 0) {\n return false;\n }", "circle.getX() - circle.getCenter() < 0", "circle.getX() - circle.getCenter()", "circle.getX()", "circle.getX", "circle", "circle.getCenter()", "circle.getCenter", "circle", "0", "{\n return false;\n }", "return false;", "false", "if (circle.getX() + circle.getCenter() > width) {\n return false;\n }", "circle.getX() + circle.getCenter() > width", "circle.getX() + circle.getCenter()", "circle.getX()", "circle.getX", "circle", "circle.getCenter()", "circle.getCenter", "circle", "width", "{\n return false;\n }", "return false;", "false", "if (circle.getY() - circle.getCenter() < 0) {\n return false;\n }", "circle.getY() - circle.getCenter() < 0", "circle.getY() - circle.getCenter()", "circle.getY()", "circle.getY", "circle", "circle.getCenter()", "circle.getCenter", "circle", "0", "{\n return false;\n }", "return false;", "false", "if (circle.getY() + circle.getCenter() > height) {\n return false;\n }", "circle.getY() + circle.getCenter() > height", "circle.getY() + circle.getCenter()", "circle.getY()", "circle.getY", "circle", "circle.getCenter()", "circle.getCenter", "circle", "height", "{\n return false;\n }", "return false;", "false", "return true;", "true", "Circle circle", "circle", "Rectangle", "interface Circle {\n int getX();\n\n int getY();\n\n int getCenter();\n}", "Circle", "int getX();", "getX", "int getY();", "getY", "int getCenter();", "getCenter", "final class CircleImpl implements Circle {\n private final int x;\n private final int y;\n private final int center;\n\n\n CircleImpl(int x, int y, int center) {\n this.x = x;\n this.y = y;\n this.center = center;\n }\n\n @Override\n public int getX() {\n return x;\n }\n\n @Override\n public int getY() {\n return y;\n }\n\n @Override\n public int getCenter() {\n return center;\n }\n}", "CircleImpl", "private final int x;", "x", "private final int y;", "y", "private final int center;", "center", "CircleImpl(int x, int y, int center) {\n this.x = x;\n this.y = y;\n this.center = center;\n }", "CircleImpl", "{\n this.x = x;\n this.y = y;\n this.center = center;\n }", "this.x = x", "this.x", "this", "this.x", "x", "this.y = y", "this.y", "this", "this.y", "y", "this.center = center", "this.center", "this", "this.center", "center", "int x", "x", "int y", "y", "int center", "center", "@Override\n public int getX() {\n return x;\n }", "getX", "{\n return x;\n }", "return x;", "x", "@Override\n public int getY() {\n return y;\n }", "getY", "{\n return y;\n }", "return y;", "y", "@Override\n public int getCenter() {\n return center;\n }", "getCenter", "{\n return center;\n }", "return center;", "center", "Circle", "public class Main {\n public static final void main(String[] args) {\n Rectangle rectangle;\n Circle circle;\n\n try (Scanner scanner = new Scanner(System.in)) {\n int width = scanner.nextInt();\n int height = scanner.nextInt();\n rectangle = new RectangleImpl(width, height);\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int center = scanner.nextInt();\n circle = new CircleImpl(x, y, center);\n } catch (Exception e) {\n return;\n }\n if (rectangle.isInCircle(circle)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "public class Main {\n public static final void main(String[] args) {\n Rectangle rectangle;\n Circle circle;\n\n try (Scanner scanner = new Scanner(System.in)) {\n int width = scanner.nextInt();\n int height = scanner.nextInt();\n rectangle = new RectangleImpl(width, height);\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int center = scanner.nextInt();\n circle = new CircleImpl(x, y, center);\n } catch (Exception e) {\n return;\n }\n if (rectangle.isInCircle(circle)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static final void main(String[] args) { Rectangle rectangle; Circle circle; try (Scanner scanner = new Scanner(System.in)) { int width = scanner.nextInt(); int height = scanner.nextInt(); rectangle = new RectangleImpl(width, height); int x = scanner.nextInt(); int y = scanner.nextInt(); int center = scanner.nextInt(); circle = new CircleImpl(x, y, center); } catch (Exception e) { return; } if (rectangle.isInCircle(circle)) { System.out.println("Yes"); } else { System.out.println("No"); } } } interface Rectangle { boolean isInCircle(Circle circle); } final class RectangleImpl implements Rectangle { private final int width; private final int height; RectangleImpl(int width, int height) { this.width = width; this.height = height; } @Override public boolean isInCircle(Circle circle) { if (circle.getX() - circle.getCenter() < 0) { return false; } if (circle.getX() + circle.getCenter() > width) { return false; } if (circle.getY() - circle.getCenter() < 0) { return false; } if (circle.getY() + circle.getCenter() > height) { return false; } return true; } } interface Circle { int getX(); int getY(); int getCenter(); } final class CircleImpl implements Circle { private final int x; private final int y; private final int center; CircleImpl(int x, int y, int center) { this.x = x; this.y = y; this.center = center; } @Override public int getX() { return x; } @Override public int getY() { return y; } @Override public int getCenter() { return center; } }
[ 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, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 13, 14, 2, 2, 13, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 13, 2, 13, 13, 2, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 106, 5 ], [ 106, 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 ], [ 24, 27 ], [ 27, 28 ], [ 28, 29 ], [ 8, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 32, 35 ], [ 35, 36 ], [ 36, 37 ], [ 8, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 43, 44 ], [ 44, 45 ], [ 8, 46 ], [ 46, 47 ], [ 46, 48 ], [ 48, 49 ], [ 49, 50 ], [ 48, 51 ], [ 51, 52 ], [ 52, 53 ], [ 8, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 59, 60 ], [ 60, 61 ], [ 8, 62 ], [ 62, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 67, 68 ], [ 67, 69 ], [ 62, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 71, 76 ], [ 62, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 79, 81 ], [ 81, 82 ], [ 81, 83 ], [ 78, 84 ], [ 84, 85 ], [ 84, 86 ], [ 86, 87 ], [ 86, 88 ], [ 77, 89 ], [ 89, 90 ], [ 90, 91 ], [ 91, 92 ], [ 92, 93 ], [ 92, 94 ], [ 90, 95 ], [ 77, 96 ], [ 96, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 99, 101 ], [ 97, 102 ], [ 6, 103 ], [ 103, 104 ], [ 0, 105 ], [ 105, 106 ], [ 105, 107 ] ]
[ "import java.util.Scanner;\npublic class Main{\n\tpublic static void main (String[] args){\n\t\tint W,H,x,y,r;\n\t\tScanner scan = new Scanner(System.in);\n\t\tW = Integer.parseInt(scan.next());\n\t\tH = Integer.parseInt(scan.next());\n\t\tx = Integer.parseInt(scan.next());\n\t\ty = Integer.parseInt(scan.next());\n\t\tr = Integer.parseInt(scan.next());\n\t\t\n\t\tif((x<r)||(y<r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((W>=x+r)&&(H>=y+r)){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main{\n\tpublic static void main (String[] args){\n\t\tint W,H,x,y,r;\n\t\tScanner scan = new Scanner(System.in);\n\t\tW = Integer.parseInt(scan.next());\n\t\tH = Integer.parseInt(scan.next());\n\t\tx = Integer.parseInt(scan.next());\n\t\ty = Integer.parseInt(scan.next());\n\t\tr = Integer.parseInt(scan.next());\n\t\t\n\t\tif((x<r)||(y<r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((W>=x+r)&&(H>=y+r)){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "Main", "public static void main (String[] args){\n\t\tint W,H,x,y,r;\n\t\tScanner scan = new Scanner(System.in);\n\t\tW = Integer.parseInt(scan.next());\n\t\tH = Integer.parseInt(scan.next());\n\t\tx = Integer.parseInt(scan.next());\n\t\ty = Integer.parseInt(scan.next());\n\t\tr = Integer.parseInt(scan.next());\n\t\t\n\t\tif((x<r)||(y<r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((W>=x+r)&&(H>=y+r)){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}", "main", "{\n\t\tint W,H,x,y,r;\n\t\tScanner scan = new Scanner(System.in);\n\t\tW = Integer.parseInt(scan.next());\n\t\tH = Integer.parseInt(scan.next());\n\t\tx = Integer.parseInt(scan.next());\n\t\ty = Integer.parseInt(scan.next());\n\t\tr = Integer.parseInt(scan.next());\n\t\t\n\t\tif((x<r)||(y<r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((W>=x+r)&&(H>=y+r)){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}", "int W", "W", "H", "H", "x", "x", "y", "y", "r;", "r", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "W = Integer.parseInt(scan.next())", "W", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "H = Integer.parseInt(scan.next())", "H", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "x = Integer.parseInt(scan.next())", "x", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "y = Integer.parseInt(scan.next())", "y", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "r = Integer.parseInt(scan.next())", "r", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "if((x<r)||(y<r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((W>=x+r)&&(H>=y+r)){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "(x<r)||(y<r)", "(x<r)", "x", "r", "(y<r)", "y", "r", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if((W>=x+r)&&(H>=y+r)){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "(W>=x+r)&&(H>=y+r)", "(W>=x+r)", "W", "x+r", "x", "r", "(H>=y+r)", "H", "y+r", "y", "r", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main{\n\tpublic static void main (String[] args){\n\t\tint W,H,x,y,r;\n\t\tScanner scan = new Scanner(System.in);\n\t\tW = Integer.parseInt(scan.next());\n\t\tH = Integer.parseInt(scan.next());\n\t\tx = Integer.parseInt(scan.next());\n\t\ty = Integer.parseInt(scan.next());\n\t\tr = Integer.parseInt(scan.next());\n\t\t\n\t\tif((x<r)||(y<r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((W>=x+r)&&(H>=y+r)){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "public class Main{\n\tpublic static void main (String[] args){\n\t\tint W,H,x,y,r;\n\t\tScanner scan = new Scanner(System.in);\n\t\tW = Integer.parseInt(scan.next());\n\t\tH = Integer.parseInt(scan.next());\n\t\tx = Integer.parseInt(scan.next());\n\t\ty = Integer.parseInt(scan.next());\n\t\tr = Integer.parseInt(scan.next());\n\t\t\n\t\tif((x<r)||(y<r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((W>=x+r)&&(H>=y+r)){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main{ public static void main (String[] args){ int W,H,x,y,r; Scanner scan = new Scanner(System.in); W = Integer.parseInt(scan.next()); H = Integer.parseInt(scan.next()); x = Integer.parseInt(scan.next()); y = Integer.parseInt(scan.next()); r = Integer.parseInt(scan.next()); if((x<r)||(y<r)){ System.out.println("No"); }else if((W>=x+r)&&(H>=y+r)){ System.out.println("Yes"); }else{ System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 17, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 20, 11, 1, 41, 13, 17, 2, 13, 17, 1, 40, 13, 30, 0, 18, 13, 13, 4, 18, 13, 0, 13, 18, 13, 17, 0, 13, 18, 13, 17, 0, 13, 18, 13, 17, 0, 13, 18, 13, 17, 0, 13, 18, 13, 17, 14, 2, 2, 2, 13, 13, 2, 13, 2, 13, 13, 2, 2, 13, 13, 2, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 13 ], [ 13, 14 ], [ 8, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 8, 19 ], [ 19, 20 ], [ 8, 21 ], [ 21, 22 ], [ 8, 23 ], [ 23, 24 ], [ 23, 25 ], [ 8, 26 ], [ 26, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 26, 31 ], [ 31, 32 ], [ 31, 33 ], [ 26, 34 ], [ 34, 35 ], [ 35, 36 ], [ 26, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 38, 42 ], [ 42, 43 ], [ 43, 44 ], [ 8, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 47, 49 ], [ 8, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 52, 54 ], [ 8, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 57, 59 ], [ 8, 60 ], [ 60, 61 ], [ 60, 62 ], [ 62, 63 ], [ 62, 64 ], [ 8, 65 ], [ 65, 66 ], [ 65, 67 ], [ 67, 68 ], [ 67, 69 ], [ 8, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 78, 80 ], [ 71, 81 ], [ 81, 82 ], [ 82, 83 ], [ 82, 84 ], [ 81, 85 ], [ 85, 86 ], [ 85, 87 ], [ 87, 88 ], [ 87, 89 ], [ 70, 90 ], [ 90, 91 ], [ 91, 92 ], [ 92, 93 ], [ 92, 94 ], [ 90, 95 ], [ 70, 96 ], [ 96, 97 ], [ 97, 98 ], [ 98, 99 ], [ 98, 100 ], [ 96, 101 ], [ 8, 102 ], [ 102, 103 ], [ 103, 104 ], [ 6, 105 ], [ 105, 106 ] ]
[ "import java.util.Scanner;\n\nclass Main{\n\n\tpublic static void main(String[] args) {\n\n\tint[] n = new int[5];\n\tint W,H,x,y,r;\n\n\tScanner scan = new Scanner(System.in);\n\n\tfor(int i=0; i<5; i++) n[i] = scan.nextInt();\n\t\n\tW = n[0];\n\tH = n[1];\n\tx = n[2];\n\ty = n[3];\n\tr = n[4];\n\t\n\tif( (r<=x && x<=W-r) && (r<=y && y<=H-r) ) System.out.println(\"Yes\");\n\telse System.out.println(\"No\");\n\t\n\tscan.close();\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main{\n\n\tpublic static void main(String[] args) {\n\n\tint[] n = new int[5];\n\tint W,H,x,y,r;\n\n\tScanner scan = new Scanner(System.in);\n\n\tfor(int i=0; i<5; i++) n[i] = scan.nextInt();\n\t\n\tW = n[0];\n\tH = n[1];\n\tx = n[2];\n\ty = n[3];\n\tr = n[4];\n\t\n\tif( (r<=x && x<=W-r) && (r<=y && y<=H-r) ) System.out.println(\"Yes\");\n\telse System.out.println(\"No\");\n\t\n\tscan.close();\n\t}\n}", "Main", "public static void main(String[] args) {\n\n\tint[] n = new int[5];\n\tint W,H,x,y,r;\n\n\tScanner scan = new Scanner(System.in);\n\n\tfor(int i=0; i<5; i++) n[i] = scan.nextInt();\n\t\n\tW = n[0];\n\tH = n[1];\n\tx = n[2];\n\ty = n[3];\n\tr = n[4];\n\t\n\tif( (r<=x && x<=W-r) && (r<=y && y<=H-r) ) System.out.println(\"Yes\");\n\telse System.out.println(\"No\");\n\t\n\tscan.close();\n\t}", "main", "{\n\n\tint[] n = new int[5];\n\tint W,H,x,y,r;\n\n\tScanner scan = new Scanner(System.in);\n\n\tfor(int i=0; i<5; i++) n[i] = scan.nextInt();\n\t\n\tW = n[0];\n\tH = n[1];\n\tx = n[2];\n\ty = n[3];\n\tr = n[4];\n\t\n\tif( (r<=x && x<=W-r) && (r<=y && y<=H-r) ) System.out.println(\"Yes\");\n\telse System.out.println(\"No\");\n\t\n\tscan.close();\n\t}", "int[] n = new int[5];", "n", "new int[5]", "5", "int W", "W", "H", "H", "x", "x", "y", "y", "r;", "r", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "for(int i=0; i<5; i++) n[i] = scan.nextInt();", "int i=0;", "int i=0;", "i", "0", "i<5", "i", "5", "i++", "i++", "i", "n[i] = scan.nextInt();", "n[i] = scan.nextInt()", "n[i]", "n", "i", "scan.nextInt()", "scan.nextInt", "scan", "W = n[0]", "W", "n[0]", "n", "0", "H = n[1]", "H", "n[1]", "n", "1", "x = n[2]", "x", "n[2]", "n", "2", "y = n[3]", "y", "n[3]", "n", "3", "r = n[4]", "r", "n[4]", "n", "4", "if( (r<=x && x<=W-r) && (r<=y && y<=H-r) ) System.out.println(\"Yes\");\n\telse System.out.println(\"No\");", "(r<=x && x<=W-r) && (r<=y && y<=H-r)", "(r<=x && x<=W-r)", "r<=x", "r", "x", "x<=W-r", "x", "W-r", "W", "r", "(r<=y && y<=H-r)", "r<=y", "r", "y", "y<=H-r", "y", "H-r", "H", "r", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "scan.close()", "scan.close", "scan", "String[] args", "args" ]
import java.util.Scanner; class Main{ public static void main(String[] args) { int[] n = new int[5]; int W,H,x,y,r; Scanner scan = new Scanner(System.in); for(int i=0; i<5; i++) n[i] = scan.nextInt(); W = n[0]; H = n[1]; x = n[2]; y = n[3]; r = n[4]; if( (r<=x && x<=W-r) && (r<=y && y<=H-r) ) System.out.println("Yes"); else System.out.println("No"); scan.close(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 86, 5 ], [ 86, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 8, 14 ], [ 14, 15 ], [ 8, 16 ], [ 16, 17 ], [ 8, 18 ], [ 18, 19 ], [ 8, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 8, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 45, 46 ], [ 8, 47 ], [ 47, 48 ], [ 50, 49 ], [ 61, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 50, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 56, 60 ], [ 61, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 61, 65 ], [ 50, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 66, 70 ], [ 47, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 71, 76 ], [ 47, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 79, 81 ], [ 77, 82 ], [ 6, 83 ], [ 83, 84 ], [ 0, 85 ], [ 85, 86 ], [ 85, 87 ] ]
[ "import java.util.Scanner;\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc=new Scanner(System.in);\n\t\tint w,h,x,y,r;\n\t\tw=sc.nextInt();\n\t\th=sc.nextInt();\n\t\tx=sc.nextInt();\n\t\ty=sc.nextInt();\n\t\tr=sc.nextInt();\n\t\t\n\t\tif((x+r)<=w && (x-r)>=0 && (y+r)<=h && (y-r)>=0) System.out.println(\"Yes\");\n\t\telse System.out.println(\"No\");\n\t\t\n\t}\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc=new Scanner(System.in);\n\t\tint w,h,x,y,r;\n\t\tw=sc.nextInt();\n\t\th=sc.nextInt();\n\t\tx=sc.nextInt();\n\t\ty=sc.nextInt();\n\t\tr=sc.nextInt();\n\t\t\n\t\tif((x+r)<=w && (x-r)>=0 && (y+r)<=h && (y-r)>=0) System.out.println(\"Yes\");\n\t\telse System.out.println(\"No\");\n\t\t\n\t}\n\n}", "Main", "public static void main(String[] args) {\n\n\t\tScanner sc=new Scanner(System.in);\n\t\tint w,h,x,y,r;\n\t\tw=sc.nextInt();\n\t\th=sc.nextInt();\n\t\tx=sc.nextInt();\n\t\ty=sc.nextInt();\n\t\tr=sc.nextInt();\n\t\t\n\t\tif((x+r)<=w && (x-r)>=0 && (y+r)<=h && (y-r)>=0) System.out.println(\"Yes\");\n\t\telse System.out.println(\"No\");\n\t\t\n\t}", "main", "{\n\n\t\tScanner sc=new Scanner(System.in);\n\t\tint w,h,x,y,r;\n\t\tw=sc.nextInt();\n\t\th=sc.nextInt();\n\t\tx=sc.nextInt();\n\t\ty=sc.nextInt();\n\t\tr=sc.nextInt();\n\t\t\n\t\tif((x+r)<=w && (x-r)>=0 && (y+r)<=h && (y-r)>=0) System.out.println(\"Yes\");\n\t\telse System.out.println(\"No\");\n\t\t\n\t}", "Scanner sc=new Scanner(System.in);", "sc", "new Scanner(System.in)", "int w", "w", "h", "h", "x", "x", "y", "y", "r;", "r", "w=sc.nextInt()", "w", "sc.nextInt()", "sc.nextInt", "sc", "h=sc.nextInt()", "h", "sc.nextInt()", "sc.nextInt", "sc", "x=sc.nextInt()", "x", "sc.nextInt()", "sc.nextInt", "sc", "y=sc.nextInt()", "y", "sc.nextInt()", "sc.nextInt", "sc", "r=sc.nextInt()", "r", "sc.nextInt()", "sc.nextInt", "sc", "if((x+r)<=w && (x-r)>=0 && (y+r)<=h && (y-r)>=0) System.out.println(\"Yes\");\n\t\telse System.out.println(\"No\");", "(x+r)<=w && (x-r)>=0 && (y+r)<=h && (y-r)>=0", "(y+r)<=h", "(x+r)<=w && (x-r)>=0 && (y+r)<=h && (y-r)>=0", "(x+r)<=w", "(x+r)", "x", "r", "w", "(x-r)>=0", "(x-r)", "x", "r", "0", "(y+r)<=h", "(y+r)", "y", "r", "h", "(y-r)>=0", "(y-r)", "y", "r", "0", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc=new Scanner(System.in);\n\t\tint w,h,x,y,r;\n\t\tw=sc.nextInt();\n\t\th=sc.nextInt();\n\t\tx=sc.nextInt();\n\t\ty=sc.nextInt();\n\t\tr=sc.nextInt();\n\t\t\n\t\tif((x+r)<=w && (x-r)>=0 && (y+r)<=h && (y-r)>=0) System.out.println(\"Yes\");\n\t\telse System.out.println(\"No\");\n\t\t\n\t}\n\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner sc=new Scanner(System.in);\n\t\tint w,h,x,y,r;\n\t\tw=sc.nextInt();\n\t\th=sc.nextInt();\n\t\tx=sc.nextInt();\n\t\ty=sc.nextInt();\n\t\tr=sc.nextInt();\n\t\t\n\t\tif((x+r)<=w && (x-r)>=0 && (y+r)<=h && (y-r)>=0) System.out.println(\"Yes\");\n\t\telse System.out.println(\"No\");\n\t\t\n\t}\n\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int w,h,x,y,r; w=sc.nextInt(); h=sc.nextInt(); x=sc.nextInt(); y=sc.nextInt(); r=sc.nextInt(); if((x+r)<=w && (x-r)>=0 && (y+r)<=h && (y-r)>=0) System.out.println("Yes"); else System.out.println("No"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 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, 18, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 104, 5 ], [ 104, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 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 ], [ 42, 43 ], [ 41, 44 ], [ 44, 45 ], [ 44, 46 ], [ 8, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 50, 51 ], [ 49, 52 ], [ 52, 53 ], [ 52, 54 ], [ 8, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 58, 59 ], [ 57, 60 ], [ 60, 61 ], [ 60, 62 ], [ 8, 63 ], [ 63, 64 ], [ 66, 65 ], [ 77, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 67, 71 ], [ 66, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 76 ], [ 77, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 77, 81 ], [ 66, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 82, 86 ], [ 63, 87 ], [ 87, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 88, 93 ], [ 63, 94 ], [ 94, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 97, 99 ], [ 95, 100 ], [ 6, 101 ], [ 101, 102 ], [ 0, 103 ], [ 103, 104 ], [ 103, 105 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n public static void main(String[] args) {\n Scanner out = new Scanner(System.in);\n\n String str = out.nextLine();\n String[] sss = str.split(\" \");\n int a = Integer.parseInt(sss[0]);\n int b = Integer.parseInt(sss[1]);\n int c = Integer.parseInt(sss[2]);\n int d = Integer.parseInt(sss[3]);\n int e = Integer.parseInt(sss[4]);\n\n if (d - e >= 0 && c - e >= 0 && a - c >= e && b - d >= e) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n public static void main(String[] args) {\n Scanner out = new Scanner(System.in);\n\n String str = out.nextLine();\n String[] sss = str.split(\" \");\n int a = Integer.parseInt(sss[0]);\n int b = Integer.parseInt(sss[1]);\n int c = Integer.parseInt(sss[2]);\n int d = Integer.parseInt(sss[3]);\n int e = Integer.parseInt(sss[4]);\n\n if (d - e >= 0 && c - e >= 0 && a - c >= e && b - d >= e) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n\n }\n}", "Main", "public static void main(String[] args) {\n Scanner out = new Scanner(System.in);\n\n String str = out.nextLine();\n String[] sss = str.split(\" \");\n int a = Integer.parseInt(sss[0]);\n int b = Integer.parseInt(sss[1]);\n int c = Integer.parseInt(sss[2]);\n int d = Integer.parseInt(sss[3]);\n int e = Integer.parseInt(sss[4]);\n\n if (d - e >= 0 && c - e >= 0 && a - c >= e && b - d >= e) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n\n }", "main", "{\n Scanner out = new Scanner(System.in);\n\n String str = out.nextLine();\n String[] sss = str.split(\" \");\n int a = Integer.parseInt(sss[0]);\n int b = Integer.parseInt(sss[1]);\n int c = Integer.parseInt(sss[2]);\n int d = Integer.parseInt(sss[3]);\n int e = Integer.parseInt(sss[4]);\n\n if (d - e >= 0 && c - e >= 0 && a - c >= e && b - d >= e) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n\n }", "Scanner out = new Scanner(System.in);", "out", "new Scanner(System.in)", "String str = out.nextLine();", "str", "out.nextLine()", "out.nextLine", "out", "String[] sss = str.split(\" \");", "sss", "str.split(\" \")", "str.split", "str", "\" \"", "int a = Integer.parseInt(sss[0]);", "a", "Integer.parseInt(sss[0])", "Integer.parseInt", "Integer", "sss[0]", "sss", "0", "int b = Integer.parseInt(sss[1]);", "b", "Integer.parseInt(sss[1])", "Integer.parseInt", "Integer", "sss[1]", "sss", "1", "int c = Integer.parseInt(sss[2]);", "c", "Integer.parseInt(sss[2])", "Integer.parseInt", "Integer", "sss[2]", "sss", "2", "int d = Integer.parseInt(sss[3]);", "d", "Integer.parseInt(sss[3])", "Integer.parseInt", "Integer", "sss[3]", "sss", "3", "int e = Integer.parseInt(sss[4]);", "e", "Integer.parseInt(sss[4])", "Integer.parseInt", "Integer", "sss[4]", "sss", "4", "if (d - e >= 0 && c - e >= 0 && a - c >= e && b - d >= e) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }", "d - e >= 0 && c - e >= 0 && a - c >= e && b - d >= e", "a - c >= e", "d - e >= 0 && c - e >= 0 && a - c >= e && b - d >= e", "d - e >= 0", "d - e", "d", "e", "0", "c - e >= 0", "c - e", "c", "e", "0", "a - c >= e", "a - c", "a", "c", "e", "b - d >= e", "b - d", "b", "d", "e", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\n public static void main(String[] args) {\n Scanner out = new Scanner(System.in);\n\n String str = out.nextLine();\n String[] sss = str.split(\" \");\n int a = Integer.parseInt(sss[0]);\n int b = Integer.parseInt(sss[1]);\n int c = Integer.parseInt(sss[2]);\n int d = Integer.parseInt(sss[3]);\n int e = Integer.parseInt(sss[4]);\n\n if (d - e >= 0 && c - e >= 0 && a - c >= e && b - d >= e) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n\n }\n}", "public class Main {\n\n public static void main(String[] args) {\n Scanner out = new Scanner(System.in);\n\n String str = out.nextLine();\n String[] sss = str.split(\" \");\n int a = Integer.parseInt(sss[0]);\n int b = Integer.parseInt(sss[1]);\n int c = Integer.parseInt(sss[2]);\n int d = Integer.parseInt(sss[3]);\n int e = Integer.parseInt(sss[4]);\n\n if (d - e >= 0 && c - e >= 0 && a - c >= e && b - d >= e) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner out = new Scanner(System.in); String str = out.nextLine(); String[] sss = str.split(" "); int a = Integer.parseInt(sss[0]); int b = Integer.parseInt(sss[1]); int c = Integer.parseInt(sss[2]); int d = Integer.parseInt(sss[3]); int e = Integer.parseInt(sss[4]); if (d - e >= 0 && c - e >= 0 && a - c >= e && b - d >= e) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 13, 2, 13, 13, 2, 13, 2, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 75, 2 ], [ 75, 3 ], [ 3, 4 ], [ 3, 5 ], [ 5, 6 ], [ 6, 7 ], [ 6, 8 ], [ 5, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 5, 14 ], [ 14, 15 ], [ 14, 16 ], [ 16, 17 ], [ 17, 18 ], [ 5, 19 ], [ 19, 20 ], [ 19, 21 ], [ 21, 22 ], [ 22, 23 ], [ 5, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 5, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 5, 34 ], [ 34, 35 ], [ 37, 36 ], [ 48, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 40, 42 ], [ 37, 43 ], [ 43, 44 ], [ 43, 45 ], [ 45, 46 ], [ 45, 47 ], [ 48, 48 ], [ 48, 49 ], [ 49, 50 ], [ 49, 51 ], [ 48, 52 ], [ 37, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 53, 57 ], [ 34, 58 ], [ 58, 59 ], [ 59, 60 ], [ 60, 61 ], [ 61, 62 ], [ 61, 63 ], [ 59, 64 ], [ 34, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 66, 71 ], [ 3, 72 ], [ 72, 73 ], [ 0, 74 ], [ 74, 75 ], [ 74, 76 ] ]
[ "public class Main {\n\tpublic static void main(String[] args){\n\t\tjava.util.Scanner scan = new java.util.Scanner(System.in);\n\t\tint W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\n\t\tif((W >= x + r) && (H >= y + r) && ((x + r) > 0) && (y + r) > 0){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\n\n\t}\n\n}", "public class Main {\n\tpublic static void main(String[] args){\n\t\tjava.util.Scanner scan = new java.util.Scanner(System.in);\n\t\tint W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\n\t\tif((W >= x + r) && (H >= y + r) && ((x + r) > 0) && (y + r) > 0){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\n\n\t}\n\n}", "Main", "public static void main(String[] args){\n\t\tjava.util.Scanner scan = new java.util.Scanner(System.in);\n\t\tint W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\n\t\tif((W >= x + r) && (H >= y + r) && ((x + r) > 0) && (y + r) > 0){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\n\n\t}", "main", "{\n\t\tjava.util.Scanner scan = new java.util.Scanner(System.in);\n\t\tint W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\n\t\tif((W >= x + r) && (H >= y + r) && ((x + r) > 0) && (y + r) > 0){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\n\n\t}", "java.util.Scanner scan = new java.util.Scanner(System.in);", "scan", "new java.util.Scanner(System.in)", "int W = scan.nextInt();", "W", "scan.nextInt()", "scan.nextInt", "scan", "int H = scan.nextInt();", "H", "scan.nextInt()", "scan.nextInt", "scan", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "int y = scan.nextInt();", "y", "scan.nextInt()", "scan.nextInt", "scan", "int r = scan.nextInt();", "r", "scan.nextInt()", "scan.nextInt", "scan", "if((W >= x + r) && (H >= y + r) && ((x + r) > 0) && (y + r) > 0){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "(W >= x + r) && (H >= y + r) && ((x + r) > 0) && (y + r) > 0", "((x + r) > 0)", "(W >= x + r) && (H >= y + r) && ((x + r) > 0) && (y + r) > 0", "(W >= x + r)", "W", "x + r", "x", "r", "(H >= y + r)", "H", "y + r", "y", "r", "((x + r) > 0)", "(x + r)", "x", "r", "0", "(y + r) > 0", "(y + r)", "y", "r", "0", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args){\n\t\tjava.util.Scanner scan = new java.util.Scanner(System.in);\n\t\tint W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\n\t\tif((W >= x + r) && (H >= y + r) && ((x + r) > 0) && (y + r) > 0){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\n\n\t}\n\n}", "public class Main {\n\tpublic static void main(String[] args){\n\t\tjava.util.Scanner scan = new java.util.Scanner(System.in);\n\t\tint W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\n\t\tif((W >= x + r) && (H >= y + r) && ((x + r) > 0) && (y + r) > 0){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\n\n\t}\n\n}", "Main" ]
public class Main { public static void main(String[] args){ java.util.Scanner scan = new java.util.Scanner(System.in); int W = scan.nextInt(); int H = scan.nextInt(); int x = scan.nextInt(); int y = scan.nextInt(); int r = scan.nextInt(); if((W >= x + r) && (H >= y + r) && ((x + r) > 0) && (y + r) > 0){ System.out.println("Yes"); }else{ System.out.println("No"); } } }
[ 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, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 14, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 13, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 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 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 8, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 45, 46 ], [ 8, 47 ], [ 47, 48 ], [ 48, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 49, 53 ], [ 48, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 54, 58 ], [ 47, 59 ], [ 59, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 60, 65 ], [ 47, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 68, 72 ], [ 67, 73 ], [ 73, 74 ], [ 74, 75 ], [ 74, 76 ], [ 73, 77 ], [ 66, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 81, 82 ], [ 81, 83 ], [ 79, 84 ], [ 66, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 86, 90 ], [ 90, 91 ], [ 90, 92 ], [ 85, 93 ], [ 93, 94 ], [ 94, 95 ], [ 95, 96 ], [ 96, 97 ], [ 96, 98 ], [ 94, 99 ], [ 85, 100 ], [ 100, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 103, 105 ], [ 101, 106 ], [ 6, 107 ], [ 107, 108 ] ]
[ "import java.util.Scanner;\n\nclass Main {\n\n\tpublic static void main(String[] args) {\n\t\t\n\t\tint W,H,x,y,r;\n\t\t\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tW = sc.nextInt();\n\t\tH = sc.nextInt();\n\t\tx = sc.nextInt();\n\t\ty = sc.nextInt();\n\t\tr = sc.nextInt();\n\t\t\n\t\tif(x + r > W || x - r < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(y + r > H || y - r < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(x > W || y > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\n\n\t}\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main {\n\n\tpublic static void main(String[] args) {\n\t\t\n\t\tint W,H,x,y,r;\n\t\t\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tW = sc.nextInt();\n\t\tH = sc.nextInt();\n\t\tx = sc.nextInt();\n\t\ty = sc.nextInt();\n\t\tr = sc.nextInt();\n\t\t\n\t\tif(x + r > W || x - r < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(y + r > H || y - r < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(x > W || y > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\n\n\t}\n\n}", "Main", "public static void main(String[] args) {\n\t\t\n\t\tint W,H,x,y,r;\n\t\t\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tW = sc.nextInt();\n\t\tH = sc.nextInt();\n\t\tx = sc.nextInt();\n\t\ty = sc.nextInt();\n\t\tr = sc.nextInt();\n\t\t\n\t\tif(x + r > W || x - r < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(y + r > H || y - r < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(x > W || y > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\n\n\t}", "main", "{\n\t\t\n\t\tint W,H,x,y,r;\n\t\t\n\t\tScanner sc = new Scanner(System.in);\n\t\t\n\t\tW = sc.nextInt();\n\t\tH = sc.nextInt();\n\t\tx = sc.nextInt();\n\t\ty = sc.nextInt();\n\t\tr = sc.nextInt();\n\t\t\n\t\tif(x + r > W || x - r < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(y + r > H || y - r < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(x > W || y > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\n\n\t}", "int W", "W", "H", "H", "x", "x", "y", "y", "r;", "r", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "W = sc.nextInt()", "W", "sc.nextInt()", "sc.nextInt", "sc", "H = sc.nextInt()", "H", "sc.nextInt()", "sc.nextInt", "sc", "x = sc.nextInt()", "x", "sc.nextInt()", "sc.nextInt", "sc", "y = sc.nextInt()", "y", "sc.nextInt()", "sc.nextInt", "sc", "r = sc.nextInt()", "r", "sc.nextInt()", "sc.nextInt", "sc", "if(x + r > W || x - r < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(y + r > H || y - r < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(x > W || y > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "x + r > W || x - r < 0", "x + r > W", "x + r", "x", "r", "W", "x - r < 0", "x - r", "x", "r", "0", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(y + r > H || y - r < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(x > W || y > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "y + r > H || y - r < 0", "y + r > H", "y + r", "y", "r", "H", "y - r < 0", "y - r", "y", "r", "0", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(x > W || y > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "x > W || y > H", "x > W", "x", "W", "y > H", "y", "H", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args" ]
import java.util.Scanner; class Main { public static void main(String[] args) { int W,H,x,y,r; Scanner sc = new Scanner(System.in); W = sc.nextInt(); H = sc.nextInt(); x = sc.nextInt(); y = sc.nextInt(); r = sc.nextInt(); if(x + r > W || x - r < 0){ System.out.println("No"); } else if(y + r > H || y - r < 0){ System.out.println("No"); } else if(x > W || y > H){ System.out.println("No"); } else{ System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 12, 13, 30, 0, 13, 20, 4, 18, 18, 13, 13, 4, 13, 4, 18, 13, 4, 18, 13, 4, 18, 13, 4, 18, 13, 4, 18, 13, 23, 13, 12, 13, 30, 14, 40, 2, 2, 2, 2, 40, 17, 13, 2, 13, 17, 2, 17, 13, 2, 13, 17, 30, 29, 17, 14, 2, 4, 13, 13, 13, 13, 4, 13, 13, 13, 13, 30, 29, 17, 30, 29, 17, 23, 13, 23, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 14, 2, 2, 13, 17, 2, 13, 13, 30, 29, 17, 14, 2, 2, 13, 17, 2, 13, 13, 30, 29, 17, 30, 29, 17, 23, 13, 23, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 135, 5 ], [ 135, 6 ], [ 6, 7 ], [ 135, 8 ], [ 8, 9 ], [ 8, 10 ], [ 10, 11 ], [ 11, 12 ], [ 11, 13 ], [ 10, 14 ], [ 14, 15 ], [ 15, 16 ], [ 16, 17 ], [ 16, 18 ], [ 14, 19 ], [ 19, 20 ], [ 19, 21 ], [ 21, 22 ], [ 22, 23 ], [ 19, 24 ], [ 24, 25 ], [ 25, 26 ], [ 19, 27 ], [ 27, 28 ], [ 28, 29 ], [ 19, 30 ], [ 30, 31 ], [ 31, 32 ], [ 19, 33 ], [ 33, 34 ], [ 34, 35 ], [ 8, 36 ], [ 36, 37 ], [ 135, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 53, 45 ], [ 45, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 45, 50 ], [ 50, 51 ], [ 50, 52 ], [ 53, 53 ], [ 53, 54 ], [ 53, 55 ], [ 43, 56 ], [ 56, 57 ], [ 56, 58 ], [ 41, 59 ], [ 59, 60 ], [ 60, 61 ], [ 40, 62 ], [ 62, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 64, 67 ], [ 64, 68 ], [ 63, 69 ], [ 69, 70 ], [ 69, 71 ], [ 69, 72 ], [ 69, 73 ], [ 62, 74 ], [ 74, 75 ], [ 75, 76 ], [ 62, 77 ], [ 77, 78 ], [ 78, 79 ], [ 38, 80 ], [ 80, 81 ], [ 38, 82 ], [ 82, 83 ], [ 38, 84 ], [ 84, 85 ], [ 38, 86 ], [ 86, 87 ], [ 38, 88 ], [ 88, 89 ], [ 135, 90 ], [ 90, 91 ], [ 90, 92 ], [ 92, 93 ], [ 93, 94 ], [ 93, 95 ], [ 95, 96 ], [ 95, 97 ], [ 92, 98 ], [ 98, 99 ], [ 98, 100 ], [ 100, 101 ], [ 100, 102 ], [ 92, 103 ], [ 103, 104 ], [ 104, 105 ], [ 105, 106 ], [ 105, 107 ], [ 104, 108 ], [ 108, 109 ], [ 108, 110 ], [ 103, 111 ], [ 111, 112 ], [ 112, 113 ], [ 103, 114 ], [ 114, 115 ], [ 115, 116 ], [ 116, 117 ], [ 116, 118 ], [ 115, 119 ], [ 119, 120 ], [ 119, 121 ], [ 114, 122 ], [ 122, 123 ], [ 123, 124 ], [ 114, 125 ], [ 125, 126 ], [ 126, 127 ], [ 90, 128 ], [ 128, 129 ], [ 90, 130 ], [ 130, 131 ], [ 90, 132 ], [ 132, 133 ], [ 0, 134 ], [ 134, 135 ], [ 134, 136 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n private static Scanner scan;\n\n public static void main(String[] args) {\n scan = new Scanner(System.in);\n System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(), scan.nextInt(), scan.nextInt()));\n }\n\n private static String comp(int w,int h,int x,int y,int r) {\n if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }\n if (circle_in_a_Rectangle(w,x,r) && circle_in_a_Rectangle(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }\n }\n\n // 水平方向 (垂直方向も同様)\n // x - r が0 より小さい、または、x + r がW より大きいならばNoと判定。\n // x - r が0 以上、かつ、x + r がW 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle(int w,int x,int r) {\n int a = x - r;\n int b = x + r;\n if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n private static Scanner scan;\n\n public static void main(String[] args) {\n scan = new Scanner(System.in);\n System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(), scan.nextInt(), scan.nextInt()));\n }\n\n private static String comp(int w,int h,int x,int y,int r) {\n if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }\n if (circle_in_a_Rectangle(w,x,r) && circle_in_a_Rectangle(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }\n }\n\n // 水平方向 (垂直方向も同様)\n // x - r が0 より小さい、または、x + r がW より大きいならばNoと判定。\n // x - r が0 以上、かつ、x + r がW 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle(int w,int x,int r) {\n int a = x - r;\n int b = x + r;\n if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }\n }\n}", "Main", "private static Scanner scan;", "scan", "public static void main(String[] args) {\n scan = new Scanner(System.in);\n System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(), scan.nextInt(), scan.nextInt()));\n }", "main", "{\n scan = new Scanner(System.in);\n System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(), scan.nextInt(), scan.nextInt()));\n }", "scan = new Scanner(System.in)", "scan", "new Scanner(System.in)", "System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(), scan.nextInt(), scan.nextInt()))", "System.out.println", "System.out", "System", "System.out", "comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(), scan.nextInt(), scan.nextInt())", "comp", "scan.nextInt()", "scan.nextInt", "scan", "scan.nextInt()", "scan.nextInt", "scan", "scan.nextInt()", "scan.nextInt", "scan", "scan.nextInt()", "scan.nextInt", "scan", "scan.nextInt()", "scan.nextInt", "scan", "String[] args", "args", "private static String comp(int w,int h,int x,int y,int r) {\n if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }\n if (circle_in_a_Rectangle(w,x,r) && circle_in_a_Rectangle(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }\n }", "comp", "{\n if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }\n if (circle_in_a_Rectangle(w,x,r) && circle_in_a_Rectangle(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }\n }", "if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }", "!(-100 <= x || y <=100 || 0 < w || r <= 100)", "(-100 <= x || y <=100 || 0 < w || r <= 100)", "0 < w", "-100 <= x || y <=100 || 0 < w || r <= 100", "-100 <= x", "-100", "100", "x", "y <=100", "y", "100", "0 < w", "0", "w", "r <= 100", "r", "100", "{\n return \"\";\n }", "return \"\";", "\"\"", "if (circle_in_a_Rectangle(w,x,r) && circle_in_a_Rectangle(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }", "circle_in_a_Rectangle(w,x,r) && circle_in_a_Rectangle(h,y,r)", "circle_in_a_Rectangle(w,x,r)", "circle_in_a_Rectangle", "w", "x", "r", "circle_in_a_Rectangle(h,y,r)", "circle_in_a_Rectangle", "h", "y", "r", "{\n return \"Yes\";\n }", "return \"Yes\";", "\"Yes\"", "{\n return \"No\";\n }", "return \"No\";", "\"No\"", "int w", "w", "int h", "h", "int x", "x", "int y", "y", "int r", "r", "// 水平方向 (垂直方向も同様)\n // x - r が0 より小さい、または、x + r がW より大きいならばNoと判定。\n // x - r が0 以上、かつ、x + r がW 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle(int w,int x,int r) {\n int a = x - r;\n int b = x + r;\n if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }\n }", "circle_in_a_Rectangle", "{\n int a = x - r;\n int b = x + r;\n if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }\n }", "int a = x - r;", "a", "x - r", "x", "r", "int b = x + r;", "b", "x + r", "x", "r", "if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }", "a < 0 || b > w", "a < 0", "a", "0", "b > w", "b", "w", "{\n return false;\n }", "return false;", "false", "if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }", "a >= 0 && b <= w", "a >= 0", "a", "0", "b <= w", "b", "w", "{\n return true;\n }", "return true;", "true", "{\n return false;\n }", "return false;", "false", "int w", "w", "int x", "x", "int r", "r", "public class Main {\n private static Scanner scan;\n\n public static void main(String[] args) {\n scan = new Scanner(System.in);\n System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(), scan.nextInt(), scan.nextInt()));\n }\n\n private static String comp(int w,int h,int x,int y,int r) {\n if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }\n if (circle_in_a_Rectangle(w,x,r) && circle_in_a_Rectangle(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }\n }\n\n // 水平方向 (垂直方向も同様)\n // x - r が0 より小さい、または、x + r がW より大きいならばNoと判定。\n // x - r が0 以上、かつ、x + r がW 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle(int w,int x,int r) {\n int a = x - r;\n int b = x + r;\n if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }\n }\n}", "public class Main {\n private static Scanner scan;\n\n public static void main(String[] args) {\n scan = new Scanner(System.in);\n System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(), scan.nextInt(), scan.nextInt()));\n }\n\n private static String comp(int w,int h,int x,int y,int r) {\n if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }\n if (circle_in_a_Rectangle(w,x,r) && circle_in_a_Rectangle(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }\n }\n\n // 水平方向 (垂直方向も同様)\n // x - r が0 より小さい、または、x + r がW より大きいならばNoと判定。\n // x - r が0 以上、かつ、x + r がW 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle(int w,int x,int r) {\n int a = x - r;\n int b = x + r;\n if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }\n }\n}", "Main" ]
import java.util.Scanner; public class Main { private static Scanner scan; public static void main(String[] args) { scan = new Scanner(System.in); System.out.println(comp( scan.nextInt() , scan.nextInt(), scan.nextInt(), scan.nextInt(), scan.nextInt())); } private static String comp(int w,int h,int x,int y,int r) { if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) { return ""; } if (circle_in_a_Rectangle(w,x,r) && circle_in_a_Rectangle(h,y,r)) { return "Yes"; } else { return "No"; } } // 水平方向 (垂直方向も同様) // x - r が0 より小さい、または、x + r がW より大きいならばNoと判定。 // x - r が0 以上、かつ、x + r がW 以下ならばYesと判定。 private static boolean circle_in_a_Rectangle(int w,int x,int r) { int a = x - r; int b = x + r; if (a < 0 || b > w) { return false; } else if (a >= 0 && b <= w) { return true; } else { return false; } } }
[ 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, 20, 17, 11, 1, 41, 13, 17, 2, 13, 17, 1, 40, 13, 30, 30, 0, 18, 13, 13, 4, 18, 13, 18, 13, 13, 14, 2, 2, 2, 2, 17, 2, 18, 13, 17, 18, 13, 17, 2, 2, 18, 13, 17, 18, 13, 17, 18, 13, 17, 2, 17, 2, 18, 13, 17, 18, 13, 17, 2, 2, 18, 13, 17, 18, 13, 17, 18, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 111, 5 ], [ 111, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 19, 22 ], [ 8, 23 ], [ 23, 24 ], [ 23, 25 ], [ 8, 27 ], [ 27, 28 ], [ 28, 29 ], [ 29, 30 ], [ 29, 31 ], [ 27, 32 ], [ 32, 33 ], [ 32, 34 ], [ 27, 35 ], [ 35, 36 ], [ 36, 37 ], [ 27, 38 ], [ 39, 39 ], [ 39, 40 ], [ 40, 41 ], [ 41, 42 ], [ 41, 43 ], [ 40, 44 ], [ 44, 45 ], [ 45, 46 ], [ 44, 47 ], [ 47, 48 ], [ 47, 49 ], [ 8, 50 ], [ 50, 51 ], [ 53, 52 ], [ 74, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 56, 60 ], [ 60, 61 ], [ 60, 62 ], [ 53, 63 ], [ 63, 64 ], [ 64, 65 ], [ 65, 66 ], [ 65, 67 ], [ 64, 68 ], [ 68, 69 ], [ 68, 70 ], [ 63, 71 ], [ 71, 72 ], [ 71, 73 ], [ 74, 74 ], [ 74, 75 ], [ 74, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 76, 80 ], [ 80, 81 ], [ 80, 82 ], [ 53, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 85, 87 ], [ 84, 88 ], [ 88, 89 ], [ 88, 90 ], [ 83, 91 ], [ 91, 92 ], [ 91, 93 ], [ 50, 94 ], [ 94, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 97, 99 ], [ 95, 100 ], [ 50, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 104, 105 ], [ 104, 106 ], [ 102, 107 ], [ 6, 108 ], [ 108, 109 ], [ 0, 110 ], [ 110, 111 ], [ 110, 112 ] ]
[ "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\tString s = sc.nextLine();\n\t\tString[] st = s.split(\" \");\n\t\tint[] in = new int[5];\n\t\tfor (int i = 0; i < 5; i++) {\n\t\t\tin[i] = Integer.parseInt(st[i]);\n\t\t}\n\t\t\n\t\tif (0 <= in[2]-in[4] && in[2]+in[4] <= in[0] && 0 <= in[3]-in[4] && in[3]+in[4] <= in[1]) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\n\t}\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString s = sc.nextLine();\n\t\tString[] st = s.split(\" \");\n\t\tint[] in = new int[5];\n\t\tfor (int i = 0; i < 5; i++) {\n\t\t\tin[i] = Integer.parseInt(st[i]);\n\t\t}\n\t\t\n\t\tif (0 <= in[2]-in[4] && in[2]+in[4] <= in[0] && 0 <= in[3]-in[4] && in[3]+in[4] <= in[1]) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\n\t}\n\n}", "Main", "public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString s = sc.nextLine();\n\t\tString[] st = s.split(\" \");\n\t\tint[] in = new int[5];\n\t\tfor (int i = 0; i < 5; i++) {\n\t\t\tin[i] = Integer.parseInt(st[i]);\n\t\t}\n\t\t\n\t\tif (0 <= in[2]-in[4] && in[2]+in[4] <= in[0] && 0 <= in[3]-in[4] && in[3]+in[4] <= in[1]) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tString s = sc.nextLine();\n\t\tString[] st = s.split(\" \");\n\t\tint[] in = new int[5];\n\t\tfor (int i = 0; i < 5; i++) {\n\t\t\tin[i] = Integer.parseInt(st[i]);\n\t\t}\n\t\t\n\t\tif (0 <= in[2]-in[4] && in[2]+in[4] <= in[0] && 0 <= in[3]-in[4] && in[3]+in[4] <= in[1]) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "String s = sc.nextLine();", "s", "sc.nextLine()", "sc.nextLine", "sc", "String[] st = s.split(\" \");", "st", "s.split(\" \")", "s.split", "s", "\" \"", "int[] in = new int[5];", "in", "new int[5]", "5", "for (int i = 0; i < 5; i++) {\n\t\t\tin[i] = Integer.parseInt(st[i]);\n\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < 5", "i", "5", "i++", "i++", "i", "{\n\t\t\tin[i] = Integer.parseInt(st[i]);\n\t\t}", "{\n\t\t\tin[i] = Integer.parseInt(st[i]);\n\t\t}", "in[i] = Integer.parseInt(st[i])", "in[i]", "in", "i", "Integer.parseInt(st[i])", "Integer.parseInt", "Integer", "st[i]", "st", "i", "if (0 <= in[2]-in[4] && in[2]+in[4] <= in[0] && 0 <= in[3]-in[4] && in[3]+in[4] <= in[1]) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}", "0 <= in[2]-in[4] && in[2]+in[4] <= in[0] && 0 <= in[3]-in[4] && in[3]+in[4] <= in[1]", "0 <= in[3]-in[4]", "0 <= in[2]-in[4] && in[2]+in[4] <= in[0] && 0 <= in[3]-in[4] && in[3]+in[4] <= in[1]", "0 <= in[2]-in[4]", "0", "in[2]-in[4]", "in[2]", "in", "2", "in[4]", "in", "4", "in[2]+in[4] <= in[0]", "in[2]+in[4]", "in[2]", "in", "2", "in[4]", "in", "4", "in[0]", "in", "0", "0 <= in[3]-in[4]", "0", "in[3]-in[4]", "in[3]", "in", "3", "in[4]", "in", "4", "in[3]+in[4] <= in[1]", "in[3]+in[4]", "in[3]", "in", "3", "in[4]", "in", "4", "in[1]", "in", "1", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString s = sc.nextLine();\n\t\tString[] st = s.split(\" \");\n\t\tint[] in = new int[5];\n\t\tfor (int i = 0; i < 5; i++) {\n\t\t\tin[i] = Integer.parseInt(st[i]);\n\t\t}\n\t\t\n\t\tif (0 <= in[2]-in[4] && in[2]+in[4] <= in[0] && 0 <= in[3]-in[4] && in[3]+in[4] <= in[1]) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\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\tString s = sc.nextLine();\n\t\tString[] st = s.split(\" \");\n\t\tint[] in = new int[5];\n\t\tfor (int i = 0; i < 5; i++) {\n\t\t\tin[i] = Integer.parseInt(st[i]);\n\t\t}\n\t\t\n\t\tif (0 <= in[2]-in[4] && in[2]+in[4] <= in[0] && 0 <= in[3]-in[4] && in[3]+in[4] <= in[1]) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\n\t}\n\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.nextLine(); String[] st = s.split(" "); int[] in = new int[5]; for (int i = 0; i < 5; i++) { in[i] = Integer.parseInt(st[i]); } if (0 <= in[2]-in[4] && in[2]+in[4] <= in[0] && 0 <= in[3]-in[4] && in[3]+in[4] <= in[1]) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 41, 13, 14, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 0, 13, 17, 30, 0, 13, 17, 14, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 0, 13, 17, 30, 0, 13, 17, 14, 2, 2, 13, 17, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 106, 5 ], [ 106, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 8, 39 ], [ 39, 40 ], [ 8, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 43, 47 ], [ 42, 48 ], [ 48, 49 ], [ 49, 50 ], [ 49, 51 ], [ 48, 52 ], [ 41, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 41, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 8, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 62, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 68, 72 ], [ 61, 73 ], [ 73, 74 ], [ 74, 75 ], [ 74, 76 ], [ 61, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 8, 81 ], [ 81, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 82, 86 ], [ 86, 87 ], [ 86, 88 ], [ 81, 89 ], [ 89, 90 ], [ 90, 91 ], [ 91, 92 ], [ 92, 93 ], [ 92, 94 ], [ 90, 95 ], [ 81, 96 ], [ 96, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 99, 101 ], [ 97, 102 ], [ 6, 103 ], [ 103, 104 ], [ 0, 105 ], [ 105, 106 ], [ 105, 107 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int w = scan.nextInt();\n int h = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n boolean yoko;\n boolean tate;\n if (x-r >= 0 && x+r <= w) {\n yoko = true;\n } else {\n yoko = false;\n }\n\n if (y-r >= 0 && y+r <= h) {\n tate = true;\n } else {\n tate = false;\n }\n if (yoko == true && tate == true) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int w = scan.nextInt();\n int h = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n boolean yoko;\n boolean tate;\n if (x-r >= 0 && x+r <= w) {\n yoko = true;\n } else {\n yoko = false;\n }\n\n if (y-r >= 0 && y+r <= h) {\n tate = true;\n } else {\n tate = false;\n }\n if (yoko == true && tate == true) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "Main", "public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int w = scan.nextInt();\n int h = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n boolean yoko;\n boolean tate;\n if (x-r >= 0 && x+r <= w) {\n yoko = true;\n } else {\n yoko = false;\n }\n\n if (y-r >= 0 && y+r <= h) {\n tate = true;\n } else {\n tate = false;\n }\n if (yoko == true && tate == true) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }", "main", "{\n Scanner scan = new Scanner(System.in);\n int w = scan.nextInt();\n int h = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n boolean yoko;\n boolean tate;\n if (x-r >= 0 && x+r <= w) {\n yoko = true;\n } else {\n yoko = false;\n }\n\n if (y-r >= 0 && y+r <= h) {\n tate = true;\n } else {\n tate = false;\n }\n if (yoko == true && tate == true) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int w = scan.nextInt();", "w", "scan.nextInt()", "scan.nextInt", "scan", "int h = scan.nextInt();", "h", "scan.nextInt()", "scan.nextInt", "scan", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "int y = scan.nextInt();", "y", "scan.nextInt()", "scan.nextInt", "scan", "int r = scan.nextInt();", "r", "scan.nextInt()", "scan.nextInt", "scan", "boolean yoko;", "yoko", "boolean tate;", "tate", "if (x-r >= 0 && x+r <= w) {\n yoko = true;\n } else {\n yoko = false;\n }", "x-r >= 0 && x+r <= w", "x-r >= 0", "x-r", "x", "r", "0", "x+r <= w", "x+r", "x", "r", "w", "{\n yoko = true;\n }", "yoko = true", "yoko", "true", "{\n yoko = false;\n }", "yoko = false", "yoko", "false", "if (y-r >= 0 && y+r <= h) {\n tate = true;\n } else {\n tate = false;\n }", "y-r >= 0 && y+r <= h", "y-r >= 0", "y-r", "y", "r", "0", "y+r <= h", "y+r", "y", "r", "h", "{\n tate = true;\n }", "tate = true", "tate", "true", "{\n tate = false;\n }", "tate = false", "tate", "false", "if (yoko == true && tate == true) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }", "yoko == true && tate == true", "yoko == true", "yoko", "true", "tate == true", "tate", "true", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int w = scan.nextInt();\n int h = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n boolean yoko;\n boolean tate;\n if (x-r >= 0 && x+r <= w) {\n yoko = true;\n } else {\n yoko = false;\n }\n\n if (y-r >= 0 && y+r <= h) {\n tate = true;\n } else {\n tate = false;\n }\n if (yoko == true && tate == true) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "public class Main {\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n int w = scan.nextInt();\n int h = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n boolean yoko;\n boolean tate;\n if (x-r >= 0 && x+r <= w) {\n yoko = true;\n } else {\n yoko = false;\n }\n\n if (y-r >= 0 && y+r <= h) {\n tate = true;\n } else {\n tate = false;\n }\n if (yoko == true && tate == true) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int w = scan.nextInt(); int h = scan.nextInt(); int x = scan.nextInt(); int y = scan.nextInt(); int r = scan.nextInt(); boolean yoko; boolean tate; if (x-r >= 0 && x+r <= w) { yoko = true; } else { yoko = false; } if (y-r >= 0 && y+r <= h) { tate = true; } else { tate = false; } if (yoko == true && tate == true) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 14, 2, 2, 2, 2, 13, 13, 2, 13, 17, 2, 13, 13, 2, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 39, 41 ], [ 8, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 44, 46 ], [ 8, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 49, 51 ], [ 8, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 8, 57 ], [ 57, 58 ], [ 60, 59 ], [ 67, 60 ], [ 60, 61 ], [ 61, 62 ], [ 61, 63 ], [ 60, 64 ], [ 64, 65 ], [ 64, 66 ], [ 67, 67 ], [ 67, 68 ], [ 67, 69 ], [ 60, 70 ], [ 70, 71 ], [ 70, 72 ], [ 57, 73 ], [ 73, 74 ], [ 74, 75 ], [ 75, 76 ], [ 75, 77 ], [ 73, 78 ], [ 57, 79 ], [ 79, 80 ], [ 80, 81 ], [ 81, 82 ], [ 81, 83 ], [ 79, 84 ], [ 6, 85 ], [ 85, 86 ] ]
[ "import java.util.Scanner;\nclass Main{\n public static void main(String[] args){\n\tScanner sc=new Scanner(System.in);\n\tint W=sc.nextInt();\n\tint H=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tint top=r+y;\n\tint down=y-r;\n\tint right=x+r;\n\tint left=x-r;\n\tif(top>H||down<0||right>W||left<0)\n\t System.out.println(\"No\");\n\telse System.out.println(\"Yes\");\n\t\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main{\n public static void main(String[] args){\n\tScanner sc=new Scanner(System.in);\n\tint W=sc.nextInt();\n\tint H=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tint top=r+y;\n\tint down=y-r;\n\tint right=x+r;\n\tint left=x-r;\n\tif(top>H||down<0||right>W||left<0)\n\t System.out.println(\"No\");\n\telse System.out.println(\"Yes\");\n\t\n }\n}", "Main", "public static void main(String[] args){\n\tScanner sc=new Scanner(System.in);\n\tint W=sc.nextInt();\n\tint H=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tint top=r+y;\n\tint down=y-r;\n\tint right=x+r;\n\tint left=x-r;\n\tif(top>H||down<0||right>W||left<0)\n\t System.out.println(\"No\");\n\telse System.out.println(\"Yes\");\n\t\n }", "main", "{\n\tScanner sc=new Scanner(System.in);\n\tint W=sc.nextInt();\n\tint H=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tint top=r+y;\n\tint down=y-r;\n\tint right=x+r;\n\tint left=x-r;\n\tif(top>H||down<0||right>W||left<0)\n\t System.out.println(\"No\");\n\telse System.out.println(\"Yes\");\n\t\n }", "Scanner sc=new Scanner(System.in);", "sc", "new Scanner(System.in)", "int W=sc.nextInt();", "W", "sc.nextInt()", "sc.nextInt", "sc", "int H=sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x=sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y=sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r=sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "int top=r+y;", "top", "r+y", "r", "y", "int down=y-r;", "down", "y-r", "y", "r", "int right=x+r;", "right", "x+r", "x", "r", "int left=x-r;", "left", "x-r", "x", "r", "if(top>H||down<0||right>W||left<0)\n\t System.out.println(\"No\");\n\telse System.out.println(\"Yes\");", "top>H||down<0||right>W||left<0", "right>W", "top>H||down<0||right>W||left<0", "top>H", "top", "H", "down<0", "down", "0", "right>W", "right", "W", "left<0", "left", "0", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args" ]
import java.util.Scanner; class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); int W=sc.nextInt(); int H=sc.nextInt(); int x=sc.nextInt(); int y=sc.nextInt(); int r=sc.nextInt(); int top=r+y; int down=y-r; int right=x+r; int left=x-r; if(top>H||down<0||right>W||left<0) System.out.println("No"); else System.out.println("Yes"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 30, 0, 13, 17, 4, 18, 18, 13, 13, 13, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 95, 5 ], [ 95, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 14, 17 ], [ 17, 18 ], [ 18, 19 ], [ 8, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 25, 26 ], [ 26, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 30, 33 ], [ 33, 34 ], [ 34, 35 ], [ 8, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 38, 41 ], [ 41, 42 ], [ 42, 43 ], [ 8, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 49, 50 ], [ 50, 51 ], [ 8, 52 ], [ 52, 53 ], [ 52, 54 ], [ 8, 55 ], [ 55, 56 ], [ 58, 57 ], [ 69, 58 ], [ 58, 59 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 59, 63 ], [ 58, 64 ], [ 64, 65 ], [ 65, 66 ], [ 65, 67 ], [ 64, 68 ], [ 69, 69 ], [ 69, 70 ], [ 70, 71 ], [ 70, 72 ], [ 69, 73 ], [ 58, 74 ], [ 74, 75 ], [ 75, 76 ], [ 75, 77 ], [ 74, 78 ], [ 55, 79 ], [ 79, 80 ], [ 80, 81 ], [ 80, 82 ], [ 8, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 85, 87 ], [ 83, 88 ], [ 8, 89 ], [ 89, 90 ], [ 90, 91 ], [ 6, 92 ], [ 92, 93 ], [ 0, 94 ], [ 94, 95 ], [ 94, 96 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner scaner = new Scanner( System.in );\n\n\t\tint width \t= Integer.parseInt( scaner.next() );\n\t\tint height \t= Integer.parseInt( scaner.next() );\n\t\tint x\t\t= Integer.parseInt( scaner.next() );\n\t\tint y\t\t= Integer.parseInt( scaner.next() );\n\t\tint r\t\t= Integer.parseInt( scaner.next() );\n\n\t\tString resultMessage = \"No\";\n\n\t\tif ( ( x - r >= 0 ) && ( x + r <= width ) && ( y + r ) <= height && ( y - r) >= 0 ) {\n\t\t\tresultMessage = \"Yes\";\n\t\t}\n\n\t\tSystem.out.println( resultMessage );\n\n\t\tscaner.close();\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner scaner = new Scanner( System.in );\n\n\t\tint width \t= Integer.parseInt( scaner.next() );\n\t\tint height \t= Integer.parseInt( scaner.next() );\n\t\tint x\t\t= Integer.parseInt( scaner.next() );\n\t\tint y\t\t= Integer.parseInt( scaner.next() );\n\t\tint r\t\t= Integer.parseInt( scaner.next() );\n\n\t\tString resultMessage = \"No\";\n\n\t\tif ( ( x - r >= 0 ) && ( x + r <= width ) && ( y + r ) <= height && ( y - r) >= 0 ) {\n\t\t\tresultMessage = \"Yes\";\n\t\t}\n\n\t\tSystem.out.println( resultMessage );\n\n\t\tscaner.close();\n\t}\n}", "Main", "public static void main(String[] args) {\n\n\t\tScanner scaner = new Scanner( System.in );\n\n\t\tint width \t= Integer.parseInt( scaner.next() );\n\t\tint height \t= Integer.parseInt( scaner.next() );\n\t\tint x\t\t= Integer.parseInt( scaner.next() );\n\t\tint y\t\t= Integer.parseInt( scaner.next() );\n\t\tint r\t\t= Integer.parseInt( scaner.next() );\n\n\t\tString resultMessage = \"No\";\n\n\t\tif ( ( x - r >= 0 ) && ( x + r <= width ) && ( y + r ) <= height && ( y - r) >= 0 ) {\n\t\t\tresultMessage = \"Yes\";\n\t\t}\n\n\t\tSystem.out.println( resultMessage );\n\n\t\tscaner.close();\n\t}", "main", "{\n\n\t\tScanner scaner = new Scanner( System.in );\n\n\t\tint width \t= Integer.parseInt( scaner.next() );\n\t\tint height \t= Integer.parseInt( scaner.next() );\n\t\tint x\t\t= Integer.parseInt( scaner.next() );\n\t\tint y\t\t= Integer.parseInt( scaner.next() );\n\t\tint r\t\t= Integer.parseInt( scaner.next() );\n\n\t\tString resultMessage = \"No\";\n\n\t\tif ( ( x - r >= 0 ) && ( x + r <= width ) && ( y + r ) <= height && ( y - r) >= 0 ) {\n\t\t\tresultMessage = \"Yes\";\n\t\t}\n\n\t\tSystem.out.println( resultMessage );\n\n\t\tscaner.close();\n\t}", "Scanner scaner = new Scanner( System.in );", "scaner", "new Scanner( System.in )", "int width \t= Integer.parseInt( scaner.next() );", "width", "Integer.parseInt( scaner.next() )", "Integer.parseInt", "Integer", "scaner.next()", "scaner.next", "scaner", "int height \t= Integer.parseInt( scaner.next() );", "height", "Integer.parseInt( scaner.next() )", "Integer.parseInt", "Integer", "scaner.next()", "scaner.next", "scaner", "int x\t\t= Integer.parseInt( scaner.next() );", "x", "Integer.parseInt( scaner.next() )", "Integer.parseInt", "Integer", "scaner.next()", "scaner.next", "scaner", "int y\t\t= Integer.parseInt( scaner.next() );", "y", "Integer.parseInt( scaner.next() )", "Integer.parseInt", "Integer", "scaner.next()", "scaner.next", "scaner", "int r\t\t= Integer.parseInt( scaner.next() );", "r", "Integer.parseInt( scaner.next() )", "Integer.parseInt", "Integer", "scaner.next()", "scaner.next", "scaner", "String resultMessage = \"No\";", "resultMessage", "\"No\"", "if ( ( x - r >= 0 ) && ( x + r <= width ) && ( y + r ) <= height && ( y - r) >= 0 ) {\n\t\t\tresultMessage = \"Yes\";\n\t\t}", "( x - r >= 0 ) && ( x + r <= width ) && ( y + r ) <= height && ( y - r) >= 0", "( y + r ) <= height", "( x - r >= 0 ) && ( x + r <= width ) && ( y + r ) <= height && ( y - r) >= 0", "( x - r >= 0 )", "x - r", "x", "r", "0", "( x + r <= width )", "x + r", "x", "r", "width", "( y + r ) <= height", "( y + r )", "y", "r", "height", "( y - r) >= 0", "( y - r)", "y", "r", "0", "{\n\t\t\tresultMessage = \"Yes\";\n\t\t}", "resultMessage = \"Yes\"", "resultMessage", "\"Yes\"", "System.out.println( resultMessage )", "System.out.println", "System.out", "System", "System.out", "resultMessage", "scaner.close()", "scaner.close", "scaner", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner scaner = new Scanner( System.in );\n\n\t\tint width \t= Integer.parseInt( scaner.next() );\n\t\tint height \t= Integer.parseInt( scaner.next() );\n\t\tint x\t\t= Integer.parseInt( scaner.next() );\n\t\tint y\t\t= Integer.parseInt( scaner.next() );\n\t\tint r\t\t= Integer.parseInt( scaner.next() );\n\n\t\tString resultMessage = \"No\";\n\n\t\tif ( ( x - r >= 0 ) && ( x + r <= width ) && ( y + r ) <= height && ( y - r) >= 0 ) {\n\t\t\tresultMessage = \"Yes\";\n\t\t}\n\n\t\tSystem.out.println( resultMessage );\n\n\t\tscaner.close();\n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\tScanner scaner = new Scanner( System.in );\n\n\t\tint width \t= Integer.parseInt( scaner.next() );\n\t\tint height \t= Integer.parseInt( scaner.next() );\n\t\tint x\t\t= Integer.parseInt( scaner.next() );\n\t\tint y\t\t= Integer.parseInt( scaner.next() );\n\t\tint r\t\t= Integer.parseInt( scaner.next() );\n\n\t\tString resultMessage = \"No\";\n\n\t\tif ( ( x - r >= 0 ) && ( x + r <= width ) && ( y + r ) <= height && ( y - r) >= 0 ) {\n\t\t\tresultMessage = \"Yes\";\n\t\t}\n\n\t\tSystem.out.println( resultMessage );\n\n\t\tscaner.close();\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scaner = new Scanner( System.in ); int width = Integer.parseInt( scaner.next() ); int height = Integer.parseInt( scaner.next() ); int x = Integer.parseInt( scaner.next() ); int y = Integer.parseInt( scaner.next() ); int r = Integer.parseInt( scaner.next() ); String resultMessage = "No"; if ( ( x - r >= 0 ) && ( x + r <= width ) && ( y + r ) <= height && ( y - r) >= 0 ) { resultMessage = "Yes"; } System.out.println( resultMessage ); scaner.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, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 14, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 30, 14, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 101, 5 ], [ 101, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 14, 17 ], [ 17, 18 ], [ 18, 19 ], [ 8, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 25, 26 ], [ 26, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 30, 33 ], [ 33, 34 ], [ 34, 35 ], [ 8, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 38, 41 ], [ 41, 42 ], [ 42, 43 ], [ 8, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 49, 50 ], [ 50, 51 ], [ 8, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 54, 58 ], [ 53, 59 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 59, 63 ], [ 52, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 67, 71 ], [ 66, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 76 ], [ 65, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 80, 82 ], [ 78, 83 ], [ 65, 84 ], [ 84, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 85, 90 ], [ 52, 91 ], [ 91, 92 ], [ 92, 93 ], [ 93, 94 ], [ 94, 95 ], [ 94, 96 ], [ 92, 97 ], [ 6, 98 ], [ 98, 99 ], [ 0, 100 ], [ 100, 101 ], [ 100, 102 ] ]
[ "import java.util.Scanner;\n \npublic class Main {\n\t\n public static void main(String[] args) {\n\t Scanner sc=new Scanner(System.in);\n\t int W=Integer.parseInt(sc.next());\n\t int H=Integer.parseInt(sc.next());\n\t int x=Integer.parseInt(sc.next());\n\t int y=Integer.parseInt(sc.next());\n\t int r=Integer.parseInt(sc.next());\n\t \n\t \n\t if(y+r<=H&&y-r>=0){\n\t\t if(x+r<=W&&x-r>=0){\n\t\t\t System.out.println(\"Yes\");\n\t\t }\n\t\t else{\n\t\t\t System.out.println(\"No\");\n\t\t }\n\t }\n\t else{\n\t\t System.out.println(\"No\");\n\t }\n\t \n \n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\t\n public static void main(String[] args) {\n\t Scanner sc=new Scanner(System.in);\n\t int W=Integer.parseInt(sc.next());\n\t int H=Integer.parseInt(sc.next());\n\t int x=Integer.parseInt(sc.next());\n\t int y=Integer.parseInt(sc.next());\n\t int r=Integer.parseInt(sc.next());\n\t \n\t \n\t if(y+r<=H&&y-r>=0){\n\t\t if(x+r<=W&&x-r>=0){\n\t\t\t System.out.println(\"Yes\");\n\t\t }\n\t\t else{\n\t\t\t System.out.println(\"No\");\n\t\t }\n\t }\n\t else{\n\t\t System.out.println(\"No\");\n\t }\n\t \n \n }\n}", "Main", "public static void main(String[] args) {\n\t Scanner sc=new Scanner(System.in);\n\t int W=Integer.parseInt(sc.next());\n\t int H=Integer.parseInt(sc.next());\n\t int x=Integer.parseInt(sc.next());\n\t int y=Integer.parseInt(sc.next());\n\t int r=Integer.parseInt(sc.next());\n\t \n\t \n\t if(y+r<=H&&y-r>=0){\n\t\t if(x+r<=W&&x-r>=0){\n\t\t\t System.out.println(\"Yes\");\n\t\t }\n\t\t else{\n\t\t\t System.out.println(\"No\");\n\t\t }\n\t }\n\t else{\n\t\t System.out.println(\"No\");\n\t }\n\t \n \n }", "main", "{\n\t Scanner sc=new Scanner(System.in);\n\t int W=Integer.parseInt(sc.next());\n\t int H=Integer.parseInt(sc.next());\n\t int x=Integer.parseInt(sc.next());\n\t int y=Integer.parseInt(sc.next());\n\t int r=Integer.parseInt(sc.next());\n\t \n\t \n\t if(y+r<=H&&y-r>=0){\n\t\t if(x+r<=W&&x-r>=0){\n\t\t\t System.out.println(\"Yes\");\n\t\t }\n\t\t else{\n\t\t\t System.out.println(\"No\");\n\t\t }\n\t }\n\t else{\n\t\t System.out.println(\"No\");\n\t }\n\t \n \n }", "Scanner sc=new Scanner(System.in);", "sc", "new Scanner(System.in)", "int W=Integer.parseInt(sc.next());", "W", "Integer.parseInt(sc.next())", "Integer.parseInt", "Integer", "sc.next()", "sc.next", "sc", "int H=Integer.parseInt(sc.next());", "H", "Integer.parseInt(sc.next())", "Integer.parseInt", "Integer", "sc.next()", "sc.next", "sc", "int x=Integer.parseInt(sc.next());", "x", "Integer.parseInt(sc.next())", "Integer.parseInt", "Integer", "sc.next()", "sc.next", "sc", "int y=Integer.parseInt(sc.next());", "y", "Integer.parseInt(sc.next())", "Integer.parseInt", "Integer", "sc.next()", "sc.next", "sc", "int r=Integer.parseInt(sc.next());", "r", "Integer.parseInt(sc.next())", "Integer.parseInt", "Integer", "sc.next()", "sc.next", "sc", "if(y+r<=H&&y-r>=0){\n\t\t if(x+r<=W&&x-r>=0){\n\t\t\t System.out.println(\"Yes\");\n\t\t }\n\t\t else{\n\t\t\t System.out.println(\"No\");\n\t\t }\n\t }\n\t else{\n\t\t System.out.println(\"No\");\n\t }", "y+r<=H&&y-r>=0", "y+r<=H", "y+r", "y", "r", "H", "y-r>=0", "y-r", "y", "r", "0", "{\n\t\t if(x+r<=W&&x-r>=0){\n\t\t\t System.out.println(\"Yes\");\n\t\t }\n\t\t else{\n\t\t\t System.out.println(\"No\");\n\t\t }\n\t }", "if(x+r<=W&&x-r>=0){\n\t\t\t System.out.println(\"Yes\");\n\t\t }\n\t\t else{\n\t\t\t System.out.println(\"No\");\n\t\t }", "x+r<=W&&x-r>=0", "x+r<=W", "x+r", "x", "r", "W", "x-r>=0", "x-r", "x", "r", "0", "{\n\t\t\t System.out.println(\"Yes\");\n\t\t }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\t System.out.println(\"No\");\n\t\t }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n\t\t System.out.println(\"No\");\n\t }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\t\n public static void main(String[] args) {\n\t Scanner sc=new Scanner(System.in);\n\t int W=Integer.parseInt(sc.next());\n\t int H=Integer.parseInt(sc.next());\n\t int x=Integer.parseInt(sc.next());\n\t int y=Integer.parseInt(sc.next());\n\t int r=Integer.parseInt(sc.next());\n\t \n\t \n\t if(y+r<=H&&y-r>=0){\n\t\t if(x+r<=W&&x-r>=0){\n\t\t\t System.out.println(\"Yes\");\n\t\t }\n\t\t else{\n\t\t\t System.out.println(\"No\");\n\t\t }\n\t }\n\t else{\n\t\t System.out.println(\"No\");\n\t }\n\t \n \n }\n}", "public class Main {\n\t\n public static void main(String[] args) {\n\t Scanner sc=new Scanner(System.in);\n\t int W=Integer.parseInt(sc.next());\n\t int H=Integer.parseInt(sc.next());\n\t int x=Integer.parseInt(sc.next());\n\t int y=Integer.parseInt(sc.next());\n\t int r=Integer.parseInt(sc.next());\n\t \n\t \n\t if(y+r<=H&&y-r>=0){\n\t\t if(x+r<=W&&x-r>=0){\n\t\t\t System.out.println(\"Yes\");\n\t\t }\n\t\t else{\n\t\t\t System.out.println(\"No\");\n\t\t }\n\t }\n\t else{\n\t\t System.out.println(\"No\");\n\t }\n\t \n \n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int W=Integer.parseInt(sc.next()); int H=Integer.parseInt(sc.next()); int x=Integer.parseInt(sc.next()); int y=Integer.parseInt(sc.next()); int r=Integer.parseInt(sc.next()); if(y+r<=H&&y-r>=0){ if(x+r<=W&&x-r>=0){ System.out.println("Yes"); } else{ System.out.println("No"); } } else{ System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 30, 14, 2, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 41, 43 ], [ 38, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 44, 48 ], [ 37, 49 ], [ 49, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 51, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 57, 61 ], [ 50, 62 ], [ 62, 63 ], [ 63, 64 ], [ 64, 65 ], [ 65, 66 ], [ 65, 67 ], [ 63, 68 ], [ 50, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 70, 75 ], [ 37, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 79, 81 ], [ 77, 82 ], [ 6, 83 ], [ 83, 84 ] ]
[ "import java.util.Scanner;\nclass Main {\n\tpublic static void main(String[] args) {\n\t\tScanner kb = new Scanner( System.in);\n\n\t\tint W = kb.nextInt();\n\t\tint H = kb.nextInt();\n\t\tint x = kb.nextInt();\n\t\tint y = kb.nextInt();\n\t\tint r = kb.nextInt();\n\t\t\n\t\t\n\t\tif( 0<=(x-r) && (x+r)<=W ) {\n\t\t\tif( 0<=(y-r) && (y+r)<=H ) {\n\t\t\t\tSystem.out.println( \"Yes\" );\t\n\t\t\t} else {\n\t\t\t\tSystem.out.println( \"No\" );\n\t\t\t}\n\t\t} else {\n\t\t\tSystem.out.println( \"No\" );\t\n\t\t}\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner kb = new Scanner( System.in);\n\n\t\tint W = kb.nextInt();\n\t\tint H = kb.nextInt();\n\t\tint x = kb.nextInt();\n\t\tint y = kb.nextInt();\n\t\tint r = kb.nextInt();\n\t\t\n\t\t\n\t\tif( 0<=(x-r) && (x+r)<=W ) {\n\t\t\tif( 0<=(y-r) && (y+r)<=H ) {\n\t\t\t\tSystem.out.println( \"Yes\" );\t\n\t\t\t} else {\n\t\t\t\tSystem.out.println( \"No\" );\n\t\t\t}\n\t\t} else {\n\t\t\tSystem.out.println( \"No\" );\t\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tScanner kb = new Scanner( System.in);\n\n\t\tint W = kb.nextInt();\n\t\tint H = kb.nextInt();\n\t\tint x = kb.nextInt();\n\t\tint y = kb.nextInt();\n\t\tint r = kb.nextInt();\n\t\t\n\t\t\n\t\tif( 0<=(x-r) && (x+r)<=W ) {\n\t\t\tif( 0<=(y-r) && (y+r)<=H ) {\n\t\t\t\tSystem.out.println( \"Yes\" );\t\n\t\t\t} else {\n\t\t\t\tSystem.out.println( \"No\" );\n\t\t\t}\n\t\t} else {\n\t\t\tSystem.out.println( \"No\" );\t\n\t\t}\n\t}", "main", "{\n\t\tScanner kb = new Scanner( System.in);\n\n\t\tint W = kb.nextInt();\n\t\tint H = kb.nextInt();\n\t\tint x = kb.nextInt();\n\t\tint y = kb.nextInt();\n\t\tint r = kb.nextInt();\n\t\t\n\t\t\n\t\tif( 0<=(x-r) && (x+r)<=W ) {\n\t\t\tif( 0<=(y-r) && (y+r)<=H ) {\n\t\t\t\tSystem.out.println( \"Yes\" );\t\n\t\t\t} else {\n\t\t\t\tSystem.out.println( \"No\" );\n\t\t\t}\n\t\t} else {\n\t\t\tSystem.out.println( \"No\" );\t\n\t\t}\n\t}", "Scanner kb = new Scanner( System.in);", "kb", "new Scanner( System.in)", "int W = kb.nextInt();", "W", "kb.nextInt()", "kb.nextInt", "kb", "int H = kb.nextInt();", "H", "kb.nextInt()", "kb.nextInt", "kb", "int x = kb.nextInt();", "x", "kb.nextInt()", "kb.nextInt", "kb", "int y = kb.nextInt();", "y", "kb.nextInt()", "kb.nextInt", "kb", "int r = kb.nextInt();", "r", "kb.nextInt()", "kb.nextInt", "kb", "if( 0<=(x-r) && (x+r)<=W ) {\n\t\t\tif( 0<=(y-r) && (y+r)<=H ) {\n\t\t\t\tSystem.out.println( \"Yes\" );\t\n\t\t\t} else {\n\t\t\t\tSystem.out.println( \"No\" );\n\t\t\t}\n\t\t} else {\n\t\t\tSystem.out.println( \"No\" );\t\n\t\t}", "0<=(x-r) && (x+r)<=W", "0<=(x-r)", "0", "(x-r)", "x", "r", "(x+r)<=W", "(x+r)", "x", "r", "W", "{\n\t\t\tif( 0<=(y-r) && (y+r)<=H ) {\n\t\t\t\tSystem.out.println( \"Yes\" );\t\n\t\t\t} else {\n\t\t\t\tSystem.out.println( \"No\" );\n\t\t\t}\n\t\t}", "if( 0<=(y-r) && (y+r)<=H ) {\n\t\t\t\tSystem.out.println( \"Yes\" );\t\n\t\t\t} else {\n\t\t\t\tSystem.out.println( \"No\" );\n\t\t\t}", "0<=(y-r) && (y+r)<=H", "0<=(y-r)", "0", "(y-r)", "y", "r", "(y+r)<=H", "(y+r)", "y", "r", "H", "{\n\t\t\t\tSystem.out.println( \"Yes\" );\t\n\t\t\t}", "System.out.println( \"Yes\" )", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\t\tSystem.out.println( \"No\" );\n\t\t\t}", "System.out.println( \"No\" )", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n\t\t\tSystem.out.println( \"No\" );\t\n\t\t}", "System.out.println( \"No\" )", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args" ]
import java.util.Scanner; class Main { public static void main(String[] args) { Scanner kb = new Scanner( System.in); int W = kb.nextInt(); int H = kb.nextInt(); int x = kb.nextInt(); int y = kb.nextInt(); int r = kb.nextInt(); if( 0<=(x-r) && (x+r)<=W ) { if( 0<=(y-r) && (y+r)<=H ) { System.out.println( "Yes" ); } else { System.out.println( "No" ); } } else { System.out.println( "No" ); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 17, 41, 13, 17, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 13, 13, 17, 30, 14, 2, 2, 13, 13, 17, 30, 14, 2, 2, 2, 13, 13, 13, 17, 30, 14, 2, 2, 2, 13, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 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 ], [ 8, 15 ], [ 15, 16 ], [ 15, 17 ], [ 8, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 8, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 8, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 36, 37 ], [ 8, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 8, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 44, 48 ], [ 43, 49 ], [ 49, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 50, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 59, 63 ], [ 58, 64 ], [ 57, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 68, 72 ], [ 67, 73 ], [ 66, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 75, 80 ], [ 66, 81 ], [ 81, 82 ], [ 82, 83 ], [ 83, 84 ], [ 84, 85 ], [ 84, 86 ], [ 82, 87 ], [ 57, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 91, 92 ], [ 91, 93 ], [ 89, 94 ], [ 50, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 98, 99 ], [ 98, 100 ], [ 96, 101 ], [ 43, 102 ], [ 102, 103 ], [ 103, 104 ], [ 104, 105 ], [ 105, 106 ], [ 105, 107 ], [ 103, 108 ], [ 4, 109 ], [ 109, 110 ], [ 109, 111 ], [ 111, 112 ], [ 112, 113 ], [ 113, 114 ], [ 109, 115 ], [ 115, 116 ] ]
[ "import java.util.Scanner;\nclass Main {\n\tpublic void ci() {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x0 = 0,y0 = 0;\n\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tif(x - r >= 0) {\n\t\t\tif(y - r >= 0) {\n\t\t\t\tif(x + r - W <= 0) {\n\t\t\t\t\tif(y + r - H <= 0) {\n\t\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\t} else {\n\t\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\t}\n\t\t\t\t} else { \n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n\tpublic static void main(String[] args) {\n\t\tnew Main().ci();\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main {\n\tpublic void ci() {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x0 = 0,y0 = 0;\n\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tif(x - r >= 0) {\n\t\t\tif(y - r >= 0) {\n\t\t\t\tif(x + r - W <= 0) {\n\t\t\t\t\tif(y + r - H <= 0) {\n\t\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\t} else {\n\t\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\t}\n\t\t\t\t} else { \n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n\tpublic static void main(String[] args) {\n\t\tnew Main().ci();\n\t}\n}", "Main", "public void ci() {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x0 = 0,y0 = 0;\n\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tif(x - r >= 0) {\n\t\t\tif(y - r >= 0) {\n\t\t\t\tif(x + r - W <= 0) {\n\t\t\t\t\tif(y + r - H <= 0) {\n\t\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\t} else {\n\t\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\t}\n\t\t\t\t} else { \n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}", "ci", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint x0 = 0,y0 = 0;\n\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tif(x - r >= 0) {\n\t\t\tif(y - r >= 0) {\n\t\t\t\tif(x + r - W <= 0) {\n\t\t\t\t\tif(y + r - H <= 0) {\n\t\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\t} else {\n\t\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\t}\n\t\t\t\t} else { \n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int x0 = 0", "x0", "0", "y0 = 0;", "y0", "0", "int W = sc.nextInt();", "W", "sc.nextInt()", "sc.nextInt", "sc", "int H = sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "if(x - r >= 0) {\n\t\t\tif(y - r >= 0) {\n\t\t\t\tif(x + r - W <= 0) {\n\t\t\t\t\tif(y + r - H <= 0) {\n\t\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\t} else {\n\t\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\t}\n\t\t\t\t} else { \n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "x - r >= 0", "x - r", "x", "r", "0", "{\n\t\t\tif(y - r >= 0) {\n\t\t\t\tif(x + r - W <= 0) {\n\t\t\t\t\tif(y + r - H <= 0) {\n\t\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\t} else {\n\t\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\t}\n\t\t\t\t} else { \n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}\n\t\t}", "if(y - r >= 0) {\n\t\t\t\tif(x + r - W <= 0) {\n\t\t\t\t\tif(y + r - H <= 0) {\n\t\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\t} else {\n\t\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\t}\n\t\t\t\t} else { \n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}", "y - r >= 0", "y - r", "y", "r", "0", "{\n\t\t\t\tif(x + r - W <= 0) {\n\t\t\t\t\tif(y + r - H <= 0) {\n\t\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\t} else {\n\t\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\t}\n\t\t\t\t} else { \n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}\n\t\t\t}", "if(x + r - W <= 0) {\n\t\t\t\t\tif(y + r - H <= 0) {\n\t\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\t} else {\n\t\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\t}\n\t\t\t\t} else { \n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}", "x + r - W <= 0", "x + r - W", "x + r", "x", "r", "W", "0", "{\n\t\t\t\t\tif(y + r - H <= 0) {\n\t\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\t} else {\n\t\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\t}\n\t\t\t\t}", "if(y + r - H <= 0) {\n\t\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\t} else {\n\t\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\t}", "y + r - H <= 0", "y + r - H", "y + r", "y", "r", "H", "0", "{\n\t\t\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{ \n\t\t\t\t\tSystem.out.println(\"No\");\n\t\t\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "public static void main(String[] args) {\n\t\tnew Main().ci();\n\t}", "main", "{\n\t\tnew Main().ci();\n\t}", "new Main().ci()", "new Main().ci", "new Main()", "String[] args", "args" ]
import java.util.Scanner; class Main { public void ci() { Scanner sc = new Scanner(System.in); int x0 = 0,y0 = 0; int W = sc.nextInt(); int H = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int r = sc.nextInt(); if(x - r >= 0) { if(y - r >= 0) { if(x + r - W <= 0) { if(y + r - H <= 0) { System.out.println("Yes"); } else { System.out.println("No"); } } else { System.out.println("No"); } } else { System.out.println("No"); } } else { System.out.println("No"); } } public static void main(String[] args) { new Main().ci(); } }
[ 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, 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, 14, 2, 2, 2, 2, 2, 18, 13, 17, 18, 13, 17, 17, 2, 2, 18, 13, 17, 18, 13, 17, 17, 2, 2, 18, 13, 17, 18, 13, 17, 18, 13, 17, 2, 2, 18, 13, 17, 18, 13, 17, 18, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 118, 11 ], [ 118, 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 ], [ 29, 30 ], [ 29, 31 ], [ 14, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 34, 36 ], [ 32, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 39, 41 ], [ 32, 42 ], [ 42, 43 ], [ 43, 44 ], [ 32, 45 ], [ 46, 46 ], [ 46, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 47, 51 ], [ 51, 52 ], [ 52, 53 ], [ 51, 54 ], [ 54, 55 ], [ 54, 56 ], [ 14, 57 ], [ 57, 58 ], [ 60, 59 ], [ 79, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 62, 66 ], [ 66, 67 ], [ 66, 68 ], [ 61, 69 ], [ 60, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 71, 75 ], [ 75, 76 ], [ 75, 77 ], [ 70, 78 ], [ 79, 79 ], [ 79, 80 ], [ 80, 81 ], [ 81, 82 ], [ 81, 83 ], [ 80, 84 ], [ 84, 85 ], [ 84, 86 ], [ 79, 87 ], [ 87, 88 ], [ 87, 89 ], [ 60, 90 ], [ 90, 91 ], [ 91, 92 ], [ 92, 93 ], [ 92, 94 ], [ 91, 95 ], [ 95, 96 ], [ 95, 97 ], [ 90, 98 ], [ 98, 99 ], [ 98, 100 ], [ 57, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 104, 105 ], [ 104, 106 ], [ 102, 107 ], [ 57, 108 ], [ 108, 109 ], [ 109, 110 ], [ 110, 111 ], [ 111, 112 ], [ 111, 113 ], [ 109, 114 ], [ 12, 115 ], [ 115, 116 ], [ 0, 117 ], [ 117, 118 ], [ 117, 119 ] ]
[ "import java.util.*;\nimport java.lang.*;\nimport java.io.*;\n\n/* Name of the class has to be \"Main\" only if the class is public. */\npublic class Main\n//class Ideone\n{\n\tpublic static void main (String[] args) throws java.lang.Exception\n\t{\n\t\t// your code goes here\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String[] nums = stdReader.readLine().split(\" \");\n \n int[] a = new int[nums.length];\n \n for(int i = 0; i < nums.length; i++) {\n \ta[i] = Integer.parseInt(nums[i]);\n }\n \n if( (a[2] - a[4]) < 0 \t\t||\n \t(a[3] - a[4]) < 0\t\t||\n \t(a[2] + a[4]) > a[0] \t||\n \t(a[3] + a[4]) > a[1] \t){\n \tSystem.out.println(\"No\");\n } else {\n \tSystem.out.println(\"Yes\");\n }\n \n\t}\n}", "import java.util.*;", "util.*", "java", "import java.lang.*;", "lang.*", "java", "import java.io.*;", "io.*", "java", "public class Main\n//class Ideone\n{\n\tpublic static void main (String[] args) throws java.lang.Exception\n\t{\n\t\t// your code goes here\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String[] nums = stdReader.readLine().split(\" \");\n \n int[] a = new int[nums.length];\n \n for(int i = 0; i < nums.length; i++) {\n \ta[i] = Integer.parseInt(nums[i]);\n }\n \n if( (a[2] - a[4]) < 0 \t\t||\n \t(a[3] - a[4]) < 0\t\t||\n \t(a[2] + a[4]) > a[0] \t||\n \t(a[3] + a[4]) > a[1] \t){\n \tSystem.out.println(\"No\");\n } else {\n \tSystem.out.println(\"Yes\");\n }\n \n\t}\n}", "Main", "public static void main (String[] args) throws java.lang.Exception\n\t{\n\t\t// your code goes here\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String[] nums = stdReader.readLine().split(\" \");\n \n int[] a = new int[nums.length];\n \n for(int i = 0; i < nums.length; i++) {\n \ta[i] = Integer.parseInt(nums[i]);\n }\n \n if( (a[2] - a[4]) < 0 \t\t||\n \t(a[3] - a[4]) < 0\t\t||\n \t(a[2] + a[4]) > a[0] \t||\n \t(a[3] + a[4]) > a[1] \t){\n \tSystem.out.println(\"No\");\n } else {\n \tSystem.out.println(\"Yes\");\n }\n \n\t}", "main", "{\n\t\t// your code goes here\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String[] nums = stdReader.readLine().split(\" \");\n \n int[] a = new int[nums.length];\n \n for(int i = 0; i < nums.length; i++) {\n \ta[i] = Integer.parseInt(nums[i]);\n }\n \n if( (a[2] - a[4]) < 0 \t\t||\n \t(a[3] - a[4]) < 0\t\t||\n \t(a[2] + a[4]) > a[0] \t||\n \t(a[3] + a[4]) > a[1] \t){\n \tSystem.out.println(\"No\");\n } else {\n \tSystem.out.println(\"Yes\");\n }\n \n\t}", "BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));", "stdReader", "new BufferedReader(new InputStreamReader(System.in))", "String[] nums = stdReader.readLine().split(\" \");", "nums", "stdReader.readLine().split(\" \")", "stdReader.readLine().split", "stdReader.readLine()", "stdReader.readLine", "stdReader", "\" \"", "int[] a = new int[nums.length];", "a", "new int[nums.length]", "nums.length", "nums", "nums.length", "for(int i = 0; i < nums.length; i++) {\n \ta[i] = Integer.parseInt(nums[i]);\n }", "int i = 0;", "int i = 0;", "i", "0", "i < nums.length", "i", "nums.length", "nums", "nums.length", "i++", "i++", "i", "{\n \ta[i] = Integer.parseInt(nums[i]);\n }", "{\n \ta[i] = Integer.parseInt(nums[i]);\n }", "a[i] = Integer.parseInt(nums[i])", "a[i]", "a", "i", "Integer.parseInt(nums[i])", "Integer.parseInt", "Integer", "nums[i]", "nums", "i", "if( (a[2] - a[4]) < 0 \t\t||\n \t(a[3] - a[4]) < 0\t\t||\n \t(a[2] + a[4]) > a[0] \t||\n \t(a[3] + a[4]) > a[1] \t){\n \tSystem.out.println(\"No\");\n } else {\n \tSystem.out.println(\"Yes\");\n }", "(a[2] - a[4]) < 0 \t\t||\n \t(a[3] - a[4]) < 0\t\t||\n \t(a[2] + a[4]) > a[0] \t||\n \t(a[3] + a[4]) > a[1]", "(a[2] + a[4]) > a[0]", "(a[2] - a[4]) < 0 \t\t||\n \t(a[3] - a[4]) < 0\t\t||\n \t(a[2] + a[4]) > a[0] \t||\n \t(a[3] + a[4]) > a[1]", "(a[2] - a[4]) < 0", "(a[2] - a[4])", "a[2]", "a", "2", "a[4]", "a", "4", "0", "(a[3] - a[4]) < 0", "(a[3] - a[4])", "a[3]", "a", "3", "a[4]", "a", "4", "0", "(a[2] + a[4]) > a[0]", "(a[2] + a[4])", "a[2]", "a", "2", "a[4]", "a", "4", "a[0]", "a", "0", "(a[3] + a[4]) > a[1]", "(a[3] + a[4])", "a[3]", "a", "3", "a[4]", "a", "4", "a[1]", "a", "1", "{\n \tSystem.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n \tSystem.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main\n//class Ideone\n{\n\tpublic static void main (String[] args) throws java.lang.Exception\n\t{\n\t\t// your code goes here\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String[] nums = stdReader.readLine().split(\" \");\n \n int[] a = new int[nums.length];\n \n for(int i = 0; i < nums.length; i++) {\n \ta[i] = Integer.parseInt(nums[i]);\n }\n \n if( (a[2] - a[4]) < 0 \t\t||\n \t(a[3] - a[4]) < 0\t\t||\n \t(a[2] + a[4]) > a[0] \t||\n \t(a[3] + a[4]) > a[1] \t){\n \tSystem.out.println(\"No\");\n } else {\n \tSystem.out.println(\"Yes\");\n }\n \n\t}\n}", "public class Main\n//class Ideone\n{\n\tpublic static void main (String[] args) throws java.lang.Exception\n\t{\n\t\t// your code goes here\n BufferedReader stdReader =\n new BufferedReader(new InputStreamReader(System.in));\n String[] nums = stdReader.readLine().split(\" \");\n \n int[] a = new int[nums.length];\n \n for(int i = 0; i < nums.length; i++) {\n \ta[i] = Integer.parseInt(nums[i]);\n }\n \n if( (a[2] - a[4]) < 0 \t\t||\n \t(a[3] - a[4]) < 0\t\t||\n \t(a[2] + a[4]) > a[0] \t||\n \t(a[3] + a[4]) > a[1] \t){\n \tSystem.out.println(\"No\");\n } else {\n \tSystem.out.println(\"Yes\");\n }\n \n\t}\n}", "Main" ]
import java.util.*; import java.lang.*; import java.io.*; /* Name of the class has to be "Main" only if the class is public. */ public class Main //class Ideone { public static void main (String[] args) throws java.lang.Exception { // your code goes here BufferedReader stdReader = new BufferedReader(new InputStreamReader(System.in)); String[] nums = stdReader.readLine().split(" "); int[] a = new int[nums.length]; for(int i = 0; i < nums.length; i++) { a[i] = Integer.parseInt(nums[i]); } if( (a[2] - a[4]) < 0 || (a[3] - a[4]) < 0 || (a[2] + a[4]) > a[0] || (a[3] + a[4]) > a[1] ){ System.out.println("No"); } else { System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 2, 13, 13, 2, 13, 13, 2, 13, 17, 2, 13, 17, 2, 2, 13, 2, 17, 13, 17, 2, 2, 13, 2, 17, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 42, 39 ], [ 55, 40 ], [ 52, 41 ], [ 49, 42 ], [ 42, 43 ], [ 43, 44 ], [ 43, 45 ], [ 42, 46 ], [ 46, 47 ], [ 46, 48 ], [ 49, 49 ], [ 49, 50 ], [ 49, 51 ], [ 52, 52 ], [ 52, 53 ], [ 52, 54 ], [ 55, 55 ], [ 55, 56 ], [ 56, 57 ], [ 56, 58 ], [ 58, 59 ], [ 58, 60 ], [ 55, 61 ], [ 42, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 65, 66 ], [ 65, 67 ], [ 62, 68 ], [ 37, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 70, 75 ], [ 37, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 79, 81 ], [ 77, 82 ], [ 6, 83 ], [ 83, 84 ] ]
[ "import java.util.Scanner;\nclass Main\n {\n public static void main(String[] args)\n {\n Scanner S = new Scanner(System.in);\n int W = S.nextInt();\n int H = S.nextInt();\n int x = S.nextInt();\n int y = S.nextInt();\n int r = S.nextInt();\n if(W>x && H>y && x>0 && y>0 && W-2*r>=0 && H-2*r>=0){\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n}\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main\n {\n public static void main(String[] args)\n {\n Scanner S = new Scanner(System.in);\n int W = S.nextInt();\n int H = S.nextInt();\n int x = S.nextInt();\n int y = S.nextInt();\n int r = S.nextInt();\n if(W>x && H>y && x>0 && y>0 && W-2*r>=0 && H-2*r>=0){\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n}\n}", "Main", "public static void main(String[] args)\n {\n Scanner S = new Scanner(System.in);\n int W = S.nextInt();\n int H = S.nextInt();\n int x = S.nextInt();\n int y = S.nextInt();\n int r = S.nextInt();\n if(W>x && H>y && x>0 && y>0 && W-2*r>=0 && H-2*r>=0){\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n}", "main", "{\n Scanner S = new Scanner(System.in);\n int W = S.nextInt();\n int H = S.nextInt();\n int x = S.nextInt();\n int y = S.nextInt();\n int r = S.nextInt();\n if(W>x && H>y && x>0 && y>0 && W-2*r>=0 && H-2*r>=0){\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n}", "Scanner S = new Scanner(System.in);", "S", "new Scanner(System.in)", "int W = S.nextInt();", "W", "S.nextInt()", "S.nextInt", "S", "int H = S.nextInt();", "H", "S.nextInt()", "S.nextInt", "S", "int x = S.nextInt();", "x", "S.nextInt()", "S.nextInt", "S", "int y = S.nextInt();", "y", "S.nextInt()", "S.nextInt", "S", "int r = S.nextInt();", "r", "S.nextInt()", "S.nextInt", "S", "if(W>x && H>y && x>0 && y>0 && W-2*r>=0 && H-2*r>=0){\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }", "W>x && H>y && x>0 && y>0 && W-2*r>=0 && H-2*r>=0", "W-2*r>=0", "y>0", "x>0", "W>x && H>y && x>0 && y>0 && W-2*r>=0 && H-2*r>=0", "W>x", "W", "x", "H>y", "H", "y", "x>0", "x", "0", "y>0", "y", "0", "W-2*r>=0", "W-2*r", "W", "2*r", "2", "r", "0", "H-2*r>=0", "H-2*r", "H", "2*r", "2", "r", "0", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args" ]
import java.util.Scanner; class Main { public static void main(String[] args) { Scanner S = new Scanner(System.in); int W = S.nextInt(); int H = S.nextInt(); int x = S.nextInt(); int y = S.nextInt(); int r = S.nextInt(); if(W>x && H>y && x>0 && y>0 && W-2*r>=0 && H-2*r>=0){ System.out.println("Yes"); } else{ System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 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, 18, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 138, 5 ], [ 138, 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 ], [ 42, 43 ], [ 41, 44 ], [ 44, 45 ], [ 44, 46 ], [ 8, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 50, 51 ], [ 49, 52 ], [ 52, 53 ], [ 52, 54 ], [ 8, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 58, 59 ], [ 57, 60 ], [ 60, 61 ], [ 60, 62 ], [ 8, 63 ], [ 63, 64 ], [ 66, 65 ], [ 77, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 67, 71 ], [ 66, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 76 ], [ 77, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 77, 81 ], [ 66, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 82, 86 ], [ 63, 87 ], [ 87, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 88, 93 ], [ 63, 94 ], [ 94, 95 ], [ 97, 96 ], [ 108, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 99, 101 ], [ 98, 102 ], [ 97, 103 ], [ 103, 104 ], [ 104, 105 ], [ 104, 106 ], [ 103, 107 ], [ 108, 108 ], [ 108, 109 ], [ 109, 110 ], [ 109, 111 ], [ 108, 112 ], [ 97, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 113, 117 ], [ 94, 118 ], [ 118, 119 ], [ 119, 120 ], [ 120, 121 ], [ 121, 122 ], [ 121, 123 ], [ 119, 124 ], [ 94, 125 ], [ 125, 126 ], [ 126, 127 ], [ 127, 128 ], [ 128, 129 ], [ 128, 130 ], [ 126, 131 ], [ 8, 132 ], [ 132, 133 ], [ 133, 134 ], [ 6, 135 ], [ 135, 136 ], [ 0, 137 ], [ 137, 138 ], [ 137, 139 ] ]
[ "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[] strs = str.split(\" \");\n\t\tint W = Integer.parseInt(strs[0]);\n\t\tint H = Integer.parseInt(strs[1]);\n\t\tint x = Integer.parseInt(strs[2]);\n\t\tint y = Integer.parseInt(strs[3]);\n\t\tint r = Integer.parseInt(strs[4]);\n\t\tif((x - r) < 0 || (x + r) > W || (y - r) < 0 || (y + r) > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((x - r) >= 0 && (x + r) <= W && (y - r) >= 0 && (y + r) <= H){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}//if\n\t\tbr.close();\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[] strs = str.split(\" \");\n\t\tint W = Integer.parseInt(strs[0]);\n\t\tint H = Integer.parseInt(strs[1]);\n\t\tint x = Integer.parseInt(strs[2]);\n\t\tint y = Integer.parseInt(strs[3]);\n\t\tint r = Integer.parseInt(strs[4]);\n\t\tif((x - r) < 0 || (x + r) > W || (y - r) < 0 || (y + r) > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((x - r) >= 0 && (x + r) <= W && (y - r) >= 0 && (y + r) <= H){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}//if\n\t\tbr.close();\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[] strs = str.split(\" \");\n\t\tint W = Integer.parseInt(strs[0]);\n\t\tint H = Integer.parseInt(strs[1]);\n\t\tint x = Integer.parseInt(strs[2]);\n\t\tint y = Integer.parseInt(strs[3]);\n\t\tint r = Integer.parseInt(strs[4]);\n\t\tif((x - r) < 0 || (x + r) > W || (y - r) < 0 || (y + r) > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((x - r) >= 0 && (x + r) <= W && (y - r) >= 0 && (y + r) <= H){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}//if\n\t\tbr.close();\n\t}", "main", "{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString str = br.readLine();\n\t\tString[] strs = str.split(\" \");\n\t\tint W = Integer.parseInt(strs[0]);\n\t\tint H = Integer.parseInt(strs[1]);\n\t\tint x = Integer.parseInt(strs[2]);\n\t\tint y = Integer.parseInt(strs[3]);\n\t\tint r = Integer.parseInt(strs[4]);\n\t\tif((x - r) < 0 || (x + r) > W || (y - r) < 0 || (y + r) > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((x - r) >= 0 && (x + r) <= W && (y - r) >= 0 && (y + r) <= H){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}//if\n\t\tbr.close();\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[] strs = str.split(\" \");", "strs", "str.split(\" \")", "str.split", "str", "\" \"", "int W = Integer.parseInt(strs[0]);", "W", "Integer.parseInt(strs[0])", "Integer.parseInt", "Integer", "strs[0]", "strs", "0", "int H = Integer.parseInt(strs[1]);", "H", "Integer.parseInt(strs[1])", "Integer.parseInt", "Integer", "strs[1]", "strs", "1", "int x = Integer.parseInt(strs[2]);", "x", "Integer.parseInt(strs[2])", "Integer.parseInt", "Integer", "strs[2]", "strs", "2", "int y = Integer.parseInt(strs[3]);", "y", "Integer.parseInt(strs[3])", "Integer.parseInt", "Integer", "strs[3]", "strs", "3", "int r = Integer.parseInt(strs[4]);", "r", "Integer.parseInt(strs[4])", "Integer.parseInt", "Integer", "strs[4]", "strs", "4", "if((x - r) < 0 || (x + r) > W || (y - r) < 0 || (y + r) > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((x - r) >= 0 && (x + r) <= W && (y - r) >= 0 && (y + r) <= H){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}//if", "(x - r) < 0 || (x + r) > W || (y - r) < 0 || (y + r) > H", "(y - r) < 0", "(x - r) < 0 || (x + r) > W || (y - r) < 0 || (y + r) > H", "(x - r) < 0", "(x - r)", "x", "r", "0", "(x + r) > W", "(x + r)", "x", "r", "W", "(y - r) < 0", "(y - r)", "y", "r", "0", "(y + r) > H", "(y + r)", "y", "r", "H", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if((x - r) >= 0 && (x + r) <= W && (y - r) >= 0 && (y + r) <= H){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}//if", "(x - r) >= 0 && (x + r) <= W && (y - r) >= 0 && (y + r) <= H", "(y - r) >= 0", "(x - r) >= 0 && (x + r) <= W && (y - r) >= 0 && (y + r) <= H", "(x - r) >= 0", "(x - r)", "x", "r", "0", "(x + r) <= W", "(x + r)", "x", "r", "W", "(y - r) >= 0", "(y - r)", "y", "r", "0", "(y + r) <= H", "(y + r)", "y", "r", "H", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "br.close()", "br.close", "br", "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[] strs = str.split(\" \");\n\t\tint W = Integer.parseInt(strs[0]);\n\t\tint H = Integer.parseInt(strs[1]);\n\t\tint x = Integer.parseInt(strs[2]);\n\t\tint y = Integer.parseInt(strs[3]);\n\t\tint r = Integer.parseInt(strs[4]);\n\t\tif((x - r) < 0 || (x + r) > W || (y - r) < 0 || (y + r) > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((x - r) >= 0 && (x + r) <= W && (y - r) >= 0 && (y + r) <= H){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}//if\n\t\tbr.close();\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[] strs = str.split(\" \");\n\t\tint W = Integer.parseInt(strs[0]);\n\t\tint H = Integer.parseInt(strs[1]);\n\t\tint x = Integer.parseInt(strs[2]);\n\t\tint y = Integer.parseInt(strs[3]);\n\t\tint r = Integer.parseInt(strs[4]);\n\t\tif((x - r) < 0 || (x + r) > W || (y - r) < 0 || (y + r) > H){\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if((x - r) >= 0 && (x + r) <= W && (y - r) >= 0 && (y + r) <= H){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}//if\n\t\tbr.close();\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[] strs = str.split(" "); int W = Integer.parseInt(strs[0]); int H = Integer.parseInt(strs[1]); int x = Integer.parseInt(strs[2]); int y = Integer.parseInt(strs[3]); int r = Integer.parseInt(strs[4]); if((x - r) < 0 || (x + r) > W || (y - r) < 0 || (y + r) > H){ System.out.println("No"); }else if((x - r) >= 0 && (x + r) <= W && (y - r) >= 0 && (y + r) <= H){ System.out.println("Yes"); }else{ System.out.println("No"); }//if br.close(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 76, 5 ], [ 76, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 40, 39 ], [ 51, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 41, 45 ], [ 40, 46 ], [ 46, 47 ], [ 47, 48 ], [ 47, 49 ], [ 46, 50 ], [ 51, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 40, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 56, 60 ], [ 37, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 61, 66 ], [ 37, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 67, 72 ], [ 6, 73 ], [ 73, 74 ], [ 0, 75 ], [ 75, 76 ], [ 75, 77 ] ]
[ "\n\nimport java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint num1 = scanner.nextInt();\n\t\tint num2 = scanner.nextInt();\n\t\tint num3 = scanner.nextInt();\n\t\tint num4 = scanner.nextInt();\n\t\tint num5 = scanner.nextInt();\n\t\t\n\t\tif(num3-num5<0|| num4-num5<0||num3+num5>num1||num4+num5>num2)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint num1 = scanner.nextInt();\n\t\tint num2 = scanner.nextInt();\n\t\tint num3 = scanner.nextInt();\n\t\tint num4 = scanner.nextInt();\n\t\tint num5 = scanner.nextInt();\n\t\t\n\t\tif(num3-num5<0|| num4-num5<0||num3+num5>num1||num4+num5>num2)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint num1 = scanner.nextInt();\n\t\tint num2 = scanner.nextInt();\n\t\tint num3 = scanner.nextInt();\n\t\tint num4 = scanner.nextInt();\n\t\tint num5 = scanner.nextInt();\n\t\t\n\t\tif(num3-num5<0|| num4-num5<0||num3+num5>num1||num4+num5>num2)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");\n\t}", "main", "{\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint num1 = scanner.nextInt();\n\t\tint num2 = scanner.nextInt();\n\t\tint num3 = scanner.nextInt();\n\t\tint num4 = scanner.nextInt();\n\t\tint num5 = scanner.nextInt();\n\t\t\n\t\tif(num3-num5<0|| num4-num5<0||num3+num5>num1||num4+num5>num2)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");\n\t}", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "int num1 = scanner.nextInt();", "num1", "scanner.nextInt()", "scanner.nextInt", "scanner", "int num2 = scanner.nextInt();", "num2", "scanner.nextInt()", "scanner.nextInt", "scanner", "int num3 = scanner.nextInt();", "num3", "scanner.nextInt()", "scanner.nextInt", "scanner", "int num4 = scanner.nextInt();", "num4", "scanner.nextInt()", "scanner.nextInt", "scanner", "int num5 = scanner.nextInt();", "num5", "scanner.nextInt()", "scanner.nextInt", "scanner", "if(num3-num5<0|| num4-num5<0||num3+num5>num1||num4+num5>num2)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");", "num3-num5<0|| num4-num5<0||num3+num5>num1||num4+num5>num2", "num3+num5>num1", "num3-num5<0|| num4-num5<0||num3+num5>num1||num4+num5>num2", "num3-num5<0", "num3-num5", "num3", "num5", "0", "num4-num5<0", "num4-num5", "num4", "num5", "0", "num3+num5>num1", "num3+num5", "num3", "num5", "num1", "num4+num5>num2", "num4+num5", "num4", "num5", "num2", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint num1 = scanner.nextInt();\n\t\tint num2 = scanner.nextInt();\n\t\tint num3 = scanner.nextInt();\n\t\tint num4 = scanner.nextInt();\n\t\tint num5 = scanner.nextInt();\n\t\t\n\t\tif(num3-num5<0|| num4-num5<0||num3+num5>num1||num4+num5>num2)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint num1 = scanner.nextInt();\n\t\tint num2 = scanner.nextInt();\n\t\tint num3 = scanner.nextInt();\n\t\tint num4 = scanner.nextInt();\n\t\tint num5 = scanner.nextInt();\n\t\t\n\t\tif(num3-num5<0|| num4-num5<0||num3+num5>num1||num4+num5>num2)\n\t\t\tSystem.out.println(\"No\");\n\t\telse\n\t\t\tSystem.out.println(\"Yes\");\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int num1 = scanner.nextInt(); int num2 = scanner.nextInt(); int num3 = scanner.nextInt(); int num4 = scanner.nextInt(); int num5 = scanner.nextInt(); if(num3-num5<0|| num4-num5<0||num3+num5>num1||num4+num5>num2) System.out.println("No"); else System.out.println("Yes"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 13, 2, 13, 13, 2, 17, 2, 13, 13, 2, 13, 2, 13, 13, 2, 17, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 78, 5 ], [ 78, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 40, 39 ], [ 51, 40 ], [ 40, 41 ], [ 41, 42 ], [ 41, 43 ], [ 43, 44 ], [ 43, 45 ], [ 40, 46 ], [ 46, 47 ], [ 46, 48 ], [ 48, 49 ], [ 48, 50 ], [ 51, 51 ], [ 51, 52 ], [ 51, 53 ], [ 53, 54 ], [ 53, 55 ], [ 40, 56 ], [ 56, 57 ], [ 56, 58 ], [ 58, 59 ], [ 58, 60 ], [ 37, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 62, 67 ], [ 37, 68 ], [ 68, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 71, 73 ], [ 69, 74 ], [ 6, 75 ], [ 75, 76 ], [ 0, 77 ], [ 77, 78 ], [ 77, 79 ] ]
[ "\nimport java.util.Scanner;\n\npublic class Main {\n\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n\n int W = scan.nextInt();\n int H = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n\n if (W >= x + r && 0 <= x - r && H >= y + r && 0 <= y - r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n\n}\n", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n\n int W = scan.nextInt();\n int H = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n\n if (W >= x + r && 0 <= x - r && H >= y + r && 0 <= y - r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n\n}", "Main", "public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n\n int W = scan.nextInt();\n int H = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n\n if (W >= x + r && 0 <= x - r && H >= y + r && 0 <= y - r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }", "main", "{\n Scanner scan = new Scanner(System.in);\n\n int W = scan.nextInt();\n int H = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n\n if (W >= x + r && 0 <= x - r && H >= y + r && 0 <= y - r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int W = scan.nextInt();", "W", "scan.nextInt()", "scan.nextInt", "scan", "int H = scan.nextInt();", "H", "scan.nextInt()", "scan.nextInt", "scan", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "int y = scan.nextInt();", "y", "scan.nextInt()", "scan.nextInt", "scan", "int r = scan.nextInt();", "r", "scan.nextInt()", "scan.nextInt", "scan", "if (W >= x + r && 0 <= x - r && H >= y + r && 0 <= y - r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }", "W >= x + r && 0 <= x - r && H >= y + r && 0 <= y - r", "H >= y + r", "W >= x + r && 0 <= x - r && H >= y + r && 0 <= y - r", "W >= x + r", "W", "x + r", "x", "r", "0 <= x - r", "0", "x - r", "x", "r", "H >= y + r", "H", "y + r", "y", "r", "0 <= y - r", "0", "y - r", "y", "r", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n\n int W = scan.nextInt();\n int H = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n\n if (W >= x + r && 0 <= x - r && H >= y + r && 0 <= y - r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n\n}", "public class Main {\n\n public static void main(String[] args) {\n Scanner scan = new Scanner(System.in);\n\n int W = scan.nextInt();\n int H = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n\n if (W >= x + r && 0 <= x - r && H >= y + r && 0 <= y - r) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int W = scan.nextInt(); int H = scan.nextInt(); int x = scan.nextInt(); int y = scan.nextInt(); int r = scan.nextInt(); if (W >= x + r && 0 <= x - r && H >= y + r && 0 <= y - r) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 13, 41, 13, 13, 14, 2, 13, 2, 13, 17, 30, 0, 13, 2, 13, 13, 14, 2, 13, 2, 13, 17, 30, 0, 13, 2, 13, 13, 14, 2, 2, 13, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 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 ], [ 23, 24 ], [ 24, 25 ], [ 11, 26 ], [ 26, 27 ], [ 26, 28 ], [ 28, 29 ], [ 29, 30 ], [ 11, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 34, 35 ], [ 11, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 11, 41 ], [ 41, 42 ], [ 41, 43 ], [ 43, 44 ], [ 44, 45 ], [ 11, 46 ], [ 46, 47 ], [ 46, 48 ], [ 11, 49 ], [ 49, 50 ], [ 49, 51 ], [ 11, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 55, 56 ], [ 55, 57 ], [ 52, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 61, 63 ], [ 11, 64 ], [ 64, 65 ], [ 65, 66 ], [ 65, 67 ], [ 67, 68 ], [ 67, 69 ], [ 64, 70 ], [ 70, 71 ], [ 71, 72 ], [ 71, 73 ], [ 73, 74 ], [ 73, 75 ], [ 11, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 77, 81 ], [ 81, 82 ], [ 81, 83 ], [ 76, 84 ], [ 84, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 85, 90 ], [ 76, 91 ], [ 91, 92 ], [ 92, 93 ], [ 93, 94 ], [ 94, 95 ], [ 94, 96 ], [ 92, 97 ], [ 9, 98 ], [ 98, 99 ] ]
[ "import java.io.*;\nimport java.util.*;\n\nclass Main\n{\n public static void main (String args[]) throws IOException //?????????\n {\n InputStreamReader is = new InputStreamReader(System.in); //?????????\n BufferedReader br = new BufferedReader(is); //?????????\n Scanner sc = new Scanner(System.in);\n\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n int tmp_x = x;\n int tmp_y = y;\n\n if(x > W/2){\n tmp_x = W - x;\n }\n if(y > H/2){\n tmp_y = H - y;\n }\n if((tmp_y < r) || (tmp_x < r)){\n System.out.println(\"No\");\n }\n else{\n System.out.println(\"Yes\");\n }\n }\n}\n ", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "class Main\n{\n public static void main (String args[]) throws IOException //?????????\n {\n InputStreamReader is = new InputStreamReader(System.in); //?????????\n BufferedReader br = new BufferedReader(is); //?????????\n Scanner sc = new Scanner(System.in);\n\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n int tmp_x = x;\n int tmp_y = y;\n\n if(x > W/2){\n tmp_x = W - x;\n }\n if(y > H/2){\n tmp_y = H - y;\n }\n if((tmp_y < r) || (tmp_x < r)){\n System.out.println(\"No\");\n }\n else{\n System.out.println(\"Yes\");\n }\n }\n}", "Main", "public static void main (String args[]) throws IOException //?????????\n {\n InputStreamReader is = new InputStreamReader(System.in); //?????????\n BufferedReader br = new BufferedReader(is); //?????????\n Scanner sc = new Scanner(System.in);\n\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n int tmp_x = x;\n int tmp_y = y;\n\n if(x > W/2){\n tmp_x = W - x;\n }\n if(y > H/2){\n tmp_y = H - y;\n }\n if((tmp_y < r) || (tmp_x < r)){\n System.out.println(\"No\");\n }\n else{\n System.out.println(\"Yes\");\n }\n }", "main", "{\n InputStreamReader is = new InputStreamReader(System.in); //?????????\n BufferedReader br = new BufferedReader(is); //?????????\n Scanner sc = new Scanner(System.in);\n\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n int tmp_x = x;\n int tmp_y = y;\n\n if(x > W/2){\n tmp_x = W - x;\n }\n if(y > H/2){\n tmp_y = H - y;\n }\n if((tmp_y < r) || (tmp_x < r)){\n System.out.println(\"No\");\n }\n else{\n System.out.println(\"Yes\");\n }\n }", "InputStreamReader is = new InputStreamReader(System.in);", "is", "new InputStreamReader(System.in)", "BufferedReader br = new BufferedReader(is);", "br", "new BufferedReader(is)", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int W = sc.nextInt();", "W", "sc.nextInt()", "sc.nextInt", "sc", "int H = sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "int tmp_x = x;", "tmp_x", "x", "int tmp_y = y;", "tmp_y", "y", "if(x > W/2){\n tmp_x = W - x;\n }", "x > W/2", "x", "W/2", "W", "2", "{\n tmp_x = W - x;\n }", "tmp_x = W - x", "tmp_x", "W - x", "W", "x", "if(y > H/2){\n tmp_y = H - y;\n }", "y > H/2", "y", "H/2", "H", "2", "{\n tmp_y = H - y;\n }", "tmp_y = H - y", "tmp_y", "H - y", "H", "y", "if((tmp_y < r) || (tmp_x < r)){\n System.out.println(\"No\");\n }\n else{\n System.out.println(\"Yes\");\n }", "(tmp_y < r) || (tmp_x < r)", "(tmp_y < r)", "tmp_y", "r", "(tmp_x < r)", "tmp_x", "r", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String args[]", "args" ]
import java.io.*; import java.util.*; class Main { public static void main (String args[]) throws IOException //????????? { InputStreamReader is = new InputStreamReader(System.in); //????????? BufferedReader br = new BufferedReader(is); //????????? Scanner sc = new Scanner(System.in); int W = sc.nextInt(); int H = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int r = sc.nextInt(); int tmp_x = x; int tmp_y = y; if(x > W/2){ tmp_x = W - x; } if(y > H/2){ tmp_y = H - y; } if((tmp_y < r) || (tmp_x < r)){ System.out.println("No"); } else{ System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 2, 2, 2, 13, 13, 2, 13, 13, 2, 13, 2, 13, 13, 2, 13, 2, 13, 13, 17, 17, 23, 13, 6, 13, 12, 13, 30, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 37, 42 ], [ 42, 43 ], [ 45, 44 ], [ 52, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 45, 49 ], [ 49, 50 ], [ 49, 51 ], [ 52, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 45, 57 ], [ 57, 58 ], [ 57, 59 ], [ 59, 60 ], [ 59, 61 ], [ 42, 62 ], [ 42, 63 ], [ 6, 64 ], [ 64, 65 ], [ 0, 66 ], [ 77, 67 ], [ 77, 68 ], [ 68, 69 ], [ 68, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 68, 74 ], [ 74, 75 ], [ 0, 76 ], [ 76, 77 ], [ 76, 78 ] ]
[ "import java.util.*;\n\nclass CircleInARectangle {\n public static void main(String...args) {\n final Scanner sc = new Scanner(System.in);\n final int W = sc.nextInt();\n final int H = sc.nextInt();\n final int x = sc.nextInt();\n final int y = sc.nextInt();\n final int r = sc.nextInt();\n System.out.println(r <= x && r <= y && x <= W - r && y <= H - r ? \"Yes\" : \"No\");\n }\n}\npublic class Main {\n public static void main(String... args) {\n CircleInARectangle.main();\n }\n}", "import java.util.*;", "util.*", "java", "class CircleInARectangle {\n public static void main(String...args) {\n final Scanner sc = new Scanner(System.in);\n final int W = sc.nextInt();\n final int H = sc.nextInt();\n final int x = sc.nextInt();\n final int y = sc.nextInt();\n final int r = sc.nextInt();\n System.out.println(r <= x && r <= y && x <= W - r && y <= H - r ? \"Yes\" : \"No\");\n }\n}", "CircleInARectangle", "public static void main(String...args) {\n final Scanner sc = new Scanner(System.in);\n final int W = sc.nextInt();\n final int H = sc.nextInt();\n final int x = sc.nextInt();\n final int y = sc.nextInt();\n final int r = sc.nextInt();\n System.out.println(r <= x && r <= y && x <= W - r && y <= H - r ? \"Yes\" : \"No\");\n }", "main", "{\n final Scanner sc = new Scanner(System.in);\n final int W = sc.nextInt();\n final int H = sc.nextInt();\n final int x = sc.nextInt();\n final int y = sc.nextInt();\n final int r = sc.nextInt();\n System.out.println(r <= x && r <= y && x <= W - r && y <= H - r ? \"Yes\" : \"No\");\n }", "final Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "final int W = sc.nextInt();", "W", "sc.nextInt()", "sc.nextInt", "sc", "final int H = sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "final int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "final int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "final int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "System.out.println(r <= x && r <= y && x <= W - r && y <= H - r ? \"Yes\" : \"No\")", "System.out.println", "System.out", "System", "System.out", "r <= x && r <= y && x <= W - r && y <= H - r ? \"Yes\" : \"No\"", "r <= x && r <= y && x <= W - r && y <= H - r", "x <= W - r", "r <= x && r <= y && x <= W - r && y <= H - r", "r <= x", "r", "x", "r <= y", "r", "y", "x <= W - r", "x", "W - r", "W", "r", "y <= H - r", "y", "H - r", "H", "r", "\"Yes\"", "\"No\"", "String...args", "args", "public class Main {\n public static void main(String... args) {\n CircleInARectangle.main();\n }\n}", "Main", "public static void main(String... args) {\n CircleInARectangle.main();\n }", "main", "{\n CircleInARectangle.main();\n }", "CircleInARectangle.main()", "CircleInARectangle.main", "CircleInARectangle", "String... args", "args", "public class Main {\n public static void main(String... args) {\n CircleInARectangle.main();\n }\n}", "public class Main {\n public static void main(String... args) {\n CircleInARectangle.main();\n }\n}", "Main" ]
import java.util.*; class CircleInARectangle { public static void main(String...args) { final Scanner sc = new Scanner(System.in); final int W = sc.nextInt(); final int H = sc.nextInt(); final int x = sc.nextInt(); final int y = sc.nextInt(); final int r = sc.nextInt(); System.out.println(r <= x && r <= y && x <= W - r && y <= H - r ? "Yes" : "No"); } } public class Main { public static void main(String... args) { CircleInARectangle.main(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 4, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 17, 41, 13, 17, 14, 2, 2, 13, 13, 2, 13, 2, 13, 13, 30, 0, 13, 17, 14, 2, 2, 13, 13, 2, 13, 2, 13, 13, 30, 0, 13, 17, 14, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 16, 17 ], [ 17, 18 ], [ 14, 19 ], [ 8, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 25, 26 ], [ 25, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 30, 33 ], [ 33, 34 ], [ 33, 35 ], [ 8, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 38, 41 ], [ 41, 42 ], [ 41, 43 ], [ 8, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 49, 50 ], [ 49, 51 ], [ 8, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 55, 56 ], [ 54, 57 ], [ 57, 58 ], [ 57, 59 ], [ 8, 60 ], [ 60, 61 ], [ 60, 62 ], [ 8, 63 ], [ 63, 64 ], [ 63, 65 ], [ 8, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 67, 71 ], [ 71, 72 ], [ 71, 73 ], [ 73, 74 ], [ 73, 75 ], [ 66, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 8, 80 ], [ 80, 81 ], [ 81, 82 ], [ 82, 83 ], [ 82, 84 ], [ 81, 85 ], [ 85, 86 ], [ 85, 87 ], [ 87, 88 ], [ 87, 89 ], [ 80, 90 ], [ 90, 91 ], [ 91, 92 ], [ 91, 93 ], [ 8, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 94, 98 ], [ 98, 99 ], [ 99, 100 ], [ 100, 101 ], [ 101, 102 ], [ 101, 103 ], [ 99, 104 ], [ 94, 105 ], [ 105, 106 ], [ 106, 107 ], [ 107, 108 ], [ 108, 109 ], [ 108, 110 ], [ 106, 111 ], [ 6, 112 ], [ 112, 113 ] ]
[ "import java.io.*;\n\nclass Main {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br =\n\t\t\tnew BufferedReader(new InputStreamReader(System.in));\n\n\t\t\tString[] line = br.readLine().split(\" \");\n\t\t\tint W = Integer.parseInt(line[0]);\n\t\t\tint H = Integer.parseInt(line[1]);\n\t\t\tint x = Integer.parseInt(line[2]);\n\t\t\tint y = Integer.parseInt(line[3]);\n\t\t\tint r = Integer.parseInt(line[4]);\n\n\t\t\tboolean X = false;\n\t\t\tboolean Y = false;\n\n\t\t\tif(r <= x && x <= W - r) {\n\t\t\t\tX = true;\n\t\t\t}\n\t\t\tif(r <= y && y <= H - r) {\n\t\t\t\tY = true;\n\t\t\t}\n\t\t\tif(X && Y) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}\n\t}\n}", "import java.io.*;", "io.*", "java", "class Main {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br =\n\t\t\tnew BufferedReader(new InputStreamReader(System.in));\n\n\t\t\tString[] line = br.readLine().split(\" \");\n\t\t\tint W = Integer.parseInt(line[0]);\n\t\t\tint H = Integer.parseInt(line[1]);\n\t\t\tint x = Integer.parseInt(line[2]);\n\t\t\tint y = Integer.parseInt(line[3]);\n\t\t\tint r = Integer.parseInt(line[4]);\n\n\t\t\tboolean X = false;\n\t\t\tboolean Y = false;\n\n\t\t\tif(r <= x && x <= W - r) {\n\t\t\t\tX = true;\n\t\t\t}\n\t\t\tif(r <= y && y <= H - r) {\n\t\t\t\tY = true;\n\t\t\t}\n\t\t\tif(X && Y) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}\n\t}\n}", "Main", "public static void main(String[] args) throws IOException {\n\t\tBufferedReader br =\n\t\t\tnew BufferedReader(new InputStreamReader(System.in));\n\n\t\t\tString[] line = br.readLine().split(\" \");\n\t\t\tint W = Integer.parseInt(line[0]);\n\t\t\tint H = Integer.parseInt(line[1]);\n\t\t\tint x = Integer.parseInt(line[2]);\n\t\t\tint y = Integer.parseInt(line[3]);\n\t\t\tint r = Integer.parseInt(line[4]);\n\n\t\t\tboolean X = false;\n\t\t\tboolean Y = false;\n\n\t\t\tif(r <= x && x <= W - r) {\n\t\t\t\tX = true;\n\t\t\t}\n\t\t\tif(r <= y && y <= H - r) {\n\t\t\t\tY = true;\n\t\t\t}\n\t\t\tif(X && Y) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}\n\t}", "main", "{\n\t\tBufferedReader br =\n\t\t\tnew BufferedReader(new InputStreamReader(System.in));\n\n\t\t\tString[] line = br.readLine().split(\" \");\n\t\t\tint W = Integer.parseInt(line[0]);\n\t\t\tint H = Integer.parseInt(line[1]);\n\t\t\tint x = Integer.parseInt(line[2]);\n\t\t\tint y = Integer.parseInt(line[3]);\n\t\t\tint r = Integer.parseInt(line[4]);\n\n\t\t\tboolean X = false;\n\t\t\tboolean Y = false;\n\n\t\t\tif(r <= x && x <= W - r) {\n\t\t\t\tX = true;\n\t\t\t}\n\t\t\tif(r <= y && y <= H - r) {\n\t\t\t\tY = true;\n\t\t\t}\n\t\t\tif(X && Y) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}\n\t}", "BufferedReader br =\n\t\t\tnew 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 W = Integer.parseInt(line[0]);", "W", "Integer.parseInt(line[0])", "Integer.parseInt", "Integer", "line[0]", "line", "0", "int H = Integer.parseInt(line[1]);", "H", "Integer.parseInt(line[1])", "Integer.parseInt", "Integer", "line[1]", "line", "1", "int x = Integer.parseInt(line[2]);", "x", "Integer.parseInt(line[2])", "Integer.parseInt", "Integer", "line[2]", "line", "2", "int y = Integer.parseInt(line[3]);", "y", "Integer.parseInt(line[3])", "Integer.parseInt", "Integer", "line[3]", "line", "3", "int r = Integer.parseInt(line[4]);", "r", "Integer.parseInt(line[4])", "Integer.parseInt", "Integer", "line[4]", "line", "4", "boolean X = false;", "X", "false", "boolean Y = false;", "Y", "false", "if(r <= x && x <= W - r) {\n\t\t\t\tX = true;\n\t\t\t}", "r <= x && x <= W - r", "r <= x", "r", "x", "x <= W - r", "x", "W - r", "W", "r", "{\n\t\t\t\tX = true;\n\t\t\t}", "X = true", "X", "true", "if(r <= y && y <= H - r) {\n\t\t\t\tY = true;\n\t\t\t}", "r <= y && y <= H - r", "r <= y", "r", "y", "y <= H - r", "y", "H - r", "H", "r", "{\n\t\t\t\tY = true;\n\t\t\t}", "Y = true", "Y", "true", "if(X && Y) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}", "X && Y", "X", "Y", "{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "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[] line = br.readLine().split(" "); int W = Integer.parseInt(line[0]); int H = Integer.parseInt(line[1]); int x = Integer.parseInt(line[2]); int y = Integer.parseInt(line[3]); int r = Integer.parseInt(line[4]); boolean X = false; boolean Y = false; if(r <= x && x <= W - r) { X = true; } if(r <= y && y <= H - r) { Y = true; } if(X && Y) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 14, 2, 2, 2, 2, 13, 17, 2, 13, 13, 2, 13, 13, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 90, 5 ], [ 90, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 39, 41 ], [ 8, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 44, 46 ], [ 8, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 49, 51 ], [ 8, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 8, 57 ], [ 57, 58 ], [ 60, 59 ], [ 67, 60 ], [ 60, 61 ], [ 61, 62 ], [ 61, 63 ], [ 60, 64 ], [ 64, 65 ], [ 64, 66 ], [ 67, 67 ], [ 67, 68 ], [ 67, 69 ], [ 60, 70 ], [ 70, 71 ], [ 70, 72 ], [ 57, 73 ], [ 73, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 74, 79 ], [ 57, 80 ], [ 80, 81 ], [ 81, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 81, 86 ], [ 6, 87 ], [ 87, 88 ], [ 0, 89 ], [ 89, 90 ], [ 89, 91 ] ]
[ "import java.util.Scanner;\npublic class Main {\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\t\n\t\tint sxl = x - r;\n\t\tint sxr = x + r;\n\t\tint syu = y + r;\n\t\tint syd = y - r;\n\t\t\n\t\tif(sxl < 0 || sxr > W || syu > H || syd < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\t\n\t\tint sxl = x - r;\n\t\tint sxr = x + r;\n\t\tint syu = y + r;\n\t\tint syd = y - r;\n\t\t\n\t\tif(sxl < 0 || sxr > W || syu > H || syd < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\t\n\t\tint sxl = x - r;\n\t\tint sxr = x + r;\n\t\tint syu = y + r;\n\t\tint syd = y - r;\n\t\t\n\t\tif(sxl < 0 || sxr > W || syu > H || syd < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}", "main", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\t\n\t\tint sxl = x - r;\n\t\tint sxr = x + r;\n\t\tint syu = y + r;\n\t\tint syd = y - r;\n\t\t\n\t\tif(sxl < 0 || sxr > W || syu > H || syd < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int W = scan.nextInt();", "W", "scan.nextInt()", "scan.nextInt", "scan", "int H = scan.nextInt();", "H", "scan.nextInt()", "scan.nextInt", "scan", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "int y = scan.nextInt();", "y", "scan.nextInt()", "scan.nextInt", "scan", "int r = scan.nextInt();", "r", "scan.nextInt()", "scan.nextInt", "scan", "int sxl = x - r;", "sxl", "x - r", "x", "r", "int sxr = x + r;", "sxr", "x + r", "x", "r", "int syu = y + r;", "syu", "y + r", "y", "r", "int syd = y - r;", "syd", "y - r", "y", "r", "if(sxl < 0 || sxr > W || syu > H || syd < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "sxl < 0 || sxr > W || syu > H || syd < 0", "syu > H", "sxl < 0 || sxr > W || syu > H || syd < 0", "sxl < 0", "sxl", "0", "sxr > W", "sxr", "W", "syu > H", "syu", "H", "syd < 0", "syd", "0", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\t\n\t\tint sxl = x - r;\n\t\tint sxr = x + r;\n\t\tint syu = y + r;\n\t\tint syd = y - r;\n\t\t\n\t\tif(sxl < 0 || sxr > W || syu > H || syd < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\t\n\t\tint sxl = x - r;\n\t\tint sxr = x + r;\n\t\tint syu = y + r;\n\t\tint syd = y - r;\n\t\t\n\t\tif(sxl < 0 || sxr > W || syu > H || syd < 0){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner scan = new Scanner(System.in); int W = scan.nextInt(); int H = scan.nextInt(); int x = scan.nextInt(); int y = scan.nextInt(); int r = scan.nextInt(); int sxl = x - r; int sxr = x + r; int syu = y + r; int syd = y - r; if(sxl < 0 || sxr > W || syu > H || syd < 0){ System.out.println("No"); } else{ System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 13, 17, 2, 2, 13, 13, 13, 4, 18, 18, 13, 13, 17, 14, 2, 2, 13, 17, 2, 2, 13, 13, 13, 4, 18, 18, 13, 13, 17, 14, 2, 2, 13, 17, 2, 2, 13, 13, 13, 4, 18, 18, 13, 13, 17, 14, 2, 2, 13, 17, 2, 2, 13, 13, 13, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 104, 5 ], [ 104, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 38, 42 ], [ 42, 43 ], [ 43, 44 ], [ 43, 45 ], [ 42, 46 ], [ 37, 47 ], [ 47, 48 ], [ 48, 49 ], [ 49, 50 ], [ 49, 51 ], [ 47, 52 ], [ 37, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 54, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 58, 62 ], [ 53, 63 ], [ 63, 64 ], [ 64, 65 ], [ 65, 66 ], [ 65, 67 ], [ 63, 68 ], [ 53, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 71, 73 ], [ 70, 74 ], [ 74, 75 ], [ 75, 76 ], [ 75, 77 ], [ 74, 78 ], [ 69, 79 ], [ 79, 80 ], [ 80, 81 ], [ 81, 82 ], [ 81, 83 ], [ 79, 84 ], [ 69, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 86, 90 ], [ 90, 91 ], [ 91, 92 ], [ 91, 93 ], [ 90, 94 ], [ 85, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 97, 99 ], [ 95, 100 ], [ 6, 101 ], [ 101, 102 ], [ 0, 103 ], [ 103, 104 ], [ 103, 105 ] ]
[ "\nimport java.util.Scanner;\n\npublic class Main{\n\n\tpublic static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n \n if(x < 0 || x + r > W)\n \tSystem.out.println(\"No\");\n else if(y < 0 || y + r > H)\n \tSystem.out.println(\"No\");\n else if(x >= 0 && x + r <= W)\n \tSystem.out.println(\"Yes\");\n else if(y >= 0 && y + r <= H)\n \tSystem.out.println(\"Yes\");\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main{\n\n\tpublic static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n \n if(x < 0 || x + r > W)\n \tSystem.out.println(\"No\");\n else if(y < 0 || y + r > H)\n \tSystem.out.println(\"No\");\n else if(x >= 0 && x + r <= W)\n \tSystem.out.println(\"Yes\");\n else if(y >= 0 && y + r <= H)\n \tSystem.out.println(\"Yes\");\n\t}\n}", "Main", "public static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n \n if(x < 0 || x + r > W)\n \tSystem.out.println(\"No\");\n else if(y < 0 || y + r > H)\n \tSystem.out.println(\"No\");\n else if(x >= 0 && x + r <= W)\n \tSystem.out.println(\"Yes\");\n else if(y >= 0 && y + r <= H)\n \tSystem.out.println(\"Yes\");\n\t}", "main", "{\n Scanner sc = new Scanner(System.in);\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n \n if(x < 0 || x + r > W)\n \tSystem.out.println(\"No\");\n else if(y < 0 || y + r > H)\n \tSystem.out.println(\"No\");\n else if(x >= 0 && x + r <= W)\n \tSystem.out.println(\"Yes\");\n else if(y >= 0 && y + r <= H)\n \tSystem.out.println(\"Yes\");\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int W = sc.nextInt();", "W", "sc.nextInt()", "sc.nextInt", "sc", "int H = sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "if(x < 0 || x + r > W)\n \tSystem.out.println(\"No\");\n else if(y < 0 || y + r > H)\n \tSystem.out.println(\"No\");\n else if(x >= 0 && x + r <= W)\n \tSystem.out.println(\"Yes\");\n else if(y >= 0 && y + r <= H)\n \tSystem.out.println(\"Yes\");", "x < 0 || x + r > W", "x < 0", "x", "0", "x + r > W", "x + r", "x", "r", "W", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(y < 0 || y + r > H)\n \tSystem.out.println(\"No\");\n else if(x >= 0 && x + r <= W)\n \tSystem.out.println(\"Yes\");\n else if(y >= 0 && y + r <= H)\n \tSystem.out.println(\"Yes\");", "y < 0 || y + r > H", "y < 0", "y", "0", "y + r > H", "y + r", "y", "r", "H", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(x >= 0 && x + r <= W)\n \tSystem.out.println(\"Yes\");\n else if(y >= 0 && y + r <= H)\n \tSystem.out.println(\"Yes\");", "x >= 0 && x + r <= W", "x >= 0", "x", "0", "x + r <= W", "x + r", "x", "r", "W", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "if(y >= 0 && y + r <= H)\n \tSystem.out.println(\"Yes\");", "y >= 0 && y + r <= H", "y >= 0", "y", "0", "y + r <= H", "y + r", "y", "r", "H", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main{\n\n\tpublic static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n \n if(x < 0 || x + r > W)\n \tSystem.out.println(\"No\");\n else if(y < 0 || y + r > H)\n \tSystem.out.println(\"No\");\n else if(x >= 0 && x + r <= W)\n \tSystem.out.println(\"Yes\");\n else if(y >= 0 && y + r <= H)\n \tSystem.out.println(\"Yes\");\n\t}\n}", "public class Main{\n\n\tpublic static void main(String[] args) {\n Scanner sc = new Scanner(System.in);\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n \n if(x < 0 || x + r > W)\n \tSystem.out.println(\"No\");\n else if(y < 0 || y + r > H)\n \tSystem.out.println(\"No\");\n else if(x >= 0 && x + r <= W)\n \tSystem.out.println(\"Yes\");\n else if(y >= 0 && y + r <= H)\n \tSystem.out.println(\"Yes\");\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int W = sc.nextInt(); int H = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int r = sc.nextInt(); if(x < 0 || x + r > W) System.out.println("No"); else if(y < 0 || y + r > H) System.out.println("No"); else if(x >= 0 && x + r <= W) System.out.println("Yes"); else if(y >= 0 && y + r <= H) System.out.println("Yes"); } }
[ 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, 4, 18, 13, 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, 13, 2, 13, 2, 13, 13, 2, 13, 13, 2, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 14, 21 ], [ 21, 22 ], [ 21, 23 ], [ 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 ], [ 48, 49 ], [ 47, 50 ], [ 50, 51 ], [ 50, 52 ], [ 14, 53 ], [ 53, 54 ], [ 53, 55 ], [ 55, 56 ], [ 56, 57 ], [ 55, 58 ], [ 58, 59 ], [ 58, 60 ], [ 14, 61 ], [ 61, 62 ], [ 61, 63 ], [ 63, 64 ], [ 64, 65 ], [ 63, 66 ], [ 66, 67 ], [ 66, 68 ], [ 14, 69 ], [ 69, 70 ], [ 72, 71 ], [ 81, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 78, 80 ], [ 81, 81 ], [ 81, 82 ], [ 81, 83 ], [ 72, 84 ], [ 84, 85 ], [ 84, 86 ], [ 86, 87 ], [ 86, 88 ], [ 69, 89 ], [ 89, 90 ], [ 90, 91 ], [ 91, 92 ], [ 92, 93 ], [ 92, 94 ], [ 90, 95 ], [ 69, 96 ], [ 96, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 99, 101 ], [ 97, 102 ], [ 12, 103 ], [ 103, 104 ] ]
[ "import java.io.InputStreamReader;\nimport java.io.BufferedReader;\nimport java.io.IOException;\n\nclass Main {\n\tpublic static void main(String[] args) throws Exception{\n\t\tInputStreamReader is = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(is);\n\t\tString[] strAry = br.readLine().split(\" \");\n\t\tint w = Integer.parseInt(strAry[0]);\n\t\tint h = Integer.parseInt(strAry[1]);\n\t\tint x = Integer.parseInt(strAry[2]);\n\t\tint y = Integer.parseInt(strAry[3]);\n\t\tint r = Integer.parseInt(strAry[4]);\n\t\tif (r <= x && x <= (w - r) && r <= y && y <= (h - r)) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "class Main {\n\tpublic static void main(String[] args) throws Exception{\n\t\tInputStreamReader is = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(is);\n\t\tString[] strAry = br.readLine().split(\" \");\n\t\tint w = Integer.parseInt(strAry[0]);\n\t\tint h = Integer.parseInt(strAry[1]);\n\t\tint x = Integer.parseInt(strAry[2]);\n\t\tint y = Integer.parseInt(strAry[3]);\n\t\tint r = Integer.parseInt(strAry[4]);\n\t\tif (r <= x && x <= (w - r) && r <= y && y <= (h - r)) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) throws Exception{\n\t\tInputStreamReader is = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(is);\n\t\tString[] strAry = br.readLine().split(\" \");\n\t\tint w = Integer.parseInt(strAry[0]);\n\t\tint h = Integer.parseInt(strAry[1]);\n\t\tint x = Integer.parseInt(strAry[2]);\n\t\tint y = Integer.parseInt(strAry[3]);\n\t\tint r = Integer.parseInt(strAry[4]);\n\t\tif (r <= x && x <= (w - r) && r <= y && y <= (h - r)) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}", "main", "{\n\t\tInputStreamReader is = new InputStreamReader(System.in);\n\t\tBufferedReader br = new BufferedReader(is);\n\t\tString[] strAry = br.readLine().split(\" \");\n\t\tint w = Integer.parseInt(strAry[0]);\n\t\tint h = Integer.parseInt(strAry[1]);\n\t\tint x = Integer.parseInt(strAry[2]);\n\t\tint y = Integer.parseInt(strAry[3]);\n\t\tint r = Integer.parseInt(strAry[4]);\n\t\tif (r <= x && x <= (w - r) && r <= y && y <= (h - r)) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}", "InputStreamReader is = new InputStreamReader(System.in);", "is", "new InputStreamReader(System.in)", "BufferedReader br = new BufferedReader(is);", "br", "new BufferedReader(is)", "String[] strAry = br.readLine().split(\" \");", "strAry", "br.readLine().split(\" \")", "br.readLine().split", "br.readLine()", "br.readLine", "br", "\" \"", "int w = Integer.parseInt(strAry[0]);", "w", "Integer.parseInt(strAry[0])", "Integer.parseInt", "Integer", "strAry[0]", "strAry", "0", "int h = Integer.parseInt(strAry[1]);", "h", "Integer.parseInt(strAry[1])", "Integer.parseInt", "Integer", "strAry[1]", "strAry", "1", "int x = Integer.parseInt(strAry[2]);", "x", "Integer.parseInt(strAry[2])", "Integer.parseInt", "Integer", "strAry[2]", "strAry", "2", "int y = Integer.parseInt(strAry[3]);", "y", "Integer.parseInt(strAry[3])", "Integer.parseInt", "Integer", "strAry[3]", "strAry", "3", "int r = Integer.parseInt(strAry[4]);", "r", "Integer.parseInt(strAry[4])", "Integer.parseInt", "Integer", "strAry[4]", "strAry", "4", "if (r <= x && x <= (w - r) && r <= y && y <= (h - r)) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "r <= x && x <= (w - r) && r <= y && y <= (h - r)", "r <= y", "r <= x && x <= (w - r) && r <= y && y <= (h - r)", "r <= x", "r", "x", "x <= (w - r)", "x", "(w - r)", "w", "r", "r <= y", "r", "y", "y <= (h - r)", "y", "(h - r)", "h", "r", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args" ]
import java.io.InputStreamReader; import java.io.BufferedReader; import java.io.IOException; class Main { public static void main(String[] args) throws Exception{ InputStreamReader is = new InputStreamReader(System.in); BufferedReader br = new BufferedReader(is); String[] strAry = br.readLine().split(" "); int w = Integer.parseInt(strAry[0]); int h = Integer.parseInt(strAry[1]); int x = Integer.parseInt(strAry[2]); int y = Integer.parseInt(strAry[3]); int r = Integer.parseInt(strAry[4]); if (r <= x && x <= (w - r) && r <= y && y <= (h - r)) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 2, 2, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 17, 17, 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 ], [ 14, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 14, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 36, 37 ], [ 14, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 14, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 43, 48 ], [ 48, 49 ], [ 49, 50 ], [ 62, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 51, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 57, 61 ], [ 62, 62 ], [ 62, 63 ], [ 62, 64 ], [ 64, 65 ], [ 64, 66 ], [ 49, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 67, 71 ], [ 48, 72 ], [ 48, 73 ], [ 12, 74 ], [ 74, 75 ] ]
[ "import java.lang.Math;\nimport java.util.ArrayList;\nimport java.util.Scanner;\n\nclass Main {\n public static void main(String[] args) {\n Scanner sn = new Scanner(System.in);\n int W = sn.nextInt();\n int H = sn.nextInt();\n int x = sn.nextInt();\n int y = sn.nextInt();\n int r = sn.nextInt();\n \n System.out.println((0 <= x - r && x + r <= W && 0 <= y - r && y + r <= H) ? \"Yes\" : \"No\");\n }\n}", "import java.lang.Math;", "Math", "java.lang", "import java.util.ArrayList;", "ArrayList", "java.util", "import java.util.Scanner;", "Scanner", "java.util", "class Main {\n public static void main(String[] args) {\n Scanner sn = new Scanner(System.in);\n int W = sn.nextInt();\n int H = sn.nextInt();\n int x = sn.nextInt();\n int y = sn.nextInt();\n int r = sn.nextInt();\n \n System.out.println((0 <= x - r && x + r <= W && 0 <= y - r && y + r <= H) ? \"Yes\" : \"No\");\n }\n}", "Main", "public static void main(String[] args) {\n Scanner sn = new Scanner(System.in);\n int W = sn.nextInt();\n int H = sn.nextInt();\n int x = sn.nextInt();\n int y = sn.nextInt();\n int r = sn.nextInt();\n \n System.out.println((0 <= x - r && x + r <= W && 0 <= y - r && y + r <= H) ? \"Yes\" : \"No\");\n }", "main", "{\n Scanner sn = new Scanner(System.in);\n int W = sn.nextInt();\n int H = sn.nextInt();\n int x = sn.nextInt();\n int y = sn.nextInt();\n int r = sn.nextInt();\n \n System.out.println((0 <= x - r && x + r <= W && 0 <= y - r && y + r <= H) ? \"Yes\" : \"No\");\n }", "Scanner sn = new Scanner(System.in);", "sn", "new Scanner(System.in)", "int W = sn.nextInt();", "W", "sn.nextInt()", "sn.nextInt", "sn", "int H = sn.nextInt();", "H", "sn.nextInt()", "sn.nextInt", "sn", "int x = sn.nextInt();", "x", "sn.nextInt()", "sn.nextInt", "sn", "int y = sn.nextInt();", "y", "sn.nextInt()", "sn.nextInt", "sn", "int r = sn.nextInt();", "r", "sn.nextInt()", "sn.nextInt", "sn", "System.out.println((0 <= x - r && x + r <= W && 0 <= y - r && y + r <= H) ? \"Yes\" : \"No\")", "System.out.println", "System.out", "System", "System.out", "(0 <= x - r && x + r <= W && 0 <= y - r && y + r <= H) ? \"Yes\" : \"No\"", "(0 <= x - r && x + r <= W && 0 <= y - r && y + r <= H)", "0 <= y - r", "0 <= x - r && x + r <= W && 0 <= y - r && y + r <= H", "0 <= x - r", "0", "x - r", "x", "r", "x + r <= W", "x + r", "x", "r", "W", "0 <= y - r", "0", "y - r", "y", "r", "y + r <= H", "y + r", "y", "r", "H", "\"Yes\"", "\"No\"", "String[] args", "args" ]
import java.lang.Math; import java.util.ArrayList; import java.util.Scanner; class Main { public static void main(String[] args) { Scanner sn = new Scanner(System.in); int W = sn.nextInt(); int H = sn.nextInt(); int x = sn.nextInt(); int y = sn.nextInt(); int r = sn.nextInt(); System.out.println((0 <= x - r && x + r <= W && 0 <= y - r && y + r <= H) ? "Yes" : "No"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 14, 2, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 99, 5 ], [ 99, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 38, 42 ], [ 37, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 44, 49 ], [ 37, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 50, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 57, 62 ], [ 50, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 66, 68 ], [ 63, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 70, 75 ], [ 63, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 79, 80 ], [ 79, 81 ], [ 76, 82 ], [ 82, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 85, 87 ], [ 83, 88 ], [ 76, 89 ], [ 89, 90 ], [ 90, 91 ], [ 91, 92 ], [ 92, 93 ], [ 92, 94 ], [ 90, 95 ], [ 6, 96 ], [ 96, 97 ], [ 0, 98 ], [ 98, 99 ], [ 98, 100 ] ]
[ "import java.util.*;\n\npublic class Main {\n\tpublic static void main(String[] args) throws Exception{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint w = sc.nextInt();\n\t\tint h = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tif ((x-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if ((y-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (w<(x+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (h<(y+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}", "import java.util.*;", "util.*", "java", "public class Main {\n\tpublic static void main(String[] args) throws Exception{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint w = sc.nextInt();\n\t\tint h = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tif ((x-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if ((y-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (w<(x+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (h<(y+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) throws Exception{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint w = sc.nextInt();\n\t\tint h = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tif ((x-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if ((y-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (w<(x+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (h<(y+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint w = sc.nextInt();\n\t\tint h = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tif ((x-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if ((y-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (w<(x+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (h<(y+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int w = sc.nextInt();", "w", "sc.nextInt()", "sc.nextInt", "sc", "int h = sc.nextInt();", "h", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "if ((x-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if ((y-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (w<(x+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (h<(y+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "(x-r)<0", "(x-r)", "x", "r", "0", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if ((y-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (w<(x+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (h<(y+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "(y-r)<0", "(y-r)", "y", "r", "0", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if (w<(x+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (h<(y+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "w<(x+r)", "w", "(x+r)", "x", "r", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if (h<(y+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "h<(y+r)", "h", "(y+r)", "y", "r", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) throws Exception{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint w = sc.nextInt();\n\t\tint h = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tif ((x-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if ((y-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (w<(x+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (h<(y+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) throws Exception{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint w = sc.nextInt();\n\t\tint h = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tif ((x-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if ((y-r)<0){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (w<(x+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else if (h<(y+r)){\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args) throws Exception{ Scanner sc = new Scanner(System.in); int w = sc.nextInt(); int h = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int r = sc.nextInt(); if ((x-r)<0){ System.out.println("No"); } else if ((y-r)<0){ System.out.println("No"); } else if (w<(x+r)){ System.out.println("No"); } else if (h<(y+r)){ System.out.println("No"); } else { System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 4, 18, 20, 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, 18, 13, 17, 14, 2, 2, 2, 2, 13, 13, 2, 13, 2, 13, 13, 2, 13, 13, 2, 13, 2, 13, 13, 30, 4, 18, 13, 17, 30, 4, 18, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 93, 5 ], [ 93, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 8, 14 ], [ 14, 15 ], [ 14, 16 ], [ 16, 17 ], [ 17, 18 ], [ 16, 19 ], [ 8, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 25, 26 ], [ 25, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 30, 33 ], [ 33, 34 ], [ 33, 35 ], [ 8, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 38, 41 ], [ 41, 42 ], [ 41, 43 ], [ 8, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 49, 50 ], [ 49, 51 ], [ 8, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 55, 56 ], [ 54, 57 ], [ 57, 58 ], [ 57, 59 ], [ 8, 60 ], [ 60, 61 ], [ 63, 62 ], [ 72, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 67, 68 ], [ 67, 69 ], [ 69, 70 ], [ 69, 71 ], [ 72, 72 ], [ 72, 73 ], [ 72, 74 ], [ 63, 75 ], [ 75, 76 ], [ 75, 77 ], [ 77, 78 ], [ 77, 79 ], [ 60, 80 ], [ 80, 81 ], [ 81, 82 ], [ 82, 83 ], [ 81, 84 ], [ 60, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 86, 89 ], [ 6, 90 ], [ 90, 91 ], [ 0, 92 ], [ 92, 93 ], [ 92, 94 ] ]
[ "import static java.lang.System.out;\n public class Main{\n public static void main(String[] args){\n String str = new java.util.Scanner(System.in).nextLine();\n String[] tmp = str.split(\" \");\n int W = Integer.parseInt(tmp[0]);\n int H = Integer.parseInt(tmp[1]);\n int x = Integer.parseInt(tmp[2]);\n int y = Integer.parseInt(tmp[3]);\n int r = Integer.parseInt(tmp[4]);\n \n if(r <= x && x <= (W - r) && r <= y && y <= (H - r)){\n out.println(\"Yes\");\n }\n else{\n out.println(\"No\"); \n }\n \n }\n }", "import static java.lang.System.out;", "import static java.lang.System.out;", "import static java.lang.System.out;", "public class Main{\n public static void main(String[] args){\n String str = new java.util.Scanner(System.in).nextLine();\n String[] tmp = str.split(\" \");\n int W = Integer.parseInt(tmp[0]);\n int H = Integer.parseInt(tmp[1]);\n int x = Integer.parseInt(tmp[2]);\n int y = Integer.parseInt(tmp[3]);\n int r = Integer.parseInt(tmp[4]);\n \n if(r <= x && x <= (W - r) && r <= y && y <= (H - r)){\n out.println(\"Yes\");\n }\n else{\n out.println(\"No\"); \n }\n \n }\n }", "Main", "public static void main(String[] args){\n String str = new java.util.Scanner(System.in).nextLine();\n String[] tmp = str.split(\" \");\n int W = Integer.parseInt(tmp[0]);\n int H = Integer.parseInt(tmp[1]);\n int x = Integer.parseInt(tmp[2]);\n int y = Integer.parseInt(tmp[3]);\n int r = Integer.parseInt(tmp[4]);\n \n if(r <= x && x <= (W - r) && r <= y && y <= (H - r)){\n out.println(\"Yes\");\n }\n else{\n out.println(\"No\"); \n }\n \n }", "main", "{\n String str = new java.util.Scanner(System.in).nextLine();\n String[] tmp = str.split(\" \");\n int W = Integer.parseInt(tmp[0]);\n int H = Integer.parseInt(tmp[1]);\n int x = Integer.parseInt(tmp[2]);\n int y = Integer.parseInt(tmp[3]);\n int r = Integer.parseInt(tmp[4]);\n \n if(r <= x && x <= (W - r) && r <= y && y <= (H - r)){\n out.println(\"Yes\");\n }\n else{\n out.println(\"No\"); \n }\n \n }", "String str = new java.util.Scanner(System.in).nextLine();", "str", "new java.util.Scanner(System.in).nextLine()", "new java.util.Scanner(System.in).nextLine", "new java.util.Scanner(System.in)", "String[] tmp = str.split(\" \");", "tmp", "str.split(\" \")", "str.split", "str", "\" \"", "int W = Integer.parseInt(tmp[0]);", "W", "Integer.parseInt(tmp[0])", "Integer.parseInt", "Integer", "tmp[0]", "tmp", "0", "int H = Integer.parseInt(tmp[1]);", "H", "Integer.parseInt(tmp[1])", "Integer.parseInt", "Integer", "tmp[1]", "tmp", "1", "int x = Integer.parseInt(tmp[2]);", "x", "Integer.parseInt(tmp[2])", "Integer.parseInt", "Integer", "tmp[2]", "tmp", "2", "int y = Integer.parseInt(tmp[3]);", "y", "Integer.parseInt(tmp[3])", "Integer.parseInt", "Integer", "tmp[3]", "tmp", "3", "int r = Integer.parseInt(tmp[4]);", "r", "Integer.parseInt(tmp[4])", "Integer.parseInt", "Integer", "tmp[4]", "tmp", "4", "if(r <= x && x <= (W - r) && r <= y && y <= (H - r)){\n out.println(\"Yes\");\n }\n else{\n out.println(\"No\"); \n }", "r <= x && x <= (W - r) && r <= y && y <= (H - r)", "r <= y", "r <= x && x <= (W - r) && r <= y && y <= (H - r)", "r <= x", "r", "x", "x <= (W - r)", "x", "(W - r)", "W", "r", "r <= y", "r", "y", "y <= (H - r)", "y", "(H - r)", "H", "r", "{\n out.println(\"Yes\");\n }", "out.println(\"Yes\")", "out.println", "out", "\"Yes\"", "{\n out.println(\"No\"); \n }", "out.println(\"No\")", "out.println", "out", "\"No\"", "String[] args", "args", "public class Main{\n public static void main(String[] args){\n String str = new java.util.Scanner(System.in).nextLine();\n String[] tmp = str.split(\" \");\n int W = Integer.parseInt(tmp[0]);\n int H = Integer.parseInt(tmp[1]);\n int x = Integer.parseInt(tmp[2]);\n int y = Integer.parseInt(tmp[3]);\n int r = Integer.parseInt(tmp[4]);\n \n if(r <= x && x <= (W - r) && r <= y && y <= (H - r)){\n out.println(\"Yes\");\n }\n else{\n out.println(\"No\"); \n }\n \n }\n }", "public class Main{\n public static void main(String[] args){\n String str = new java.util.Scanner(System.in).nextLine();\n String[] tmp = str.split(\" \");\n int W = Integer.parseInt(tmp[0]);\n int H = Integer.parseInt(tmp[1]);\n int x = Integer.parseInt(tmp[2]);\n int y = Integer.parseInt(tmp[3]);\n int r = Integer.parseInt(tmp[4]);\n \n if(r <= x && x <= (W - r) && r <= y && y <= (H - r)){\n out.println(\"Yes\");\n }\n else{\n out.println(\"No\"); \n }\n \n }\n }", "Main" ]
import static java.lang.System.out; public class Main{ public static void main(String[] args){ String str = new java.util.Scanner(System.in).nextLine(); String[] tmp = str.split(" "); int W = Integer.parseInt(tmp[0]); int H = Integer.parseInt(tmp[1]); int x = Integer.parseInt(tmp[2]); int y = Integer.parseInt(tmp[3]); int r = Integer.parseInt(tmp[4]); if(r <= x && x <= (W - r) && r <= y && y <= (H - r)){ out.println("Yes"); } else{ out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 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, 41, 13, 18, 13, 17, 41, 13, 18, 13, 17, 41, 13, 18, 13, 17, 41, 13, 18, 13, 17, 41, 13, 18, 13, 17, 14, 2, 2, 2, 2, 13, 13, 2, 13, 13, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 116, 5 ], [ 116, 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 ], [ 26, 27 ], [ 26, 28 ], [ 8, 29 ], [ 29, 30 ], [ 30, 31 ], [ 31, 32 ], [ 31, 33 ], [ 29, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 36, 38 ], [ 29, 39 ], [ 39, 40 ], [ 40, 41 ], [ 29, 42 ], [ 43, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 44, 48 ], [ 48, 49 ], [ 49, 50 ], [ 48, 51 ], [ 51, 52 ], [ 51, 53 ], [ 8, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 56, 58 ], [ 8, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 61, 63 ], [ 8, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 66, 68 ], [ 8, 69 ], [ 69, 70 ], [ 69, 71 ], [ 71, 72 ], [ 71, 73 ], [ 8, 74 ], [ 74, 75 ], [ 74, 76 ], [ 76, 77 ], [ 76, 78 ], [ 8, 79 ], [ 79, 80 ], [ 82, 81 ], [ 89, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 82, 86 ], [ 86, 87 ], [ 86, 88 ], [ 89, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 89, 93 ], [ 82, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 94, 98 ], [ 79, 99 ], [ 99, 100 ], [ 100, 101 ], [ 101, 102 ], [ 102, 103 ], [ 102, 104 ], [ 100, 105 ], [ 79, 106 ], [ 106, 107 ], [ 107, 108 ], [ 108, 109 ], [ 109, 110 ], [ 109, 111 ], [ 107, 112 ], [ 6, 113 ], [ 113, 114 ], [ 0, 115 ], [ 115, 116 ], [ 115, 117 ] ]
[ "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\tString line = sc.nextLine();\n\t\tString[] ss = line.split(\" \");\n\t\tint[] num = new int[ss.length];\n\t\tfor (int i = 0; i < ss.length; i++) {\n\t\t\tnum[i] = Integer.parseInt(ss[i]);\n\t\t}\n\t\tint w = num[0];\n\t\tint h = num[1];\n\t\tint x = num[2];\n\t\tint y = num[3];\n\t\tint r = num[4];\n\t\tif (x < r || y < r || x + r > w || y + r > h) {\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] ss = line.split(\" \");\n\t\tint[] num = new int[ss.length];\n\t\tfor (int i = 0; i < ss.length; i++) {\n\t\t\tnum[i] = Integer.parseInt(ss[i]);\n\t\t}\n\t\tint w = num[0];\n\t\tint h = num[1];\n\t\tint x = num[2];\n\t\tint y = num[3];\n\t\tint r = num[4];\n\t\tif (x < r || y < r || x + r > w || y + r > h) {\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] ss = line.split(\" \");\n\t\tint[] num = new int[ss.length];\n\t\tfor (int i = 0; i < ss.length; i++) {\n\t\t\tnum[i] = Integer.parseInt(ss[i]);\n\t\t}\n\t\tint w = num[0];\n\t\tint h = num[1];\n\t\tint x = num[2];\n\t\tint y = num[3];\n\t\tint r = num[4];\n\t\tif (x < r || y < r || x + r > w || y + r > h) {\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] ss = line.split(\" \");\n\t\tint[] num = new int[ss.length];\n\t\tfor (int i = 0; i < ss.length; i++) {\n\t\t\tnum[i] = Integer.parseInt(ss[i]);\n\t\t}\n\t\tint w = num[0];\n\t\tint h = num[1];\n\t\tint x = num[2];\n\t\tint y = num[3];\n\t\tint r = num[4];\n\t\tif (x < r || y < r || x + r > w || y + r > h) {\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "String line = sc.nextLine();", "line", "sc.nextLine()", "sc.nextLine", "sc", "String[] ss = line.split(\" \");", "ss", "line.split(\" \")", "line.split", "line", "\" \"", "int[] num = new int[ss.length];", "num", "new int[ss.length]", "ss.length", "ss", "ss.length", "for (int i = 0; i < ss.length; i++) {\n\t\t\tnum[i] = Integer.parseInt(ss[i]);\n\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < ss.length", "i", "ss.length", "ss", "ss.length", "i++", "i++", "i", "{\n\t\t\tnum[i] = Integer.parseInt(ss[i]);\n\t\t}", "{\n\t\t\tnum[i] = Integer.parseInt(ss[i]);\n\t\t}", "num[i] = Integer.parseInt(ss[i])", "num[i]", "num", "i", "Integer.parseInt(ss[i])", "Integer.parseInt", "Integer", "ss[i]", "ss", "i", "int w = num[0];", "w", "num[0]", "num", "0", "int h = num[1];", "h", "num[1]", "num", "1", "int x = num[2];", "x", "num[2]", "num", "2", "int y = num[3];", "y", "num[3]", "num", "3", "int r = num[4];", "r", "num[4]", "num", "4", "if (x < r || y < r || x + r > w || y + r > h) {\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "x < r || y < r || x + r > w || y + r > h", "x + r > w", "x < r || y < r || x + r > w || y + r > h", "x < r", "x", "r", "y < r", "y", "r", "x + r > w", "x + r", "x", "r", "w", "y + r > h", "y + r", "y", "r", "h", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] ss = line.split(\" \");\n\t\tint[] num = new int[ss.length];\n\t\tfor (int i = 0; i < ss.length; i++) {\n\t\t\tnum[i] = Integer.parseInt(ss[i]);\n\t\t}\n\t\tint w = num[0];\n\t\tint h = num[1];\n\t\tint x = num[2];\n\t\tint y = num[3];\n\t\tint r = num[4];\n\t\tif (x < r || y < r || x + r > w || y + r > h) {\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] ss = line.split(\" \");\n\t\tint[] num = new int[ss.length];\n\t\tfor (int i = 0; i < ss.length; i++) {\n\t\t\tnum[i] = Integer.parseInt(ss[i]);\n\t\t}\n\t\tint w = num[0];\n\t\tint h = num[1];\n\t\tint x = num[2];\n\t\tint y = num[3];\n\t\tint r = num[4];\n\t\tif (x < r || y < r || x + r > w || y + r > h) {\n\t\t\tSystem.out.println(\"No\");\n\t\t} else {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String line = sc.nextLine(); String[] ss = line.split(" "); int[] num = new int[ss.length]; for (int i = 0; i < ss.length; i++) { num[i] = Integer.parseInt(ss[i]); } int w = num[0]; int h = num[1]; int x = num[2]; int y = num[3]; int r = num[4]; if (x < r || y < r || x + r > w || y + r > h) { System.out.println("No"); } else { System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 84, 8 ], [ 84, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 11, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 28, 29 ], [ 11, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 11, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 38, 39 ], [ 11, 40 ], [ 40, 41 ], [ 41, 42 ], [ 11, 43 ], [ 43, 44 ], [ 46, 45 ], [ 57, 46 ], [ 46, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 47, 51 ], [ 46, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 52, 56 ], [ 57, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 57, 61 ], [ 46, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 62, 66 ], [ 43, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 70, 71 ], [ 70, 72 ], [ 68, 73 ], [ 43, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 75, 80 ], [ 9, 81 ], [ 81, 82 ], [ 0, 83 ], [ 83, 84 ], [ 83, 85 ] ]
[ "import java.io.*;\nimport java.util.*;\npublic class Main {\n\tpublic static void main (String args[]){\n\tScanner sc=new Scanner(new InputStreamReader(System.in));\n\tint w=sc.nextInt();\n\tint h=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tsc.close();\n\tif(x-r>=0&&x+r<=w&&y-r>=0&&y+r<=h){\n\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\tSystem.out.println(\"No\");\n\t}\n\t}\n}", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "public class Main {\n\tpublic static void main (String args[]){\n\tScanner sc=new Scanner(new InputStreamReader(System.in));\n\tint w=sc.nextInt();\n\tint h=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tsc.close();\n\tif(x-r>=0&&x+r<=w&&y-r>=0&&y+r<=h){\n\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\tSystem.out.println(\"No\");\n\t}\n\t}\n}", "Main", "public static void main (String args[]){\n\tScanner sc=new Scanner(new InputStreamReader(System.in));\n\tint w=sc.nextInt();\n\tint h=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tsc.close();\n\tif(x-r>=0&&x+r<=w&&y-r>=0&&y+r<=h){\n\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\tSystem.out.println(\"No\");\n\t}\n\t}", "main", "{\n\tScanner sc=new Scanner(new InputStreamReader(System.in));\n\tint w=sc.nextInt();\n\tint h=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tsc.close();\n\tif(x-r>=0&&x+r<=w&&y-r>=0&&y+r<=h){\n\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\tSystem.out.println(\"No\");\n\t}\n\t}", "Scanner sc=new Scanner(new InputStreamReader(System.in));", "sc", "new Scanner(new InputStreamReader(System.in))", "int w=sc.nextInt();", "w", "sc.nextInt()", "sc.nextInt", "sc", "int h=sc.nextInt();", "h", "sc.nextInt()", "sc.nextInt", "sc", "int x=sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y=sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r=sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "sc.close()", "sc.close", "sc", "if(x-r>=0&&x+r<=w&&y-r>=0&&y+r<=h){\n\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\tSystem.out.println(\"No\");\n\t}", "x-r>=0&&x+r<=w&&y-r>=0&&y+r<=h", "y-r>=0", "x-r>=0&&x+r<=w&&y-r>=0&&y+r<=h", "x-r>=0", "x-r", "x", "r", "0", "x+r<=w", "x+r", "x", "r", "w", "y-r>=0", "y-r", "y", "r", "0", "y+r<=h", "y+r", "y", "r", "h", "{\n\t\tSystem.out.println(\"Yes\");\n\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\tSystem.out.println(\"No\");\n\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String args[]", "args", "public class Main {\n\tpublic static void main (String args[]){\n\tScanner sc=new Scanner(new InputStreamReader(System.in));\n\tint w=sc.nextInt();\n\tint h=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tsc.close();\n\tif(x-r>=0&&x+r<=w&&y-r>=0&&y+r<=h){\n\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\tSystem.out.println(\"No\");\n\t}\n\t}\n}", "public class Main {\n\tpublic static void main (String args[]){\n\tScanner sc=new Scanner(new InputStreamReader(System.in));\n\tint w=sc.nextInt();\n\tint h=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tsc.close();\n\tif(x-r>=0&&x+r<=w&&y-r>=0&&y+r<=h){\n\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\tSystem.out.println(\"No\");\n\t}\n\t}\n}", "Main" ]
import java.io.*; import java.util.*; public class Main { public static void main (String args[]){ Scanner sc=new Scanner(new InputStreamReader(System.in)); int w=sc.nextInt(); int h=sc.nextInt(); int x=sc.nextInt(); int y=sc.nextInt(); int r=sc.nextInt(); sc.close(); if(x-r>=0&&x+r<=w&&y-r>=0&&y+r<=h){ System.out.println("Yes"); } else{ System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 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, 18, 13, 17, 41, 13, 17, 14, 2, 2, 2, 13, 13, 17, 2, 2, 2, 13, 13, 13, 17, 30, 14, 2, 2, 2, 13, 13, 17, 2, 2, 2, 13, 13, 13, 17, 30, 0, 13, 17, 30, 0, 13, 17, 30, 0, 13, 17, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 126, 5 ], [ 126, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 8, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 17, 20 ], [ 8, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 23, 26 ], [ 26, 27 ], [ 26, 28 ], [ 8, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 31, 34 ], [ 34, 35 ], [ 34, 36 ], [ 8, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 39, 42 ], [ 42, 43 ], [ 42, 44 ], [ 8, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 48, 49 ], [ 47, 50 ], [ 50, 51 ], [ 50, 52 ], [ 8, 53 ], [ 53, 54 ], [ 53, 55 ], [ 55, 56 ], [ 56, 57 ], [ 55, 58 ], [ 58, 59 ], [ 58, 60 ], [ 8, 61 ], [ 61, 62 ], [ 61, 63 ], [ 8, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 66, 70 ], [ 65, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 76 ], [ 71, 77 ], [ 64, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 81, 82 ], [ 82, 83 ], [ 82, 84 ], [ 81, 85 ], [ 80, 86 ], [ 86, 87 ], [ 87, 88 ], [ 88, 89 ], [ 88, 90 ], [ 87, 91 ], [ 86, 92 ], [ 79, 93 ], [ 93, 94 ], [ 94, 95 ], [ 94, 96 ], [ 79, 97 ], [ 97, 98 ], [ 98, 99 ], [ 98, 100 ], [ 64, 101 ], [ 101, 102 ], [ 102, 103 ], [ 102, 104 ], [ 8, 105 ], [ 105, 106 ], [ 106, 107 ], [ 106, 108 ], [ 105, 109 ], [ 109, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 112, 114 ], [ 110, 115 ], [ 105, 116 ], [ 116, 117 ], [ 117, 118 ], [ 118, 119 ], [ 119, 120 ], [ 119, 121 ], [ 117, 122 ], [ 6, 123 ], [ 123, 124 ], [ 0, 125 ], [ 125, 126 ], [ 125, 127 ] ]
[ "import java.io.*;\n\npublic class Main {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n\t\tString inputed = new String(in.readLine());\n\n\t\tString value[] = inputed.split(\"[\\\\s]+\");\n\t\t//int intInputed = Integer.parseInt(inputed);\n\n\t\tint W = Integer.parseInt(value[0]);\n\t\tint H = Integer.parseInt(value[1]);\n\t\tint x = Integer.parseInt(value[2]);\n\t\tint y = Integer.parseInt(value[3]);\n\t\tint r = Integer.parseInt(value[4]);\n\n\t\tboolean jugde = true;\n\n\t\tif ((x - r >= 0 ) && ((x + r) - W <= 0)) {\n\t\t\tif ((y - r >= 0 ) && ((y + r) - H <= 0)) {\n\t\t\t\tjugde = true;\n\t\t\t} else {\n\t\t\t\tjugde = false;\n\t\t\t}\n\t\t} else {\n\t\t\tjugde = false;\n\t\t}\n\n\t\tif (jugde == true) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "import java.io.*;", "io.*", "java", "public class Main {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n\t\tString inputed = new String(in.readLine());\n\n\t\tString value[] = inputed.split(\"[\\\\s]+\");\n\t\t//int intInputed = Integer.parseInt(inputed);\n\n\t\tint W = Integer.parseInt(value[0]);\n\t\tint H = Integer.parseInt(value[1]);\n\t\tint x = Integer.parseInt(value[2]);\n\t\tint y = Integer.parseInt(value[3]);\n\t\tint r = Integer.parseInt(value[4]);\n\n\t\tboolean jugde = true;\n\n\t\tif ((x - r >= 0 ) && ((x + r) - W <= 0)) {\n\t\t\tif ((y - r >= 0 ) && ((y + r) - H <= 0)) {\n\t\t\t\tjugde = true;\n\t\t\t} else {\n\t\t\t\tjugde = false;\n\t\t\t}\n\t\t} else {\n\t\t\tjugde = false;\n\t\t}\n\n\t\tif (jugde == true) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) throws IOException {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n\t\tString inputed = new String(in.readLine());\n\n\t\tString value[] = inputed.split(\"[\\\\s]+\");\n\t\t//int intInputed = Integer.parseInt(inputed);\n\n\t\tint W = Integer.parseInt(value[0]);\n\t\tint H = Integer.parseInt(value[1]);\n\t\tint x = Integer.parseInt(value[2]);\n\t\tint y = Integer.parseInt(value[3]);\n\t\tint r = Integer.parseInt(value[4]);\n\n\t\tboolean jugde = true;\n\n\t\tif ((x - r >= 0 ) && ((x + r) - W <= 0)) {\n\t\t\tif ((y - r >= 0 ) && ((y + r) - H <= 0)) {\n\t\t\t\tjugde = true;\n\t\t\t} else {\n\t\t\t\tjugde = false;\n\t\t\t}\n\t\t} else {\n\t\t\tjugde = false;\n\t\t}\n\n\t\tif (jugde == true) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}", "main", "{\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n\t\tString inputed = new String(in.readLine());\n\n\t\tString value[] = inputed.split(\"[\\\\s]+\");\n\t\t//int intInputed = Integer.parseInt(inputed);\n\n\t\tint W = Integer.parseInt(value[0]);\n\t\tint H = Integer.parseInt(value[1]);\n\t\tint x = Integer.parseInt(value[2]);\n\t\tint y = Integer.parseInt(value[3]);\n\t\tint r = Integer.parseInt(value[4]);\n\n\t\tboolean jugde = true;\n\n\t\tif ((x - r >= 0 ) && ((x + r) - W <= 0)) {\n\t\t\tif ((y - r >= 0 ) && ((y + r) - H <= 0)) {\n\t\t\t\tjugde = true;\n\t\t\t} else {\n\t\t\t\tjugde = false;\n\t\t\t}\n\t\t} else {\n\t\t\tjugde = false;\n\t\t}\n\n\t\tif (jugde == true) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}", "BufferedReader in = new BufferedReader(new InputStreamReader(System.in));", "in", "new BufferedReader(new InputStreamReader(System.in))", "String inputed = new String(in.readLine());", "inputed", "new String(in.readLine())", "String value[] = inputed.split(\"[\\\\s]+\");", "value", "inputed.split(\"[\\\\s]+\")", "inputed.split", "inputed", "\"[\\\\s]+\"", "int W = Integer.parseInt(value[0]);", "W", "Integer.parseInt(value[0])", "Integer.parseInt", "Integer", "value[0]", "value", "0", "int H = Integer.parseInt(value[1]);", "H", "Integer.parseInt(value[1])", "Integer.parseInt", "Integer", "value[1]", "value", "1", "int x = Integer.parseInt(value[2]);", "x", "Integer.parseInt(value[2])", "Integer.parseInt", "Integer", "value[2]", "value", "2", "int y = Integer.parseInt(value[3]);", "y", "Integer.parseInt(value[3])", "Integer.parseInt", "Integer", "value[3]", "value", "3", "int r = Integer.parseInt(value[4]);", "r", "Integer.parseInt(value[4])", "Integer.parseInt", "Integer", "value[4]", "value", "4", "boolean jugde = true;", "jugde", "true", "if ((x - r >= 0 ) && ((x + r) - W <= 0)) {\n\t\t\tif ((y - r >= 0 ) && ((y + r) - H <= 0)) {\n\t\t\t\tjugde = true;\n\t\t\t} else {\n\t\t\t\tjugde = false;\n\t\t\t}\n\t\t} else {\n\t\t\tjugde = false;\n\t\t}", "(x - r >= 0 ) && ((x + r) - W <= 0)", "(x - r >= 0 )", "x - r", "x", "r", "0", "((x + r) - W <= 0)", "(x + r) - W", "(x + r)", "x", "r", "W", "0", "{\n\t\t\tif ((y - r >= 0 ) && ((y + r) - H <= 0)) {\n\t\t\t\tjugde = true;\n\t\t\t} else {\n\t\t\t\tjugde = false;\n\t\t\t}\n\t\t}", "if ((y - r >= 0 ) && ((y + r) - H <= 0)) {\n\t\t\t\tjugde = true;\n\t\t\t} else {\n\t\t\t\tjugde = false;\n\t\t\t}", "(y - r >= 0 ) && ((y + r) - H <= 0)", "(y - r >= 0 )", "y - r", "y", "r", "0", "((y + r) - H <= 0)", "(y + r) - H", "(y + r)", "y", "r", "H", "0", "{\n\t\t\t\tjugde = true;\n\t\t\t}", "jugde = true", "jugde", "true", "{\n\t\t\t\tjugde = false;\n\t\t\t}", "jugde = false", "jugde", "false", "{\n\t\t\tjugde = false;\n\t\t}", "jugde = false", "jugde", "false", "if (jugde == true) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "jugde == true", "jugde", "true", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n\t\tString inputed = new String(in.readLine());\n\n\t\tString value[] = inputed.split(\"[\\\\s]+\");\n\t\t//int intInputed = Integer.parseInt(inputed);\n\n\t\tint W = Integer.parseInt(value[0]);\n\t\tint H = Integer.parseInt(value[1]);\n\t\tint x = Integer.parseInt(value[2]);\n\t\tint y = Integer.parseInt(value[3]);\n\t\tint r = Integer.parseInt(value[4]);\n\n\t\tboolean jugde = true;\n\n\t\tif ((x - r >= 0 ) && ((x + r) - W <= 0)) {\n\t\t\tif ((y - r >= 0 ) && ((y + r) - H <= 0)) {\n\t\t\t\tjugde = true;\n\t\t\t} else {\n\t\t\t\tjugde = false;\n\t\t\t}\n\t\t} else {\n\t\t\tjugde = false;\n\t\t}\n\n\t\tif (jugde == true) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader in = new BufferedReader(new InputStreamReader(System.in));\n\t\tString inputed = new String(in.readLine());\n\n\t\tString value[] = inputed.split(\"[\\\\s]+\");\n\t\t//int intInputed = Integer.parseInt(inputed);\n\n\t\tint W = Integer.parseInt(value[0]);\n\t\tint H = Integer.parseInt(value[1]);\n\t\tint x = Integer.parseInt(value[2]);\n\t\tint y = Integer.parseInt(value[3]);\n\t\tint r = Integer.parseInt(value[4]);\n\n\t\tboolean jugde = true;\n\n\t\tif ((x - r >= 0 ) && ((x + r) - W <= 0)) {\n\t\t\tif ((y - r >= 0 ) && ((y + r) - H <= 0)) {\n\t\t\t\tjugde = true;\n\t\t\t} else {\n\t\t\t\tjugde = false;\n\t\t\t}\n\t\t} else {\n\t\t\tjugde = false;\n\t\t}\n\n\t\tif (jugde == true) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "Main" ]
import java.io.*; public class Main { public static void main(String[] args) throws IOException { BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); String inputed = new String(in.readLine()); String value[] = inputed.split("[\\s]+"); //int intInputed = Integer.parseInt(inputed); int W = Integer.parseInt(value[0]); int H = Integer.parseInt(value[1]); int x = Integer.parseInt(value[2]); int y = Integer.parseInt(value[3]); int r = Integer.parseInt(value[4]); boolean jugde = true; if ((x - r >= 0 ) && ((x + r) - W <= 0)) { if ((y - r >= 0 ) && ((y + r) - H <= 0)) { jugde = true; } else { jugde = false; } } else { jugde = false; } if (jugde == true) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 0, 13, 17, 4, 18, 18, 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 ], [ 4, 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 ], [ 25, 26 ], [ 11, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 11, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 11, 37 ], [ 37, 38 ], [ 37, 39 ], [ 11, 40 ], [ 40, 41 ], [ 43, 42 ], [ 54, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 44, 48 ], [ 43, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 49, 53 ], [ 54, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 54, 58 ], [ 43, 59 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 59, 63 ], [ 40, 64 ], [ 64, 65 ], [ 64, 66 ], [ 11, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 67, 72 ], [ 4, 73 ], [ 73, 74 ], [ 73, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 73, 79 ], [ 79, 80 ] ]
[ "import java.util.*;\nclass Main{\n Scanner sc=new Scanner(System.in);\n void main(){\n\tint w=sc.nextInt();\n\tint h=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tString ans=\"Yes\";\n\tif(x-r<0||x+r>w||y-r<0||y+r>h)ans=\"No\";\n\tSystem.out.println(ans);\n }\n public static void main(String[]ag){\n\tnew Main().main();\n }\n}", "import java.util.*;", "util.*", "java", "class Main{\n Scanner sc=new Scanner(System.in);\n void main(){\n\tint w=sc.nextInt();\n\tint h=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tString ans=\"Yes\";\n\tif(x-r<0||x+r>w||y-r<0||y+r>h)ans=\"No\";\n\tSystem.out.println(ans);\n }\n public static void main(String[]ag){\n\tnew Main().main();\n }\n}", "Main", "Scanner sc=new Scanner(System.in);", "sc", "new Scanner(System.in)", "void main(){\n\tint w=sc.nextInt();\n\tint h=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tString ans=\"Yes\";\n\tif(x-r<0||x+r>w||y-r<0||y+r>h)ans=\"No\";\n\tSystem.out.println(ans);\n }", "main", "{\n\tint w=sc.nextInt();\n\tint h=sc.nextInt();\n\tint x=sc.nextInt();\n\tint y=sc.nextInt();\n\tint r=sc.nextInt();\n\tString ans=\"Yes\";\n\tif(x-r<0||x+r>w||y-r<0||y+r>h)ans=\"No\";\n\tSystem.out.println(ans);\n }", "int w=sc.nextInt();", "w", "sc.nextInt()", "sc.nextInt", "sc", "int h=sc.nextInt();", "h", "sc.nextInt()", "sc.nextInt", "sc", "int x=sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y=sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r=sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "String ans=\"Yes\";", "ans", "\"Yes\"", "if(x-r<0||x+r>w||y-r<0||y+r>h)ans=\"No\";", "x-r<0||x+r>w||y-r<0||y+r>h", "y-r<0", "x-r<0||x+r>w||y-r<0||y+r>h", "x-r<0", "x-r", "x", "r", "0", "x+r>w", "x+r", "x", "r", "w", "y-r<0", "y-r", "y", "r", "0", "y+r>h", "y+r", "y", "r", "h", "ans=\"No\"", "ans", "\"No\"", "System.out.println(ans)", "System.out.println", "System.out", "System", "System.out", "ans", "public static void main(String[]ag){\n\tnew Main().main();\n }", "main", "{\n\tnew Main().main();\n }", "new Main().main()", "new Main().main", "new Main()", "String[]ag", "ag" ]
import java.util.*; class Main{ Scanner sc=new Scanner(System.in); void main(){ int w=sc.nextInt(); int h=sc.nextInt(); int x=sc.nextInt(); int y=sc.nextInt(); int r=sc.nextInt(); String ans="Yes"; if(x-r<0||x+r>w||y-r<0||y+r>h)ans="No"; System.out.println(ans); } public static void main(String[]ag){ new Main().main(); } }
[ 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, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 14, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 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 ], [ 42, 43 ], [ 41, 44 ], [ 44, 45 ], [ 44, 46 ], [ 8, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 50, 51 ], [ 49, 52 ], [ 52, 53 ], [ 52, 54 ], [ 8, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 58, 59 ], [ 57, 60 ], [ 60, 61 ], [ 60, 62 ], [ 8, 63 ], [ 63, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 66, 68 ], [ 65, 69 ], [ 64, 70 ], [ 70, 71 ], [ 71, 72 ], [ 71, 73 ], [ 70, 74 ], [ 63, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 76, 81 ], [ 63, 82 ], [ 82, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 85, 87 ], [ 84, 88 ], [ 83, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 89, 93 ], [ 82, 94 ], [ 94, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 97, 99 ], [ 95, 100 ], [ 82, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 104, 105 ], [ 104, 106 ], [ 102, 107 ], [ 6, 108 ], [ 108, 109 ] ]
[ "import java.io.*;\n\nclass Main{\n public static void main(String[] args) throws Exception{\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String num1 = br.readLine();\n String[] num2 = num1.split(\" \");\n\n int W = Integer.parseInt(num2[0]);\n int H = Integer.parseInt(num2[1]);\n int x = Integer.parseInt(num2[2]);\n int y = Integer.parseInt(num2[3]);\n int r = Integer.parseInt(num2[4]);\n\n if(x - r < 0 || y - r < 0){\n System.out.println(\"No\");\n }else if(x + r > W || y + r > H){\n System.out.println(\"No\");\n }else {\n System.out.println(\"Yes\");\n }\n\n }\n}", "import java.io.*;", "io.*", "java", "class Main{\n public static void main(String[] args) throws Exception{\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String num1 = br.readLine();\n String[] num2 = num1.split(\" \");\n\n int W = Integer.parseInt(num2[0]);\n int H = Integer.parseInt(num2[1]);\n int x = Integer.parseInt(num2[2]);\n int y = Integer.parseInt(num2[3]);\n int r = Integer.parseInt(num2[4]);\n\n if(x - r < 0 || y - r < 0){\n System.out.println(\"No\");\n }else if(x + r > W || y + r > H){\n System.out.println(\"No\");\n }else {\n System.out.println(\"Yes\");\n }\n\n }\n}", "Main", "public static void main(String[] args) throws Exception{\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String num1 = br.readLine();\n String[] num2 = num1.split(\" \");\n\n int W = Integer.parseInt(num2[0]);\n int H = Integer.parseInt(num2[1]);\n int x = Integer.parseInt(num2[2]);\n int y = Integer.parseInt(num2[3]);\n int r = Integer.parseInt(num2[4]);\n\n if(x - r < 0 || y - r < 0){\n System.out.println(\"No\");\n }else if(x + r > W || y + r > H){\n System.out.println(\"No\");\n }else {\n System.out.println(\"Yes\");\n }\n\n }", "main", "{\n\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String num1 = br.readLine();\n String[] num2 = num1.split(\" \");\n\n int W = Integer.parseInt(num2[0]);\n int H = Integer.parseInt(num2[1]);\n int x = Integer.parseInt(num2[2]);\n int y = Integer.parseInt(num2[3]);\n int r = Integer.parseInt(num2[4]);\n\n if(x - r < 0 || y - r < 0){\n System.out.println(\"No\");\n }else if(x + r > W || y + r > H){\n System.out.println(\"No\");\n }else {\n System.out.println(\"Yes\");\n }\n\n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String num1 = br.readLine();", "num1", "br.readLine()", "br.readLine", "br", "String[] num2 = num1.split(\" \");", "num2", "num1.split(\" \")", "num1.split", "num1", "\" \"", "int W = Integer.parseInt(num2[0]);", "W", "Integer.parseInt(num2[0])", "Integer.parseInt", "Integer", "num2[0]", "num2", "0", "int H = Integer.parseInt(num2[1]);", "H", "Integer.parseInt(num2[1])", "Integer.parseInt", "Integer", "num2[1]", "num2", "1", "int x = Integer.parseInt(num2[2]);", "x", "Integer.parseInt(num2[2])", "Integer.parseInt", "Integer", "num2[2]", "num2", "2", "int y = Integer.parseInt(num2[3]);", "y", "Integer.parseInt(num2[3])", "Integer.parseInt", "Integer", "num2[3]", "num2", "3", "int r = Integer.parseInt(num2[4]);", "r", "Integer.parseInt(num2[4])", "Integer.parseInt", "Integer", "num2[4]", "num2", "4", "if(x - r < 0 || y - r < 0){\n System.out.println(\"No\");\n }else if(x + r > W || y + r > H){\n System.out.println(\"No\");\n }else {\n System.out.println(\"Yes\");\n }", "x - r < 0 || y - r < 0", "x - r < 0", "x - r", "x", "r", "0", "y - r < 0", "y - r", "y", "r", "0", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(x + r > W || y + r > H){\n System.out.println(\"No\");\n }else {\n System.out.println(\"Yes\");\n }", "x + r > W || y + r > H", "x + r > W", "x + r", "x", "r", "W", "y + r > H", "y + r", "y", "r", "H", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args" ]
import java.io.*; class Main{ public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String num1 = br.readLine(); String[] num2 = num1.split(" "); int W = Integer.parseInt(num2[0]); int H = Integer.parseInt(num2[1]); int x = Integer.parseInt(num2[2]); int y = Integer.parseInt(num2[3]); int r = Integer.parseInt(num2[4]); if(x - r < 0 || y - r < 0){ System.out.println("No"); }else if(x + r > W || y + r > H){ System.out.println("No"); }else { System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 13, 2, 13, 13, 2, 13, 13, 2, 13, 2, 13, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 77, 8 ], [ 77, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 11, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 28, 29 ], [ 11, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 11, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 38, 39 ], [ 11, 40 ], [ 40, 41 ], [ 43, 42 ], [ 52, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 46, 48 ], [ 43, 49 ], [ 49, 50 ], [ 49, 51 ], [ 52, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 43, 57 ], [ 57, 58 ], [ 57, 59 ], [ 40, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 61, 66 ], [ 40, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 70, 71 ], [ 70, 72 ], [ 68, 73 ], [ 9, 74 ], [ 74, 75 ], [ 0, 76 ], [ 76, 77 ], [ 76, 78 ] ]
[ "import java.io.IOException;\nimport java.util.Scanner;\npublic class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\t\t// TODO ?????????????????????????????????????????????\n Scanner sc = new Scanner(System.in);\n int w = sc.nextInt();\n int h = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n \n if(x<=w-r && x>=r && y<=h-r && y>=r){System.out.println(\"Yes\");}\n else{System.out.println(\"No\");}\n \n \n\t}\n\n}", "import java.io.IOException;", "IOException", "java.io", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\t\t// TODO ?????????????????????????????????????????????\n Scanner sc = new Scanner(System.in);\n int w = sc.nextInt();\n int h = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n \n if(x<=w-r && x>=r && y<=h-r && y>=r){System.out.println(\"Yes\");}\n else{System.out.println(\"No\");}\n \n \n\t}\n\n}", "Main", "public static void main(String[] args) throws IOException{\n\t\t// TODO ?????????????????????????????????????????????\n Scanner sc = new Scanner(System.in);\n int w = sc.nextInt();\n int h = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n \n if(x<=w-r && x>=r && y<=h-r && y>=r){System.out.println(\"Yes\");}\n else{System.out.println(\"No\");}\n \n \n\t}", "main", "{\n\t\t// TODO ?????????????????????????????????????????????\n Scanner sc = new Scanner(System.in);\n int w = sc.nextInt();\n int h = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n \n if(x<=w-r && x>=r && y<=h-r && y>=r){System.out.println(\"Yes\");}\n else{System.out.println(\"No\");}\n \n \n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int w = sc.nextInt();", "w", "sc.nextInt()", "sc.nextInt", "sc", "int h = sc.nextInt();", "h", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "if(x<=w-r && x>=r && y<=h-r && y>=r){System.out.println(\"Yes\");}\n else{System.out.println(\"No\");}", "x<=w-r && x>=r && y<=h-r && y>=r", "y<=h-r", "x<=w-r && x>=r && y<=h-r && y>=r", "x<=w-r", "x", "w-r", "w", "r", "x>=r", "x", "r", "y<=h-r", "y", "h-r", "h", "r", "y>=r", "y", "r", "{System.out.println(\"Yes\");}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{System.out.println(\"No\");}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\t\t// TODO ?????????????????????????????????????????????\n Scanner sc = new Scanner(System.in);\n int w = sc.nextInt();\n int h = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n \n if(x<=w-r && x>=r && y<=h-r && y>=r){System.out.println(\"Yes\");}\n else{System.out.println(\"No\");}\n \n \n\t}\n\n}", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\t\t// TODO ?????????????????????????????????????????????\n Scanner sc = new Scanner(System.in);\n int w = sc.nextInt();\n int h = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n \n if(x<=w-r && x>=r && y<=h-r && y>=r){System.out.println(\"Yes\");}\n else{System.out.println(\"No\");}\n \n \n\t}\n\n}", "Main" ]
import java.io.IOException; import java.util.Scanner; public class Main { public static void main(String[] args) throws IOException{ // TODO ????????????????????????????????????????????? Scanner sc = new Scanner(System.in); int w = sc.nextInt(); int h = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int r = sc.nextInt(); if(x<=w-r && x>=r && y<=h-r && y>=r){System.out.println("Yes");} else{System.out.println("No");} } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 81, 8 ], [ 81, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 11, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 28, 29 ], [ 11, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 11, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 38, 39 ], [ 11, 40 ], [ 40, 41 ], [ 43, 42 ], [ 54, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 44, 48 ], [ 43, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 49, 53 ], [ 54, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 54, 58 ], [ 43, 59 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 59, 63 ], [ 40, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 65, 70 ], [ 40, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 74, 75 ], [ 74, 76 ], [ 72, 77 ], [ 9, 78 ], [ 78, 79 ], [ 0, 80 ], [ 80, 81 ], [ 80, 82 ] ]
[ "\n/* ITP1_2_D */\n\nimport java.io.*;\nimport java.util.*;\n\npublic class Main {\n public static void main (String[] args) throws java.lang.Exception {\n // 入力された値をゲット\n Scanner sc = new Scanner(System.in);\n\n int W = sc.nextInt(); // 1個目をWにセット\n int H = sc.nextInt(); // 1個目をHにセット\n int x = sc.nextInt(); // 1個目をxにセット\n int y = sc.nextInt(); // 1個目をyにセット\n int r = sc.nextInt(); // 1個目をrにセット\n\n if( ((x + r) <= W) && ((y + r) <= H) && ((x - r) >= 0) && ((y - r) >= 0) ) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}\n", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "public class Main {\n public static void main (String[] args) throws java.lang.Exception {\n // 入力された値をゲット\n Scanner sc = new Scanner(System.in);\n\n int W = sc.nextInt(); // 1個目をWにセット\n int H = sc.nextInt(); // 1個目をHにセット\n int x = sc.nextInt(); // 1個目をxにセット\n int y = sc.nextInt(); // 1個目をyにセット\n int r = sc.nextInt(); // 1個目をrにセット\n\n if( ((x + r) <= W) && ((y + r) <= H) && ((x - r) >= 0) && ((y - r) >= 0) ) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "Main", "public static void main (String[] args) throws java.lang.Exception {\n // 入力された値をゲット\n Scanner sc = new Scanner(System.in);\n\n int W = sc.nextInt(); // 1個目をWにセット\n int H = sc.nextInt(); // 1個目をHにセット\n int x = sc.nextInt(); // 1個目をxにセット\n int y = sc.nextInt(); // 1個目をyにセット\n int r = sc.nextInt(); // 1個目をrにセット\n\n if( ((x + r) <= W) && ((y + r) <= H) && ((x - r) >= 0) && ((y - r) >= 0) ) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }", "main", "{\n // 入力された値をゲット\n Scanner sc = new Scanner(System.in);\n\n int W = sc.nextInt(); // 1個目をWにセット\n int H = sc.nextInt(); // 1個目をHにセット\n int x = sc.nextInt(); // 1個目をxにセット\n int y = sc.nextInt(); // 1個目をyにセット\n int r = sc.nextInt(); // 1個目をrにセット\n\n if( ((x + r) <= W) && ((y + r) <= H) && ((x - r) >= 0) && ((y - r) >= 0) ) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int W = sc.nextInt();", "W", "sc.nextInt()", "sc.nextInt", "sc", "int H = sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "if( ((x + r) <= W) && ((y + r) <= H) && ((x - r) >= 0) && ((y - r) >= 0) ) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }", "((x + r) <= W) && ((y + r) <= H) && ((x - r) >= 0) && ((y - r) >= 0)", "((x - r) >= 0)", "((x + r) <= W) && ((y + r) <= H) && ((x - r) >= 0) && ((y - r) >= 0)", "((x + r) <= W)", "(x + r)", "x", "r", "W", "((y + r) <= H)", "(y + r)", "y", "r", "H", "((x - r) >= 0)", "(x - r)", "x", "r", "0", "((y - r) >= 0)", "(y - r)", "y", "r", "0", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n public static void main (String[] args) throws java.lang.Exception {\n // 入力された値をゲット\n Scanner sc = new Scanner(System.in);\n\n int W = sc.nextInt(); // 1個目をWにセット\n int H = sc.nextInt(); // 1個目をHにセット\n int x = sc.nextInt(); // 1個目をxにセット\n int y = sc.nextInt(); // 1個目をyにセット\n int r = sc.nextInt(); // 1個目をrにセット\n\n if( ((x + r) <= W) && ((y + r) <= H) && ((x - r) >= 0) && ((y - r) >= 0) ) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "public class Main {\n public static void main (String[] args) throws java.lang.Exception {\n // 入力された値をゲット\n Scanner sc = new Scanner(System.in);\n\n int W = sc.nextInt(); // 1個目をWにセット\n int H = sc.nextInt(); // 1個目をHにセット\n int x = sc.nextInt(); // 1個目をxにセット\n int y = sc.nextInt(); // 1個目をyにセット\n int r = sc.nextInt(); // 1個目をrにセット\n\n if( ((x + r) <= W) && ((y + r) <= H) && ((x - r) >= 0) && ((y - r) >= 0) ) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "Main" ]
/* ITP1_2_D */ import java.io.*; import java.util.*; public class Main { public static void main (String[] args) throws java.lang.Exception { // 入力された値をゲット Scanner sc = new Scanner(System.in); int W = sc.nextInt(); // 1個目をWにセット int H = sc.nextInt(); // 1個目をHにセット int x = sc.nextInt(); // 1個目をxにセット int y = sc.nextInt(); // 1個目をyにセット int r = sc.nextInt(); // 1個目をrにセット if( ((x + r) <= W) && ((y + r) <= H) && ((x - r) >= 0) && ((y - r) >= 0) ) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 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, 18, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 102, 5 ], [ 102, 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 ], [ 42, 43 ], [ 41, 44 ], [ 44, 45 ], [ 44, 46 ], [ 8, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 50, 51 ], [ 49, 52 ], [ 52, 53 ], [ 52, 54 ], [ 8, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 58, 59 ], [ 57, 60 ], [ 60, 61 ], [ 60, 62 ], [ 8, 63 ], [ 63, 64 ], [ 66, 65 ], [ 77, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 67, 71 ], [ 66, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 76 ], [ 77, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 77, 81 ], [ 66, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 82, 86 ], [ 63, 87 ], [ 87, 88 ], [ 88, 89 ], [ 89, 90 ], [ 89, 91 ], [ 87, 92 ], [ 63, 93 ], [ 93, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 93, 98 ], [ 6, 99 ], [ 99, 100 ], [ 0, 101 ], [ 101, 102 ], [ 101, 103 ] ]
[ "import java.io.*;\n \npublic class Main {\n public static void main(String[] args)throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String input = br.readLine();\n String[] cut = input.split(\" \");\n int width = Integer.parseInt(cut[0]);\n int height = Integer.parseInt(cut[1]);\n int x = Integer.parseInt(cut[2]);\n int y = Integer.parseInt(cut[3]);\n int r = Integer.parseInt(cut[4]);\n \n \n if(x + r <= width && y + r <= height && x - r >= 0 && y - r >= 0)\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\"); \n }\n}", "import java.io.*;", "io.*", "java", "public class Main {\n public static void main(String[] args)throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String input = br.readLine();\n String[] cut = input.split(\" \");\n int width = Integer.parseInt(cut[0]);\n int height = Integer.parseInt(cut[1]);\n int x = Integer.parseInt(cut[2]);\n int y = Integer.parseInt(cut[3]);\n int r = Integer.parseInt(cut[4]);\n \n \n if(x + r <= width && y + r <= height && x - r >= 0 && y - r >= 0)\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\"); \n }\n}", "Main", "public static void main(String[] args)throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String input = br.readLine();\n String[] cut = input.split(\" \");\n int width = Integer.parseInt(cut[0]);\n int height = Integer.parseInt(cut[1]);\n int x = Integer.parseInt(cut[2]);\n int y = Integer.parseInt(cut[3]);\n int r = Integer.parseInt(cut[4]);\n \n \n if(x + r <= width && y + r <= height && x - r >= 0 && y - r >= 0)\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\"); \n }", "main", "{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String input = br.readLine();\n String[] cut = input.split(\" \");\n int width = Integer.parseInt(cut[0]);\n int height = Integer.parseInt(cut[1]);\n int x = Integer.parseInt(cut[2]);\n int y = Integer.parseInt(cut[3]);\n int r = Integer.parseInt(cut[4]);\n \n \n if(x + r <= width && y + r <= height && x - r >= 0 && y - r >= 0)\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\"); \n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String input = br.readLine();", "input", "br.readLine()", "br.readLine", "br", "String[] cut = input.split(\" \");", "cut", "input.split(\" \")", "input.split", "input", "\" \"", "int width = Integer.parseInt(cut[0]);", "width", "Integer.parseInt(cut[0])", "Integer.parseInt", "Integer", "cut[0]", "cut", "0", "int height = Integer.parseInt(cut[1]);", "height", "Integer.parseInt(cut[1])", "Integer.parseInt", "Integer", "cut[1]", "cut", "1", "int x = Integer.parseInt(cut[2]);", "x", "Integer.parseInt(cut[2])", "Integer.parseInt", "Integer", "cut[2]", "cut", "2", "int y = Integer.parseInt(cut[3]);", "y", "Integer.parseInt(cut[3])", "Integer.parseInt", "Integer", "cut[3]", "cut", "3", "int r = Integer.parseInt(cut[4]);", "r", "Integer.parseInt(cut[4])", "Integer.parseInt", "Integer", "cut[4]", "cut", "4", "if(x + r <= width && y + r <= height && x - r >= 0 && y - r >= 0)\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\");", "x + r <= width && y + r <= height && x - r >= 0 && y - r >= 0", "x - r >= 0", "x + r <= width && y + r <= height && x - r >= 0 && y - r >= 0", "x + r <= width", "x + r", "x", "r", "width", "y + r <= height", "y + r", "y", "r", "height", "x - r >= 0", "x - r", "x", "r", "0", "y - r >= 0", "y - r", "y", "r", "0", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n public static void main(String[] args)throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String input = br.readLine();\n String[] cut = input.split(\" \");\n int width = Integer.parseInt(cut[0]);\n int height = Integer.parseInt(cut[1]);\n int x = Integer.parseInt(cut[2]);\n int y = Integer.parseInt(cut[3]);\n int r = Integer.parseInt(cut[4]);\n \n \n if(x + r <= width && y + r <= height && x - r >= 0 && y - r >= 0)\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\"); \n }\n}", "public class Main {\n public static void main(String[] args)throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String input = br.readLine();\n String[] cut = input.split(\" \");\n int width = Integer.parseInt(cut[0]);\n int height = Integer.parseInt(cut[1]);\n int x = Integer.parseInt(cut[2]);\n int y = Integer.parseInt(cut[3]);\n int r = Integer.parseInt(cut[4]);\n \n \n if(x + r <= width && y + r <= height && x - r >= 0 && y - r >= 0)\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\"); \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 input = br.readLine(); String[] cut = input.split(" "); int width = Integer.parseInt(cut[0]); int height = Integer.parseInt(cut[1]); int x = Integer.parseInt(cut[2]); int y = Integer.parseInt(cut[3]); int r = Integer.parseInt(cut[4]); if(x + r <= width && y + r <= height && x - r >= 0 && y - r >= 0) System.out.println("Yes"); else System.out.println("No"); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 38, 5, 13, 30, 30, 41, 13, 20, 41, 13, 0, 13, 4, 18, 13, 41, 13, 4, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 14, 2, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 121, 8 ], [ 121, 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 ], [ 16, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 16, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 29, 32 ], [ 16, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 36, 37 ], [ 35, 38 ], [ 38, 39 ], [ 38, 40 ], [ 16, 41 ], [ 41, 42 ], [ 41, 43 ], [ 43, 44 ], [ 44, 45 ], [ 43, 46 ], [ 46, 47 ], [ 46, 48 ], [ 16, 49 ], [ 49, 50 ], [ 49, 51 ], [ 51, 52 ], [ 52, 53 ], [ 51, 54 ], [ 54, 55 ], [ 54, 56 ], [ 16, 57 ], [ 57, 58 ], [ 57, 59 ], [ 59, 60 ], [ 60, 61 ], [ 59, 62 ], [ 62, 63 ], [ 62, 64 ], [ 16, 65 ], [ 65, 66 ], [ 65, 67 ], [ 67, 68 ], [ 68, 69 ], [ 67, 70 ], [ 70, 71 ], [ 70, 72 ], [ 16, 73 ], [ 73, 74 ], [ 74, 75 ], [ 75, 76 ], [ 75, 77 ], [ 77, 78 ], [ 77, 79 ], [ 74, 80 ], [ 80, 81 ], [ 81, 82 ], [ 81, 83 ], [ 80, 84 ], [ 73, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 88, 89 ], [ 88, 90 ], [ 86, 91 ], [ 73, 92 ], [ 92, 93 ], [ 93, 94 ], [ 94, 95 ], [ 94, 96 ], [ 96, 97 ], [ 96, 98 ], [ 93, 99 ], [ 99, 100 ], [ 100, 101 ], [ 100, 102 ], [ 99, 103 ], [ 92, 104 ], [ 104, 105 ], [ 105, 106 ], [ 106, 107 ], [ 107, 108 ], [ 107, 109 ], [ 105, 110 ], [ 92, 111 ], [ 111, 112 ], [ 112, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 112, 117 ], [ 9, 118 ], [ 118, 119 ], [ 0, 120 ], [ 120, 121 ], [ 120, 122 ] ]
[ "import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\npublic class Main {\npublic static void main(String[] args) {\n\ttry {\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString input;\n\t\t\tinput = buf.readLine();\n\t\t\t\n\t\t\tString[] strAry = input.split(\" \");\n\t\t int W = Integer.parseInt(strAry[0]);\n\t\t int H = Integer.parseInt(strAry[1]);\n\t\t int x = Integer.parseInt(strAry[2]);\n\t\t int y = Integer.parseInt(strAry[3]);\n\t\t int r = Integer.parseInt(strAry[4]);\n\t\t \n\t\t if(0 > (x - r) || (x + r) > W){\n\t\t \t \tSystem.out.println(\"No\"); \t \t\n\t\t }\n\t\t else if(0 > (y - r) || (y +r) > H){\n\t\t \t \tSystem.out.println(\"No\");\n\t\t }\n\t\t else{\n\t\t \t System.out.println(\"Yes\");\n\t\t }\n\t\t \n\t} catch (Exception e) {\n\t\t// TODO: handle exception\n\t}\n}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "public class Main {\npublic static void main(String[] args) {\n\ttry {\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString input;\n\t\t\tinput = buf.readLine();\n\t\t\t\n\t\t\tString[] strAry = input.split(\" \");\n\t\t int W = Integer.parseInt(strAry[0]);\n\t\t int H = Integer.parseInt(strAry[1]);\n\t\t int x = Integer.parseInt(strAry[2]);\n\t\t int y = Integer.parseInt(strAry[3]);\n\t\t int r = Integer.parseInt(strAry[4]);\n\t\t \n\t\t if(0 > (x - r) || (x + r) > W){\n\t\t \t \tSystem.out.println(\"No\"); \t \t\n\t\t }\n\t\t else if(0 > (y - r) || (y +r) > H){\n\t\t \t \tSystem.out.println(\"No\");\n\t\t }\n\t\t else{\n\t\t \t System.out.println(\"Yes\");\n\t\t }\n\t\t \n\t} catch (Exception e) {\n\t\t// TODO: handle exception\n\t}\n}\n}", "Main", "public static void main(String[] args) {\n\ttry {\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString input;\n\t\t\tinput = buf.readLine();\n\t\t\t\n\t\t\tString[] strAry = input.split(\" \");\n\t\t int W = Integer.parseInt(strAry[0]);\n\t\t int H = Integer.parseInt(strAry[1]);\n\t\t int x = Integer.parseInt(strAry[2]);\n\t\t int y = Integer.parseInt(strAry[3]);\n\t\t int r = Integer.parseInt(strAry[4]);\n\t\t \n\t\t if(0 > (x - r) || (x + r) > W){\n\t\t \t \tSystem.out.println(\"No\"); \t \t\n\t\t }\n\t\t else if(0 > (y - r) || (y +r) > H){\n\t\t \t \tSystem.out.println(\"No\");\n\t\t }\n\t\t else{\n\t\t \t System.out.println(\"Yes\");\n\t\t }\n\t\t \n\t} catch (Exception e) {\n\t\t// TODO: handle exception\n\t}\n}", "main", "{\n\ttry {\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString input;\n\t\t\tinput = buf.readLine();\n\t\t\t\n\t\t\tString[] strAry = input.split(\" \");\n\t\t int W = Integer.parseInt(strAry[0]);\n\t\t int H = Integer.parseInt(strAry[1]);\n\t\t int x = Integer.parseInt(strAry[2]);\n\t\t int y = Integer.parseInt(strAry[3]);\n\t\t int r = Integer.parseInt(strAry[4]);\n\t\t \n\t\t if(0 > (x - r) || (x + r) > W){\n\t\t \t \tSystem.out.println(\"No\"); \t \t\n\t\t }\n\t\t else if(0 > (y - r) || (y +r) > H){\n\t\t \t \tSystem.out.println(\"No\");\n\t\t }\n\t\t else{\n\t\t \t System.out.println(\"Yes\");\n\t\t }\n\t\t \n\t} catch (Exception e) {\n\t\t// TODO: handle exception\n\t}\n}", "try {\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString input;\n\t\t\tinput = buf.readLine();\n\t\t\t\n\t\t\tString[] strAry = input.split(\" \");\n\t\t int W = Integer.parseInt(strAry[0]);\n\t\t int H = Integer.parseInt(strAry[1]);\n\t\t int x = Integer.parseInt(strAry[2]);\n\t\t int y = Integer.parseInt(strAry[3]);\n\t\t int r = Integer.parseInt(strAry[4]);\n\t\t \n\t\t if(0 > (x - r) || (x + r) > W){\n\t\t \t \tSystem.out.println(\"No\"); \t \t\n\t\t }\n\t\t else if(0 > (y - r) || (y +r) > H){\n\t\t \t \tSystem.out.println(\"No\");\n\t\t }\n\t\t else{\n\t\t \t System.out.println(\"Yes\");\n\t\t }\n\t\t \n\t} catch (Exception e) {\n\t\t// TODO: handle exception\n\t}", "catch (Exception e) {\n\t\t// TODO: handle exception\n\t}", "Exception e", "{\n\t\t// TODO: handle exception\n\t}", "{\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString input;\n\t\t\tinput = buf.readLine();\n\t\t\t\n\t\t\tString[] strAry = input.split(\" \");\n\t\t int W = Integer.parseInt(strAry[0]);\n\t\t int H = Integer.parseInt(strAry[1]);\n\t\t int x = Integer.parseInt(strAry[2]);\n\t\t int y = Integer.parseInt(strAry[3]);\n\t\t int r = Integer.parseInt(strAry[4]);\n\t\t \n\t\t if(0 > (x - r) || (x + r) > W){\n\t\t \t \tSystem.out.println(\"No\"); \t \t\n\t\t }\n\t\t else if(0 > (y - r) || (y +r) > H){\n\t\t \t \tSystem.out.println(\"No\");\n\t\t }\n\t\t else{\n\t\t \t System.out.println(\"Yes\");\n\t\t }\n\t\t \n\t}", "BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));", "buf", "new BufferedReader(new InputStreamReader(System.in))", "String input;", "input", "input = buf.readLine()", "input", "buf.readLine()", "buf.readLine", "buf", "String[] strAry = input.split(\" \");", "strAry", "input.split(\" \")", "input.split", "input", "\" \"", "int W = Integer.parseInt(strAry[0]);", "W", "Integer.parseInt(strAry[0])", "Integer.parseInt", "Integer", "strAry[0]", "strAry", "0", "int H = Integer.parseInt(strAry[1]);", "H", "Integer.parseInt(strAry[1])", "Integer.parseInt", "Integer", "strAry[1]", "strAry", "1", "int x = Integer.parseInt(strAry[2]);", "x", "Integer.parseInt(strAry[2])", "Integer.parseInt", "Integer", "strAry[2]", "strAry", "2", "int y = Integer.parseInt(strAry[3]);", "y", "Integer.parseInt(strAry[3])", "Integer.parseInt", "Integer", "strAry[3]", "strAry", "3", "int r = Integer.parseInt(strAry[4]);", "r", "Integer.parseInt(strAry[4])", "Integer.parseInt", "Integer", "strAry[4]", "strAry", "4", "if(0 > (x - r) || (x + r) > W){\n\t\t \t \tSystem.out.println(\"No\"); \t \t\n\t\t }\n\t\t else if(0 > (y - r) || (y +r) > H){\n\t\t \t \tSystem.out.println(\"No\");\n\t\t }\n\t\t else{\n\t\t \t System.out.println(\"Yes\");\n\t\t }", "0 > (x - r) || (x + r) > W", "0 > (x - r)", "0", "(x - r)", "x", "r", "(x + r) > W", "(x + r)", "x", "r", "W", "{\n\t\t \t \tSystem.out.println(\"No\"); \t \t\n\t\t }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(0 > (y - r) || (y +r) > H){\n\t\t \t \tSystem.out.println(\"No\");\n\t\t }\n\t\t else{\n\t\t \t System.out.println(\"Yes\");\n\t\t }", "0 > (y - r) || (y +r) > H", "0 > (y - r)", "0", "(y - r)", "y", "r", "(y +r) > H", "(y +r)", "y", "r", "H", "{\n\t\t \t \tSystem.out.println(\"No\");\n\t\t }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n\t\t \t System.out.println(\"Yes\");\n\t\t }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main {\npublic static void main(String[] args) {\n\ttry {\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString input;\n\t\t\tinput = buf.readLine();\n\t\t\t\n\t\t\tString[] strAry = input.split(\" \");\n\t\t int W = Integer.parseInt(strAry[0]);\n\t\t int H = Integer.parseInt(strAry[1]);\n\t\t int x = Integer.parseInt(strAry[2]);\n\t\t int y = Integer.parseInt(strAry[3]);\n\t\t int r = Integer.parseInt(strAry[4]);\n\t\t \n\t\t if(0 > (x - r) || (x + r) > W){\n\t\t \t \tSystem.out.println(\"No\"); \t \t\n\t\t }\n\t\t else if(0 > (y - r) || (y +r) > H){\n\t\t \t \tSystem.out.println(\"No\");\n\t\t }\n\t\t else{\n\t\t \t System.out.println(\"Yes\");\n\t\t }\n\t\t \n\t} catch (Exception e) {\n\t\t// TODO: handle exception\n\t}\n}\n}", "public class Main {\npublic static void main(String[] args) {\n\ttry {\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString input;\n\t\t\tinput = buf.readLine();\n\t\t\t\n\t\t\tString[] strAry = input.split(\" \");\n\t\t int W = Integer.parseInt(strAry[0]);\n\t\t int H = Integer.parseInt(strAry[1]);\n\t\t int x = Integer.parseInt(strAry[2]);\n\t\t int y = Integer.parseInt(strAry[3]);\n\t\t int r = Integer.parseInt(strAry[4]);\n\t\t \n\t\t if(0 > (x - r) || (x + r) > W){\n\t\t \t \tSystem.out.println(\"No\"); \t \t\n\t\t }\n\t\t else if(0 > (y - r) || (y +r) > H){\n\t\t \t \tSystem.out.println(\"No\");\n\t\t }\n\t\t else{\n\t\t \t System.out.println(\"Yes\");\n\t\t }\n\t\t \n\t} catch (Exception e) {\n\t\t// TODO: handle exception\n\t}\n}\n}", "Main" ]
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) { try { BufferedReader buf = new BufferedReader(new InputStreamReader(System.in)); String input; input = buf.readLine(); String[] strAry = input.split(" "); int W = Integer.parseInt(strAry[0]); int H = Integer.parseInt(strAry[1]); int x = Integer.parseInt(strAry[2]); int y = Integer.parseInt(strAry[3]); int r = Integer.parseInt(strAry[4]); if(0 > (x - r) || (x + r) > W){ System.out.println("No"); } else if(0 > (y - r) || (y +r) > H){ System.out.println("No"); } else{ System.out.println("Yes"); } } catch (Exception e) { // TODO: handle exception } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 13, 13, 2, 13, 13, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 40, 39 ], [ 47, 40 ], [ 40, 41 ], [ 41, 42 ], [ 41, 43 ], [ 40, 44 ], [ 44, 45 ], [ 44, 46 ], [ 47, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 47, 51 ], [ 40, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 52, 56 ], [ 37, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 58, 63 ], [ 37, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 65, 70 ], [ 6, 71 ], [ 71, 72 ] ]
[ "import java.util.Scanner;\n\nclass Main{\n public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n\n if(x < r || y < r || x+r > W || y+r > H){\n System.out.println(\"No\");\n }else{\n System.out.println(\"Yes\");\n }\n }\n}\n", "import java.util.Scanner;", "Scanner", "java.util", "class Main{\n public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n\n if(x < r || y < r || x+r > W || y+r > H){\n System.out.println(\"No\");\n }else{\n System.out.println(\"Yes\");\n }\n }\n}", "Main", "public static void main(String args[]){\n Scanner sc = new Scanner(System.in);\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n\n if(x < r || y < r || x+r > W || y+r > H){\n System.out.println(\"No\");\n }else{\n System.out.println(\"Yes\");\n }\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int W = sc.nextInt();\n int H = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n\n if(x < r || y < r || x+r > W || y+r > H){\n System.out.println(\"No\");\n }else{\n System.out.println(\"Yes\");\n }\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int W = sc.nextInt();", "W", "sc.nextInt()", "sc.nextInt", "sc", "int H = sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "if(x < r || y < r || x+r > W || y+r > H){\n System.out.println(\"No\");\n }else{\n System.out.println(\"Yes\");\n }", "x < r || y < r || x+r > W || y+r > H", "x+r > W", "x < r || y < r || x+r > W || y+r > H", "x < r", "x", "r", "y < r", "y", "r", "x+r > W", "x+r", "x", "r", "W", "y+r > H", "y+r", "y", "r", "H", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String args[]", "args" ]
import java.util.Scanner; class Main{ public static void main(String args[]){ Scanner sc = new Scanner(System.in); int W = sc.nextInt(); int H = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int r = sc.nextInt(); if(x < r || y < r || x+r > W || y+r > H){ System.out.println("No"); }else{ System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 14, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 0, 13, 17, 14, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 0, 13, 17, 30, 0, 13, 17, 4, 18, 18, 13, 13, 13, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 87, 5 ], [ 87, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 8, 39 ], [ 39, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 41, 45 ], [ 40, 46 ], [ 46, 47 ], [ 47, 48 ], [ 47, 49 ], [ 46, 50 ], [ 39, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 39, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 58, 60 ], [ 57, 61 ], [ 56, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 62, 66 ], [ 55, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 55, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 8, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 75, 80 ], [ 8, 81 ], [ 81, 82 ], [ 82, 83 ], [ 6, 84 ], [ 84, 85 ], [ 0, 86 ], [ 86, 87 ], [ 86, 88 ] ]
[ "import java.util.Scanner;\npublic class Main {\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tint d = scan.nextInt();\n\t\tint e = scan.nextInt();\n\n\t\tString answer;\n\t\tif(c - e < 0 || c + e > a){\n\t\t\tanswer = \"No\";\n\t\t}else if(d - e < 0 || d + e >b){\n\t\t\tanswer = \"No\";\n\t\t}else{\n\t\t\tanswer = \"Yes\";\n\t\t}\n\n\t\tSystem.out.println(answer);\n\t\tscan.close();\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tint d = scan.nextInt();\n\t\tint e = scan.nextInt();\n\n\t\tString answer;\n\t\tif(c - e < 0 || c + e > a){\n\t\t\tanswer = \"No\";\n\t\t}else if(d - e < 0 || d + e >b){\n\t\t\tanswer = \"No\";\n\t\t}else{\n\t\t\tanswer = \"Yes\";\n\t\t}\n\n\t\tSystem.out.println(answer);\n\t\tscan.close();\n\t}\n}", "Main", "public static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tint d = scan.nextInt();\n\t\tint e = scan.nextInt();\n\n\t\tString answer;\n\t\tif(c - e < 0 || c + e > a){\n\t\t\tanswer = \"No\";\n\t\t}else if(d - e < 0 || d + e >b){\n\t\t\tanswer = \"No\";\n\t\t}else{\n\t\t\tanswer = \"Yes\";\n\t\t}\n\n\t\tSystem.out.println(answer);\n\t\tscan.close();\n\t}", "main", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tint d = scan.nextInt();\n\t\tint e = scan.nextInt();\n\n\t\tString answer;\n\t\tif(c - e < 0 || c + e > a){\n\t\t\tanswer = \"No\";\n\t\t}else if(d - e < 0 || d + e >b){\n\t\t\tanswer = \"No\";\n\t\t}else{\n\t\t\tanswer = \"Yes\";\n\t\t}\n\n\t\tSystem.out.println(answer);\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", "int c = scan.nextInt();", "c", "scan.nextInt()", "scan.nextInt", "scan", "int d = scan.nextInt();", "d", "scan.nextInt()", "scan.nextInt", "scan", "int e = scan.nextInt();", "e", "scan.nextInt()", "scan.nextInt", "scan", "String answer;", "answer", "if(c - e < 0 || c + e > a){\n\t\t\tanswer = \"No\";\n\t\t}else if(d - e < 0 || d + e >b){\n\t\t\tanswer = \"No\";\n\t\t}else{\n\t\t\tanswer = \"Yes\";\n\t\t}", "c - e < 0 || c + e > a", "c - e < 0", "c - e", "c", "e", "0", "c + e > a", "c + e", "c", "e", "a", "{\n\t\t\tanswer = \"No\";\n\t\t}", "answer = \"No\"", "answer", "\"No\"", "if(d - e < 0 || d + e >b){\n\t\t\tanswer = \"No\";\n\t\t}else{\n\t\t\tanswer = \"Yes\";\n\t\t}", "d - e < 0 || d + e >b", "d - e < 0", "d - e", "d", "e", "0", "d + e >b", "d + e", "d", "e", "b", "{\n\t\t\tanswer = \"No\";\n\t\t}", "answer = \"No\"", "answer", "\"No\"", "{\n\t\t\tanswer = \"Yes\";\n\t\t}", "answer = \"Yes\"", "answer", "\"Yes\"", "System.out.println(answer)", "System.out.println", "System.out", "System", "System.out", "answer", "scan.close()", "scan.close", "scan", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tint d = scan.nextInt();\n\t\tint e = scan.nextInt();\n\n\t\tString answer;\n\t\tif(c - e < 0 || c + e > a){\n\t\t\tanswer = \"No\";\n\t\t}else if(d - e < 0 || d + e >b){\n\t\t\tanswer = \"No\";\n\t\t}else{\n\t\t\tanswer = \"Yes\";\n\t\t}\n\n\t\tSystem.out.println(answer);\n\t\tscan.close();\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tint d = scan.nextInt();\n\t\tint e = scan.nextInt();\n\n\t\tString answer;\n\t\tif(c - e < 0 || c + e > a){\n\t\t\tanswer = \"No\";\n\t\t}else if(d - e < 0 || d + e >b){\n\t\t\tanswer = \"No\";\n\t\t}else{\n\t\t\tanswer = \"Yes\";\n\t\t}\n\n\t\tSystem.out.println(answer);\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(); int c = scan.nextInt(); int d = scan.nextInt(); int e = scan.nextInt(); String answer; if(c - e < 0 || c + e > a){ answer = "No"; }else if(d - e < 0 || d + e >b){ answer = "No"; }else{ answer = "Yes"; } System.out.println(answer); scan.close(); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 17, 42, 2, 2, 0, 13, 4, 18, 13, 17, 40, 4, 18, 13, 30, 41, 13, 20, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 0, 13, 4, 18, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 13, 41, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 0, 13, 17, 4, 18, 18, 13, 13, 8, 13, 17, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 133, 14 ], [ 133, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 21, 23 ], [ 17, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 26, 32 ], [ 25, 33 ], [ 33, 34 ], [ 34, 35 ], [ 35, 36 ], [ 24, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 37, 41 ], [ 41, 42 ], [ 37, 43 ], [ 43, 44 ], [ 37, 45 ], [ 45, 46 ], [ 37, 47 ], [ 47, 48 ], [ 37, 49 ], [ 49, 50 ], [ 37, 51 ], [ 51, 52 ], [ 51, 53 ], [ 53, 54 ], [ 54, 55 ], [ 53, 56 ], [ 56, 57 ], [ 57, 58 ], [ 37, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 62, 63 ], [ 61, 64 ], [ 64, 65 ], [ 65, 66 ], [ 37, 67 ], [ 67, 68 ], [ 67, 69 ], [ 69, 70 ], [ 70, 71 ], [ 69, 72 ], [ 72, 73 ], [ 73, 74 ], [ 37, 75 ], [ 75, 76 ], [ 75, 77 ], [ 77, 78 ], [ 78, 79 ], [ 77, 80 ], [ 80, 81 ], [ 81, 82 ], [ 37, 83 ], [ 83, 84 ], [ 83, 85 ], [ 85, 86 ], [ 86, 87 ], [ 85, 88 ], [ 88, 89 ], [ 89, 90 ], [ 37, 91 ], [ 91, 92 ], [ 91, 93 ], [ 37, 94 ], [ 94, 95 ], [ 97, 96 ], [ 108, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 99, 101 ], [ 98, 102 ], [ 97, 103 ], [ 103, 104 ], [ 104, 105 ], [ 104, 106 ], [ 103, 107 ], [ 108, 108 ], [ 108, 109 ], [ 109, 110 ], [ 109, 111 ], [ 108, 112 ], [ 97, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 113, 117 ], [ 94, 118 ], [ 118, 119 ], [ 118, 120 ], [ 37, 121 ], [ 121, 122 ], [ 122, 123 ], [ 123, 124 ], [ 123, 125 ], [ 121, 126 ], [ 126, 127 ], [ 126, 128 ], [ 126, 129 ], [ 15, 130 ], [ 130, 131 ], [ 0, 132 ], [ 132, 133 ], [ 132, 134 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.StringTokenizer;\n\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 line = \"\";\n\n\t\twhile ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0 || x + r > W || y - r < 0 || y + r > H) res = false;\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\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", "import java.util.StringTokenizer;", "StringTokenizer", "java.util", "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 line = \"\";\n\n\t\twhile ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0 || x + r > W || y - r < 0 || y + r > H) res = false;\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\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 line = \"\";\n\n\t\twhile ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0 || x + r > W || y - r < 0 || y + r > H) res = false;\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\n\t\t}\n\t}", "main", "{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = \"\";\n\n\t\twhile ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0 || x + r > W || y - r < 0 || y + r > H) res = false;\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\n\t\t}\n\t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String line = \"\";", "line", "\"\"", "while ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0 || x + r > W || y - r < 0 || y + r > H) res = false;\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\n\t\t}", "(line = br.readLine()) != null && !line.isEmpty()", "(line = br.readLine()) != null", "(line = br.readLine())", "line", "br.readLine()", "br.readLine", "br", "null", "!line.isEmpty()", "line.isEmpty()", "line.isEmpty", "line", "{\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0 || x + r > W || y - r < 0 || y + r > H) res = false;\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\n\t\t}", "StringTokenizer st = new StringTokenizer(line);", "st", "new StringTokenizer(line)", "int W", "W", "H", "H", "x", "x", "y", "y", "r;", "r", "W = Integer.parseInt(st.nextToken())", "W", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "H = Integer.parseInt(st.nextToken())", "H", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "x = Integer.parseInt(st.nextToken())", "x", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "y = Integer.parseInt(st.nextToken())", "y", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "r = Integer.parseInt(st.nextToken())", "r", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "boolean res = true;", "res", "true", "if (x - r < 0 || x + r > W || y - r < 0 || y + r > H) res = false;", "x - r < 0 || x + r > W || y - r < 0 || y + r > H", "y - r < 0", "x - r < 0 || x + r > W || y - r < 0 || y + r > H", "x - r < 0", "x - r", "x", "r", "0", "x + r > W", "x + r", "x", "r", "W", "y - r < 0", "y - r", "y", "r", "0", "y + r > H", "y + r", "y", "r", "H", "res = false", "res", "false", "System.out.println(res ? \"Yes\" : \"No\")", "System.out.println", "System.out", "System", "System.out", "res ? \"Yes\" : \"No\"", "res", "\"Yes\"", "\"No\"", "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 line = \"\";\n\n\t\twhile ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0 || x + r > W || y - r < 0 || y + r > H) res = false;\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\n\t\t}\n\t}\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 line = \"\";\n\n\t\twhile ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0 || x + r > W || y - r < 0 || y + r > H) res = false;\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\n\t\t}\n\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line = ""; while ((line = br.readLine()) != null && !line.isEmpty()) { StringTokenizer st = new StringTokenizer(line); int W, H, x, y, r; W = Integer.parseInt(st.nextToken()); H = Integer.parseInt(st.nextToken()); x = Integer.parseInt(st.nextToken()); y = Integer.parseInt(st.nextToken()); r = Integer.parseInt(st.nextToken()); boolean res = true; if (x - r < 0 || x + r > W || y - r < 0 || y + r > H) res = false; System.out.println(res ? "Yes" : "No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 13, 13, 2, 13, 13, 2, 13, 17, 2, 13, 17, 30, 14, 2, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 29, 4, 18, 18, 13, 13, 17, 29, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 40, 39 ], [ 47, 40 ], [ 40, 41 ], [ 41, 42 ], [ 41, 43 ], [ 40, 44 ], [ 44, 45 ], [ 44, 46 ], [ 47, 47 ], [ 47, 48 ], [ 47, 49 ], [ 40, 50 ], [ 50, 51 ], [ 50, 52 ], [ 37, 53 ], [ 53, 54 ], [ 54, 55 ], [ 57, 56 ], [ 68, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 58, 62 ], [ 57, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 68, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 68, 72 ], [ 57, 73 ], [ 73, 74 ], [ 74, 75 ], [ 74, 76 ], [ 73, 77 ], [ 54, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 81, 82 ], [ 81, 83 ], [ 79, 84 ], [ 78, 85 ], [ 53, 86 ], [ 86, 87 ], [ 87, 88 ], [ 88, 89 ], [ 88, 90 ], [ 86, 91 ], [ 53, 92 ], [ 8, 93 ], [ 93, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 93, 98 ], [ 6, 99 ], [ 99, 100 ] ]
[ "import java.util.*;\n\nclass Main {\n\tpublic static void main(String[] args) {\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint W = stdIn.nextInt();\n\t\tint H = stdIn.nextInt();\n\t\tint x = stdIn.nextInt();\n\t\tint y = stdIn.nextInt();\n\t\tint r = stdIn.nextInt();\n\t\tif (x<W && y<H && x>0 && y>0) {\n\t\t\tif (x+r<=W && y+r<=H && x-r>=0 && y-r>=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t\treturn;\n\t\t}\n\t\tSystem.out.println(\"No\");\n\t}\n}", "import java.util.*;", "util.*", "java", "class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint W = stdIn.nextInt();\n\t\tint H = stdIn.nextInt();\n\t\tint x = stdIn.nextInt();\n\t\tint y = stdIn.nextInt();\n\t\tint r = stdIn.nextInt();\n\t\tif (x<W && y<H && x>0 && y>0) {\n\t\t\tif (x+r<=W && y+r<=H && x-r>=0 && y-r>=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t\treturn;\n\t\t}\n\t\tSystem.out.println(\"No\");\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint W = stdIn.nextInt();\n\t\tint H = stdIn.nextInt();\n\t\tint x = stdIn.nextInt();\n\t\tint y = stdIn.nextInt();\n\t\tint r = stdIn.nextInt();\n\t\tif (x<W && y<H && x>0 && y>0) {\n\t\t\tif (x+r<=W && y+r<=H && x-r>=0 && y-r>=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t\treturn;\n\t\t}\n\t\tSystem.out.println(\"No\");\n\t}", "main", "{\n\t\tScanner stdIn = new Scanner(System.in);\n\t\tint W = stdIn.nextInt();\n\t\tint H = stdIn.nextInt();\n\t\tint x = stdIn.nextInt();\n\t\tint y = stdIn.nextInt();\n\t\tint r = stdIn.nextInt();\n\t\tif (x<W && y<H && x>0 && y>0) {\n\t\t\tif (x+r<=W && y+r<=H && x-r>=0 && y-r>=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t\treturn;\n\t\t}\n\t\tSystem.out.println(\"No\");\n\t}", "Scanner stdIn = new Scanner(System.in);", "stdIn", "new Scanner(System.in)", "int W = stdIn.nextInt();", "W", "stdIn.nextInt()", "stdIn.nextInt", "stdIn", "int H = stdIn.nextInt();", "H", "stdIn.nextInt()", "stdIn.nextInt", "stdIn", "int x = stdIn.nextInt();", "x", "stdIn.nextInt()", "stdIn.nextInt", "stdIn", "int y = stdIn.nextInt();", "y", "stdIn.nextInt()", "stdIn.nextInt", "stdIn", "int r = stdIn.nextInt();", "r", "stdIn.nextInt()", "stdIn.nextInt", "stdIn", "if (x<W && y<H && x>0 && y>0) {\n\t\t\tif (x+r<=W && y+r<=H && x-r>=0 && y-r>=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t\treturn;\n\t\t}", "x<W && y<H && x>0 && y>0", "x>0", "x<W && y<H && x>0 && y>0", "x<W", "x", "W", "y<H", "y", "H", "x>0", "x", "0", "y>0", "y", "0", "{\n\t\t\tif (x+r<=W && y+r<=H && x-r>=0 && y-r>=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t\treturn;\n\t\t}", "if (x+r<=W && y+r<=H && x-r>=0 && y-r>=0) {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}", "x+r<=W && y+r<=H && x-r>=0 && y-r>=0", "x-r>=0", "x+r<=W && y+r<=H && x-r>=0 && y-r>=0", "x+r<=W", "x+r", "x", "r", "W", "y+r<=H", "y+r", "y", "r", "H", "x-r>=0", "x-r", "x", "r", "0", "y-r>=0", "y-r", "y", "r", "0", "{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t\treturn;\n\t\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "return;", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "return;", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args" ]
import java.util.*; class Main { public static void main(String[] args) { Scanner stdIn = new Scanner(System.in); int W = stdIn.nextInt(); int H = stdIn.nextInt(); int x = stdIn.nextInt(); int y = stdIn.nextInt(); int r = stdIn.nextInt(); if (x<W && y<H && x>0 && y>0) { if (x+r<=W && y+r<=H && x-r>=0 && y-r>=0) { System.out.println("Yes"); return; } System.out.println("No"); return; } System.out.println("No"); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 12, 13, 30, 0, 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, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 12, 13 ], [ 10, 14 ], [ 14, 15 ], [ 14, 16 ], [ 16, 17 ], [ 17, 18 ], [ 17, 19 ], [ 16, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 16, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 28, 29 ], [ 27, 30 ], [ 27, 31 ], [ 16, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 34, 37 ], [ 37, 38 ], [ 37, 39 ], [ 16, 40 ], [ 40, 41 ], [ 40, 42 ], [ 42, 43 ], [ 43, 44 ], [ 42, 45 ], [ 45, 46 ], [ 45, 47 ], [ 16, 48 ], [ 48, 49 ], [ 48, 50 ], [ 50, 51 ], [ 51, 52 ], [ 50, 53 ], [ 53, 54 ], [ 53, 55 ], [ 16, 56 ], [ 56, 57 ], [ 56, 58 ], [ 58, 59 ], [ 59, 60 ], [ 58, 61 ], [ 61, 62 ], [ 61, 63 ], [ 16, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 67, 68 ], [ 66, 69 ], [ 69, 70 ], [ 69, 71 ], [ 16, 72 ], [ 72, 73 ], [ 75, 74 ], [ 86, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 76, 80 ], [ 75, 81 ], [ 81, 82 ], [ 82, 83 ], [ 82, 84 ], [ 81, 85 ], [ 86, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 86, 90 ], [ 75, 91 ], [ 91, 92 ], [ 92, 93 ], [ 92, 94 ], [ 91, 95 ], [ 72, 96 ], [ 96, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 99, 101 ], [ 97, 102 ], [ 72, 103 ], [ 103, 104 ], [ 104, 105 ], [ 105, 106 ], [ 106, 107 ], [ 106, 108 ], [ 104, 109 ], [ 14, 110 ], [ 110, 111 ] ]
[ "import java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.io.BufferedReader;\n\nclass Main {\n private static BufferedReader buf;\n public static void main(String[] args) throws IOException {\n buf = new BufferedReader(new InputStreamReader(System.in));\n String str = buf.readLine();\n String[] s = str.split(\" \", 0);\n int W = Integer.parseInt(s[0]);\n int H = Integer.parseInt(s[1]);\n int x = Integer.parseInt(s[2]);\n int y = Integer.parseInt(s[3]);\n int r = Integer.parseInt(s[4]);\n if ((y+r<=H)&&(y-r>=0)&&(x+r<=W)&&(x-r>=0)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.io.BufferedReader;", "BufferedReader", "java.io", "class Main {\n private static BufferedReader buf;\n public static void main(String[] args) throws IOException {\n buf = new BufferedReader(new InputStreamReader(System.in));\n String str = buf.readLine();\n String[] s = str.split(\" \", 0);\n int W = Integer.parseInt(s[0]);\n int H = Integer.parseInt(s[1]);\n int x = Integer.parseInt(s[2]);\n int y = Integer.parseInt(s[3]);\n int r = Integer.parseInt(s[4]);\n if ((y+r<=H)&&(y-r>=0)&&(x+r<=W)&&(x-r>=0)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "Main", "private static BufferedReader buf;", "buf", "public static void main(String[] args) throws IOException {\n buf = new BufferedReader(new InputStreamReader(System.in));\n String str = buf.readLine();\n String[] s = str.split(\" \", 0);\n int W = Integer.parseInt(s[0]);\n int H = Integer.parseInt(s[1]);\n int x = Integer.parseInt(s[2]);\n int y = Integer.parseInt(s[3]);\n int r = Integer.parseInt(s[4]);\n if ((y+r<=H)&&(y-r>=0)&&(x+r<=W)&&(x-r>=0)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }", "main", "{\n buf = new BufferedReader(new InputStreamReader(System.in));\n String str = buf.readLine();\n String[] s = str.split(\" \", 0);\n int W = Integer.parseInt(s[0]);\n int H = Integer.parseInt(s[1]);\n int x = Integer.parseInt(s[2]);\n int y = Integer.parseInt(s[3]);\n int r = Integer.parseInt(s[4]);\n if ((y+r<=H)&&(y-r>=0)&&(x+r<=W)&&(x-r>=0)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }", "buf = new BufferedReader(new InputStreamReader(System.in))", "buf", "new BufferedReader(new InputStreamReader(System.in))", "String str = buf.readLine();", "str", "buf.readLine()", "buf.readLine", "buf", "String[] s = str.split(\" \", 0);", "s", "str.split(\" \", 0)", "str.split", "str", "\" \"", "0", "int W = Integer.parseInt(s[0]);", "W", "Integer.parseInt(s[0])", "Integer.parseInt", "Integer", "s[0]", "s", "0", "int H = Integer.parseInt(s[1]);", "H", "Integer.parseInt(s[1])", "Integer.parseInt", "Integer", "s[1]", "s", "1", "int x = Integer.parseInt(s[2]);", "x", "Integer.parseInt(s[2])", "Integer.parseInt", "Integer", "s[2]", "s", "2", "int y = Integer.parseInt(s[3]);", "y", "Integer.parseInt(s[3])", "Integer.parseInt", "Integer", "s[3]", "s", "3", "int r = Integer.parseInt(s[4]);", "r", "Integer.parseInt(s[4])", "Integer.parseInt", "Integer", "s[4]", "s", "4", "if ((y+r<=H)&&(y-r>=0)&&(x+r<=W)&&(x-r>=0)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }", "(y+r<=H)&&(y-r>=0)&&(x+r<=W)&&(x-r>=0)", "(x+r<=W)", "(y+r<=H)&&(y-r>=0)&&(x+r<=W)&&(x-r>=0)", "(y+r<=H)", "y+r", "y", "r", "H", "(y-r>=0)", "y-r", "y", "r", "0", "(x+r<=W)", "x+r", "x", "r", "W", "(x-r>=0)", "x-r", "x", "r", "0", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args" ]
import java.io.IOException; import java.io.InputStreamReader; import java.io.BufferedReader; class Main { private static BufferedReader buf; public static void main(String[] args) throws IOException { buf = new BufferedReader(new InputStreamReader(System.in)); String str = buf.readLine(); String[] s = str.split(" ", 0); int W = Integer.parseInt(s[0]); int H = Integer.parseInt(s[1]); int x = Integer.parseInt(s[2]); int y = Integer.parseInt(s[3]); int r = Integer.parseInt(s[4]); if ((y+r<=H)&&(y-r>=0)&&(x+r<=W)&&(x-r>=0)) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 88, 5 ], [ 88, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 8, 14 ], [ 14, 15 ], [ 8, 16 ], [ 16, 17 ], [ 8, 18 ], [ 18, 19 ], [ 8, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 8, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 45, 46 ], [ 8, 47 ], [ 47, 48 ], [ 50, 49 ], [ 61, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 50, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 56, 60 ], [ 61, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 61, 65 ], [ 50, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 66, 70 ], [ 47, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 74, 75 ], [ 74, 76 ], [ 72, 77 ], [ 47, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 81, 82 ], [ 81, 83 ], [ 79, 84 ], [ 6, 85 ], [ 85, 86 ], [ 0, 87 ], [ 87, 88 ], [ 87, 89 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args) {\n \tScanner sc = new Scanner(System.in);\n \tint w,h,x,y,r;\n \tw = sc.nextInt();\n \th = sc.nextInt();\n \tx = sc.nextInt();\n \ty = sc.nextInt();\n \tr = sc.nextInt();\n\n \tif(x+r > w || y+r > h || x-r < 0 || y-r < 0){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}\n\n\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args) {\n \tScanner sc = new Scanner(System.in);\n \tint w,h,x,y,r;\n \tw = sc.nextInt();\n \th = sc.nextInt();\n \tx = sc.nextInt();\n \ty = sc.nextInt();\n \tr = sc.nextInt();\n\n \tif(x+r > w || y+r > h || x-r < 0 || y-r < 0){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}\n\n\n }\n}", "Main", "public static void main(String[] args) {\n \tScanner sc = new Scanner(System.in);\n \tint w,h,x,y,r;\n \tw = sc.nextInt();\n \th = sc.nextInt();\n \tx = sc.nextInt();\n \ty = sc.nextInt();\n \tr = sc.nextInt();\n\n \tif(x+r > w || y+r > h || x-r < 0 || y-r < 0){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}\n\n\n }", "main", "{\n \tScanner sc = new Scanner(System.in);\n \tint w,h,x,y,r;\n \tw = sc.nextInt();\n \th = sc.nextInt();\n \tx = sc.nextInt();\n \ty = sc.nextInt();\n \tr = sc.nextInt();\n\n \tif(x+r > w || y+r > h || x-r < 0 || y-r < 0){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}\n\n\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int w", "w", "h", "h", "x", "x", "y", "y", "r;", "r", "w = sc.nextInt()", "w", "sc.nextInt()", "sc.nextInt", "sc", "h = sc.nextInt()", "h", "sc.nextInt()", "sc.nextInt", "sc", "x = sc.nextInt()", "x", "sc.nextInt()", "sc.nextInt", "sc", "y = sc.nextInt()", "y", "sc.nextInt()", "sc.nextInt", "sc", "r = sc.nextInt()", "r", "sc.nextInt()", "sc.nextInt", "sc", "if(x+r > w || y+r > h || x-r < 0 || y-r < 0){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}", "x+r > w || y+r > h || x-r < 0 || y-r < 0", "x-r < 0", "x+r > w || y+r > h || x-r < 0 || y-r < 0", "x+r > w", "x+r", "x", "r", "w", "y+r > h", "y+r", "y", "r", "h", "x-r < 0", "x-r", "x", "r", "0", "y-r < 0", "y-r", "y", "r", "0", "{\n \t\tSystem.out.println(\"No\");\n \t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n \t\tSystem.out.println(\"Yes\");\n \t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n \tScanner sc = new Scanner(System.in);\n \tint w,h,x,y,r;\n \tw = sc.nextInt();\n \th = sc.nextInt();\n \tx = sc.nextInt();\n \ty = sc.nextInt();\n \tr = sc.nextInt();\n\n \tif(x+r > w || y+r > h || x-r < 0 || y-r < 0){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}\n\n\n }\n}", "public class Main {\n public static void main(String[] args) {\n \tScanner sc = new Scanner(System.in);\n \tint w,h,x,y,r;\n \tw = sc.nextInt();\n \th = sc.nextInt();\n \tx = sc.nextInt();\n \ty = sc.nextInt();\n \tr = sc.nextInt();\n\n \tif(x+r > w || y+r > h || x-r < 0 || y-r < 0){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}\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 w,h,x,y,r; w = sc.nextInt(); h = sc.nextInt(); x = sc.nextInt(); y = sc.nextInt(); r = sc.nextInt(); if(x+r > w || y+r > h || x-r < 0 || y-r < 0){ System.out.println("No"); }else{ System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 29, 40, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 23, 13, 23, 13, 23, 13, 23, 13, 23, 13, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 8, 4, 18, 13, 13, 13, 13, 13, 13, 17, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 13, 14 ], [ 14, 15 ], [ 27, 16 ], [ 16, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 16, 22 ], [ 22, 23 ], [ 23, 24 ], [ 23, 25 ], [ 22, 26 ], [ 27, 27 ], [ 27, 28 ], [ 28, 29 ], [ 28, 30 ], [ 27, 31 ], [ 14, 32 ], [ 32, 33 ], [ 33, 34 ], [ 33, 35 ], [ 32, 36 ], [ 9, 37 ], [ 37, 38 ], [ 9, 39 ], [ 39, 40 ], [ 9, 41 ], [ 41, 42 ], [ 9, 43 ], [ 43, 44 ], [ 9, 45 ], [ 45, 46 ], [ 0, 47 ], [ 97, 48 ], [ 97, 49 ], [ 49, 50 ], [ 49, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 58, 59 ], [ 51, 60 ], [ 60, 61 ], [ 60, 62 ], [ 62, 63 ], [ 63, 64 ], [ 51, 65 ], [ 65, 66 ], [ 65, 67 ], [ 67, 68 ], [ 68, 69 ], [ 51, 70 ], [ 70, 71 ], [ 70, 72 ], [ 72, 73 ], [ 73, 74 ], [ 51, 75 ], [ 75, 76 ], [ 75, 77 ], [ 77, 78 ], [ 78, 79 ], [ 51, 80 ], [ 80, 81 ], [ 81, 82 ], [ 80, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 84, 87 ], [ 84, 88 ], [ 84, 89 ], [ 84, 90 ], [ 84, 91 ], [ 83, 92 ], [ 83, 93 ], [ 49, 94 ], [ 94, 95 ], [ 0, 96 ], [ 96, 97 ], [ 96, 98 ] ]
[ "import java.util.Scanner;\nimport static java.lang.System.out;\n\nclass Collision {\n public static boolean isOutCircleFromRect( int w, int h, int cx, int cy, int cr ) {\n return !(((cx - cr) >= 0) && ((cx + cr) <= w) &&\n ((cy - cr) >= 0) && ((cy + cr) <= h));\n }\n}\n\npublic class Main {\n public static void main( String... args ) {\n // scan\n Scanner scan = new Scanner( System.in);\n\n int w = scan.nextInt();\n int h = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n\n out.println(Collision.isOutCircleFromRect(w, h, x, y, r) ? \"No\" : \"Yes\");\n\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "import static java.lang.System.out;", "import static java.lang.System.out;", "import static java.lang.System.out;", "class Collision {\n public static boolean isOutCircleFromRect( int w, int h, int cx, int cy, int cr ) {\n return !(((cx - cr) >= 0) && ((cx + cr) <= w) &&\n ((cy - cr) >= 0) && ((cy + cr) <= h));\n }\n}", "Collision", "public static boolean isOutCircleFromRect( int w, int h, int cx, int cy, int cr ) {\n return !(((cx - cr) >= 0) && ((cx + cr) <= w) &&\n ((cy - cr) >= 0) && ((cy + cr) <= h));\n }", "isOutCircleFromRect", "{\n return !(((cx - cr) >= 0) && ((cx + cr) <= w) &&\n ((cy - cr) >= 0) && ((cy + cr) <= h));\n }", "return !(((cx - cr) >= 0) && ((cx + cr) <= w) &&\n ((cy - cr) >= 0) && ((cy + cr) <= h));", "!(((cx - cr) >= 0) && ((cx + cr) <= w) &&\n ((cy - cr) >= 0) && ((cy + cr) <= h))", "(((cx - cr) >= 0) && ((cx + cr) <= w) &&\n ((cy - cr) >= 0) && ((cy + cr) <= h))", "((cy - cr) >= 0)", "((cx - cr) >= 0) && ((cx + cr) <= w) &&\n ((cy - cr) >= 0) && ((cy + cr) <= h)", "((cx - cr) >= 0)", "(cx - cr)", "cx", "cr", "0", "((cx + cr) <= w)", "(cx + cr)", "cx", "cr", "w", "((cy - cr) >= 0)", "(cy - cr)", "cy", "cr", "0", "((cy + cr) <= h)", "(cy + cr)", "cy", "cr", "h", "int w", "w", "int h", "h", "int cx", "cx", "int cy", "cy", "int cr", "cr", "public class Main {\n public static void main( String... args ) {\n // scan\n Scanner scan = new Scanner( System.in);\n\n int w = scan.nextInt();\n int h = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n\n out.println(Collision.isOutCircleFromRect(w, h, x, y, r) ? \"No\" : \"Yes\");\n\n }\n}", "Main", "public static void main( String... args ) {\n // scan\n Scanner scan = new Scanner( System.in);\n\n int w = scan.nextInt();\n int h = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n\n out.println(Collision.isOutCircleFromRect(w, h, x, y, r) ? \"No\" : \"Yes\");\n\n }", "main", "{\n // scan\n Scanner scan = new Scanner( System.in);\n\n int w = scan.nextInt();\n int h = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n\n out.println(Collision.isOutCircleFromRect(w, h, x, y, r) ? \"No\" : \"Yes\");\n\n }", "Scanner scan = new Scanner( System.in);", "scan", "new Scanner( System.in)", "int w = scan.nextInt();", "w", "scan.nextInt()", "scan.nextInt", "scan", "int h = scan.nextInt();", "h", "scan.nextInt()", "scan.nextInt", "scan", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "int y = scan.nextInt();", "y", "scan.nextInt()", "scan.nextInt", "scan", "int r = scan.nextInt();", "r", "scan.nextInt()", "scan.nextInt", "scan", "out.println(Collision.isOutCircleFromRect(w, h, x, y, r) ? \"No\" : \"Yes\")", "out.println", "out", "Collision.isOutCircleFromRect(w, h, x, y, r) ? \"No\" : \"Yes\"", "Collision.isOutCircleFromRect(w, h, x, y, r)", "Collision.isOutCircleFromRect", "Collision", "w", "h", "x", "y", "r", "\"No\"", "\"Yes\"", "String... args", "args", "public class Main {\n public static void main( String... args ) {\n // scan\n Scanner scan = new Scanner( System.in);\n\n int w = scan.nextInt();\n int h = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n\n out.println(Collision.isOutCircleFromRect(w, h, x, y, r) ? \"No\" : \"Yes\");\n\n }\n}", "public class Main {\n public static void main( String... args ) {\n // scan\n Scanner scan = new Scanner( System.in);\n\n int w = scan.nextInt();\n int h = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n\n out.println(Collision.isOutCircleFromRect(w, h, x, y, r) ? \"No\" : \"Yes\");\n\n }\n}", "Main" ]
import java.util.Scanner; import static java.lang.System.out; class Collision { public static boolean isOutCircleFromRect( int w, int h, int cx, int cy, int cr ) { return !(((cx - cr) >= 0) && ((cx + cr) <= w) && ((cy - cr) >= 0) && ((cy + cr) <= h)); } } public class Main { public static void main( String... args ) { // scan Scanner scan = new Scanner( System.in); int w = scan.nextInt(); int h = scan.nextInt(); int x = scan.nextInt(); int y = scan.nextInt(); int r = scan.nextInt(); out.println(Collision.isOutCircleFromRect(w, h, x, y, r) ? "No" : "Yes"); } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 17, 41, 13, 17, 12, 13, 30, 41, 13, 20, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 13, 17, 2, 13, 17, 30, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 14, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 112, 5 ], [ 112, 6 ], [ 6, 7 ], [ 6, 8 ], [ 112, 9 ], [ 9, 10 ], [ 9, 11 ], [ 112, 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 ], [ 30, 31 ], [ 31, 32 ], [ 14, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 36, 37 ], [ 14, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 14, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 44, 48 ], [ 48, 49 ], [ 48, 50 ], [ 43, 51 ], [ 51, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 52, 56 ], [ 56, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 57, 62 ], [ 52, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 70, 71 ], [ 70, 72 ], [ 68, 73 ], [ 51, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 74, 79 ], [ 43, 80 ], [ 80, 81 ], [ 81, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 82, 86 ], [ 81, 87 ], [ 87, 88 ], [ 88, 89 ], [ 88, 90 ], [ 87, 91 ], [ 80, 92 ], [ 92, 93 ], [ 93, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 93, 98 ], [ 80, 99 ], [ 99, 100 ], [ 100, 101 ], [ 101, 102 ], [ 102, 103 ], [ 102, 104 ], [ 100, 105 ], [ 14, 106 ], [ 106, 107 ], [ 107, 108 ], [ 12, 109 ], [ 109, 110 ], [ 0, 111 ], [ 111, 112 ], [ 111, 113 ] ]
[ "import java.util.Scanner;\n//???????????´??° W???H???x???y???r \npublic class Main {\n\t\tstatic int W = 0;\n\t\tstatic int H = 0;\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tW = sc.nextInt();\n\t\tH = sc.nextInt();\n\t\t\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tif(x <= 0 || y <= 0){\n\t\t\tif(r < 0){\n\t\t\t\tSystem.out.println(\"No\");\t\t\t\t\n\t\t\t}else if(r == 0){\n\t\t\t\tSystem.out.println(\"Yes\");\t\t\t\t\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if(x + r <= W && y + r <= H ){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\t\t\t\n\t\t}\n\t\t\n\t\tsc.close();\n\t}\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\t\tstatic int W = 0;\n\t\tstatic int H = 0;\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tW = sc.nextInt();\n\t\tH = sc.nextInt();\n\t\t\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tif(x <= 0 || y <= 0){\n\t\t\tif(r < 0){\n\t\t\t\tSystem.out.println(\"No\");\t\t\t\t\n\t\t\t}else if(r == 0){\n\t\t\t\tSystem.out.println(\"Yes\");\t\t\t\t\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if(x + r <= W && y + r <= H ){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\t\t\t\n\t\t}\n\t\t\n\t\tsc.close();\n\t}\n\n}", "Main", "static int W = 0;", "W", "0", "static int H = 0;", "H", "0", "public static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tW = sc.nextInt();\n\t\tH = sc.nextInt();\n\t\t\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tif(x <= 0 || y <= 0){\n\t\t\tif(r < 0){\n\t\t\t\tSystem.out.println(\"No\");\t\t\t\t\n\t\t\t}else if(r == 0){\n\t\t\t\tSystem.out.println(\"Yes\");\t\t\t\t\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if(x + r <= W && y + r <= H ){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\t\t\t\n\t\t}\n\t\t\n\t\tsc.close();\n\t}", "main", "{\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tW = sc.nextInt();\n\t\tH = sc.nextInt();\n\t\t\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tif(x <= 0 || y <= 0){\n\t\t\tif(r < 0){\n\t\t\t\tSystem.out.println(\"No\");\t\t\t\t\n\t\t\t}else if(r == 0){\n\t\t\t\tSystem.out.println(\"Yes\");\t\t\t\t\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if(x + r <= W && y + r <= H ){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\t\t\t\n\t\t}\n\t\t\n\t\tsc.close();\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "W = sc.nextInt()", "W", "sc.nextInt()", "sc.nextInt", "sc", "H = sc.nextInt()", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "if(x <= 0 || y <= 0){\n\t\t\tif(r < 0){\n\t\t\t\tSystem.out.println(\"No\");\t\t\t\t\n\t\t\t}else if(r == 0){\n\t\t\t\tSystem.out.println(\"Yes\");\t\t\t\t\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if(x + r <= W && y + r <= H ){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\t\t\t\n\t\t}", "x <= 0 || y <= 0", "x <= 0", "x", "0", "y <= 0", "y", "0", "{\n\t\t\tif(r < 0){\n\t\t\t\tSystem.out.println(\"No\");\t\t\t\t\n\t\t\t}else if(r == 0){\n\t\t\t\tSystem.out.println(\"Yes\");\t\t\t\t\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "if(r < 0){\n\t\t\t\tSystem.out.println(\"No\");\t\t\t\t\n\t\t\t}else if(r == 0){\n\t\t\t\tSystem.out.println(\"Yes\");\t\t\t\t\n\t\t\t}", "r < 0", "r", "0", "{\n\t\t\t\tSystem.out.println(\"No\");\t\t\t\t\n\t\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(r == 0){\n\t\t\t\tSystem.out.println(\"Yes\");\t\t\t\t\n\t\t\t}", "r == 0", "r", "0", "{\n\t\t\t\tSystem.out.println(\"Yes\");\t\t\t\t\n\t\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(x + r <= W && y + r <= H ){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\t\t\t\n\t\t}", "x + r <= W && y + r <= H", "x + r <= W", "x + r", "x", "r", "W", "y + r <= H", "y + r", "y", "r", "H", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\tSystem.out.println(\"No\");\t\t\t\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "sc.close()", "sc.close", "sc", "String[] args", "args", "public class Main {\n\t\tstatic int W = 0;\n\t\tstatic int H = 0;\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tW = sc.nextInt();\n\t\tH = sc.nextInt();\n\t\t\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tif(x <= 0 || y <= 0){\n\t\t\tif(r < 0){\n\t\t\t\tSystem.out.println(\"No\");\t\t\t\t\n\t\t\t}else if(r == 0){\n\t\t\t\tSystem.out.println(\"Yes\");\t\t\t\t\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if(x + r <= W && y + r <= H ){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\t\t\t\n\t\t}\n\t\t\n\t\tsc.close();\n\t}\n\n}", "public class Main {\n\t\tstatic int W = 0;\n\t\tstatic int H = 0;\n\tpublic static void main(String[] args) {\n\t\t// TODO ?????????????????????????????????????????????\n\t\tScanner sc = new Scanner(System.in);\n\t\tW = sc.nextInt();\n\t\tH = sc.nextInt();\n\t\t\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tif(x <= 0 || y <= 0){\n\t\t\tif(r < 0){\n\t\t\t\tSystem.out.println(\"No\");\t\t\t\t\n\t\t\t}else if(r == 0){\n\t\t\t\tSystem.out.println(\"Yes\");\t\t\t\t\n\t\t\t}\n\t\t\tSystem.out.println(\"No\");\n\t\t}else if(x + r <= W && y + r <= H ){\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\t\t\t\n\t\t}\n\t\t\n\t\tsc.close();\n\t}\n\n}", "Main" ]
import java.util.Scanner; //???????????´??° W???H???x???y???r public class Main { static int W = 0; static int H = 0; public static void main(String[] args) { // TODO ????????????????????????????????????????????? Scanner sc = new Scanner(System.in); W = sc.nextInt(); H = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int r = sc.nextInt(); if(x <= 0 || y <= 0){ if(r < 0){ System.out.println("No"); }else if(r == 0){ System.out.println("Yes"); } System.out.println("No"); }else if(x + r <= W && y + r <= H ){ System.out.println("Yes"); }else{ System.out.println("No"); } sc.close(); } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 41, 13, 20, 11, 1, 41, 13, 17, 2, 13, 17, 1, 40, 13, 30, 30, 4, 18, 13, 4, 13, 41, 13, 4, 18, 13, 17, 41, 13, 4, 18, 13, 17, 41, 13, 4, 18, 13, 17, 41, 13, 4, 18, 13, 17, 41, 13, 4, 18, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 13, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 2, 17, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 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 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 127, 8 ], [ 127, 9 ], [ 9, 10 ], [ 9, 11 ], [ 127, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 19, 20 ], [ 20, 21 ], [ 20, 22 ], [ 18, 23 ], [ 23, 24 ], [ 23, 25 ], [ 18, 26 ], [ 26, 27 ], [ 27, 28 ], [ 18, 29 ], [ 30, 30 ], [ 30, 31 ], [ 31, 32 ], [ 32, 33 ], [ 31, 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 ], [ 14, 48 ], [ 48, 49 ], [ 48, 50 ], [ 50, 51 ], [ 51, 52 ], [ 50, 53 ], [ 14, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 14, 60 ], [ 60, 61 ], [ 60, 62 ], [ 62, 63 ], [ 63, 64 ], [ 62, 65 ], [ 14, 66 ], [ 66, 67 ], [ 69, 68 ], [ 80, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 71, 73 ], [ 70, 74 ], [ 69, 75 ], [ 75, 76 ], [ 75, 77 ], [ 77, 78 ], [ 77, 79 ], [ 80, 80 ], [ 80, 81 ], [ 81, 82 ], [ 81, 83 ], [ 80, 84 ], [ 69, 85 ], [ 85, 86 ], [ 85, 87 ], [ 87, 88 ], [ 87, 89 ], [ 66, 90 ], [ 90, 91 ], [ 91, 92 ], [ 92, 93 ], [ 93, 94 ], [ 93, 95 ], [ 91, 96 ], [ 66, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 100, 101 ], [ 100, 102 ], [ 98, 103 ], [ 14, 104 ], [ 104, 105 ], [ 12, 106 ], [ 106, 107 ], [ 127, 108 ], [ 108, 109 ], [ 108, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 113, 114 ], [ 127, 115 ], [ 115, 116 ], [ 115, 117 ], [ 117, 118 ], [ 118, 119 ], [ 119, 120 ], [ 119, 121 ], [ 118, 122 ], [ 122, 123 ], [ 123, 124 ], [ 124, 125 ], [ 0, 126 ], [ 126, 127 ], [ 126, 128 ] ]
[ "import java.util.ArrayList;\nimport 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\tArrayList<Integer> list = new ArrayList<Integer>();\n\n\t\tfor (int i = 0; i < 5;i++) {\n\n\t\t\tlist.add(input());\n\n\t\t}\n\n\t\tint W = list.get(0);\n\t\tint H = list.get(1);\n\t\tint x = list.get(2);\n\t\tint y = list.get(3);\n\t\tint r = list.get(4);\n\n\t\tif ((x + r <= W) && (0 <= x - r) && (y + r <= H) && (0 <= y - r)) {\n\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t} else {\n\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\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.ArrayList;", "ArrayList", "java.util", "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\tArrayList<Integer> list = new ArrayList<Integer>();\n\n\t\tfor (int i = 0; i < 5;i++) {\n\n\t\t\tlist.add(input());\n\n\t\t}\n\n\t\tint W = list.get(0);\n\t\tint H = list.get(1);\n\t\tint x = list.get(2);\n\t\tint y = list.get(3);\n\t\tint r = list.get(4);\n\n\t\tif ((x + r <= W) && (0 <= x - r) && (y + r <= H) && (0 <= y - r)) {\n\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t} else {\n\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\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\tArrayList<Integer> list = new ArrayList<Integer>();\n\n\t\tfor (int i = 0; i < 5;i++) {\n\n\t\t\tlist.add(input());\n\n\t\t}\n\n\t\tint W = list.get(0);\n\t\tint H = list.get(1);\n\t\tint x = list.get(2);\n\t\tint y = list.get(3);\n\t\tint r = list.get(4);\n\n\t\tif ((x + r <= W) && (0 <= x - r) && (y + r <= H) && (0 <= y - r)) {\n\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t} else {\n\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\n\n\t\tclose();\n\n\t}", "main", "{\n\n\t\tArrayList<Integer> list = new ArrayList<Integer>();\n\n\t\tfor (int i = 0; i < 5;i++) {\n\n\t\t\tlist.add(input());\n\n\t\t}\n\n\t\tint W = list.get(0);\n\t\tint H = list.get(1);\n\t\tint x = list.get(2);\n\t\tint y = list.get(3);\n\t\tint r = list.get(4);\n\n\t\tif ((x + r <= W) && (0 <= x - r) && (y + r <= H) && (0 <= y - r)) {\n\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t} else {\n\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\n\n\t\tclose();\n\n\t}", "ArrayList<Integer> list = new ArrayList<Integer>();", "list", "new ArrayList<Integer>()", "for (int i = 0; i < 5;i++) {\n\n\t\t\tlist.add(input());\n\n\t\t}", "int i = 0;", "int i = 0;", "i", "0", "i < 5", "i", "5", "i++", "i++", "i", "{\n\n\t\t\tlist.add(input());\n\n\t\t}", "{\n\n\t\t\tlist.add(input());\n\n\t\t}", "list.add(input())", "list.add", "list", "input()", "input", "int W = list.get(0);", "W", "list.get(0)", "list.get", "list", "0", "int H = list.get(1);", "H", "list.get(1)", "list.get", "list", "1", "int x = list.get(2);", "x", "list.get(2)", "list.get", "list", "2", "int y = list.get(3);", "y", "list.get(3)", "list.get", "list", "3", "int r = list.get(4);", "r", "list.get(4)", "list.get", "list", "4", "if ((x + r <= W) && (0 <= x - r) && (y + r <= H) && (0 <= y - r)) {\n\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t} else {\n\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}", "(x + r <= W) && (0 <= x - r) && (y + r <= H) && (0 <= y - r)", "(y + r <= H)", "(x + r <= W) && (0 <= x - r) && (y + r <= H) && (0 <= y - r)", "(x + r <= W)", "x + r", "x", "r", "W", "(0 <= x - r)", "0", "x - r", "x", "r", "(y + r <= H)", "y + r", "y", "r", "H", "(0 <= y - r)", "0", "y - r", "y", "r", "{\n\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "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\tArrayList<Integer> list = new ArrayList<Integer>();\n\n\t\tfor (int i = 0; i < 5;i++) {\n\n\t\t\tlist.add(input());\n\n\t\t}\n\n\t\tint W = list.get(0);\n\t\tint H = list.get(1);\n\t\tint x = list.get(2);\n\t\tint y = list.get(3);\n\t\tint r = list.get(4);\n\n\t\tif ((x + r <= W) && (0 <= x - r) && (y + r <= H) && (0 <= y - r)) {\n\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t} else {\n\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\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\tArrayList<Integer> list = new ArrayList<Integer>();\n\n\t\tfor (int i = 0; i < 5;i++) {\n\n\t\t\tlist.add(input());\n\n\t\t}\n\n\t\tint W = list.get(0);\n\t\tint H = list.get(1);\n\t\tint x = list.get(2);\n\t\tint y = list.get(3);\n\t\tint r = list.get(4);\n\n\t\tif ((x + r <= W) && (0 <= x - r) && (y + r <= H) && (0 <= y - r)) {\n\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t} else {\n\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\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.ArrayList; import java.util.Scanner; public class Main { public static Scanner scanner = new Scanner(System.in); public static void main(String[] args) { ArrayList<Integer> list = new ArrayList<Integer>(); for (int i = 0; i < 5;i++) { list.add(input()); } int W = list.get(0); int H = list.get(1); int x = list.get(2); int y = list.get(3); int r = list.get(4); if ((x + r <= W) && (0 <= x - r) && (y + r <= H) && (0 <= y - r)) { System.out.println("Yes"); } else { System.out.println("No"); } close(); } public static int input() { return scanner.nextInt(); } public static void close() { if (scanner != null) { scanner.close(); } } }
[ 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, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 86, 5 ], [ 86, 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 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 8, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 45, 46 ], [ 8, 47 ], [ 47, 48 ], [ 50, 49 ], [ 61, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 50, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 56, 60 ], [ 61, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 61, 65 ], [ 50, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 66, 70 ], [ 47, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 71, 76 ], [ 47, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 79, 81 ], [ 77, 82 ], [ 6, 83 ], [ 83, 84 ], [ 0, 85 ], [ 85, 86 ], [ 85, 87 ] ]
[ "import java.util.Scanner;\npublic class Main\n{\n\tpublic static void main(String args[])\n\t{\n\t\tint w, h, x, y, r;\n\t\tScanner input = new Scanner(System.in);\n\t\tw = input.nextInt();\n\t\th = input.nextInt();\n\t\tx = input.nextInt();\n\t\ty = input.nextInt();\n\t\tr = input.nextInt();\n\t\tif(x+r <= w && x-r >= 0 && y+r <= h && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse \n\t\t\tSystem.out.println(\"No\");\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main\n{\n\tpublic static void main(String args[])\n\t{\n\t\tint w, h, x, y, r;\n\t\tScanner input = new Scanner(System.in);\n\t\tw = input.nextInt();\n\t\th = input.nextInt();\n\t\tx = input.nextInt();\n\t\ty = input.nextInt();\n\t\tr = input.nextInt();\n\t\tif(x+r <= w && x-r >= 0 && y+r <= h && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse \n\t\t\tSystem.out.println(\"No\");\n\t}\n}", "Main", "public static void main(String args[])\n\t{\n\t\tint w, h, x, y, r;\n\t\tScanner input = new Scanner(System.in);\n\t\tw = input.nextInt();\n\t\th = input.nextInt();\n\t\tx = input.nextInt();\n\t\ty = input.nextInt();\n\t\tr = input.nextInt();\n\t\tif(x+r <= w && x-r >= 0 && y+r <= h && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse \n\t\t\tSystem.out.println(\"No\");\n\t}", "main", "{\n\t\tint w, h, x, y, r;\n\t\tScanner input = new Scanner(System.in);\n\t\tw = input.nextInt();\n\t\th = input.nextInt();\n\t\tx = input.nextInt();\n\t\ty = input.nextInt();\n\t\tr = input.nextInt();\n\t\tif(x+r <= w && x-r >= 0 && y+r <= h && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse \n\t\t\tSystem.out.println(\"No\");\n\t}", "int w", "w", "h", "h", "x", "x", "y", "y", "r;", "r", "Scanner input = new Scanner(System.in);", "input", "new Scanner(System.in)", "w = input.nextInt()", "w", "input.nextInt()", "input.nextInt", "input", "h = input.nextInt()", "h", "input.nextInt()", "input.nextInt", "input", "x = input.nextInt()", "x", "input.nextInt()", "input.nextInt", "input", "y = input.nextInt()", "y", "input.nextInt()", "input.nextInt", "input", "r = input.nextInt()", "r", "input.nextInt()", "input.nextInt", "input", "if(x+r <= w && x-r >= 0 && y+r <= h && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse \n\t\t\tSystem.out.println(\"No\");", "x+r <= w && x-r >= 0 && y+r <= h && y-r >= 0", "y+r <= h", "x+r <= w && x-r >= 0 && y+r <= h && y-r >= 0", "x+r <= w", "x+r", "x", "r", "w", "x-r >= 0", "x-r", "x", "r", "0", "y+r <= h", "y+r", "y", "r", "h", "y-r >= 0", "y-r", "y", "r", "0", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String args[]", "args", "public class Main\n{\n\tpublic static void main(String args[])\n\t{\n\t\tint w, h, x, y, r;\n\t\tScanner input = new Scanner(System.in);\n\t\tw = input.nextInt();\n\t\th = input.nextInt();\n\t\tx = input.nextInt();\n\t\ty = input.nextInt();\n\t\tr = input.nextInt();\n\t\tif(x+r <= w && x-r >= 0 && y+r <= h && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse \n\t\t\tSystem.out.println(\"No\");\n\t}\n}", "public class Main\n{\n\tpublic static void main(String args[])\n\t{\n\t\tint w, h, x, y, r;\n\t\tScanner input = new Scanner(System.in);\n\t\tw = input.nextInt();\n\t\th = input.nextInt();\n\t\tx = input.nextInt();\n\t\ty = input.nextInt();\n\t\tr = input.nextInt();\n\t\tif(x+r <= w && x-r >= 0 && y+r <= h && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse \n\t\t\tSystem.out.println(\"No\");\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String args[]) { int w, h, x, y, r; Scanner input = new Scanner(System.in); w = input.nextInt(); h = input.nextInt(); x = input.nextInt(); y = input.nextInt(); r = input.nextInt(); if(x+r <= w && x-r >= 0 && y+r <= h && y-r >= 0) System.out.println("Yes"); else System.out.println("No"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 40, 39 ], [ 51, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 41, 45 ], [ 40, 46 ], [ 46, 47 ], [ 47, 48 ], [ 47, 49 ], [ 46, 50 ], [ 51, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 40, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 56, 60 ], [ 37, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 61, 66 ], [ 37, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 67, 72 ], [ 6, 73 ], [ 73, 74 ] ]
[ "import java.util.*;\nclass Main{\n public static void main(String[] args){\n Scanner sc=new Scanner(System.in);\n int W=sc.nextInt(),H=sc.nextInt();\n int x=sc.nextInt(),y=sc.nextInt();\n int r=sc.nextInt();\n if((x-r>=0)&&(y-r>=0)&&(x+r<=W)&&(r+y<=H))System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}", "import java.util.*;", "util.*", "java", "class Main{\n public static void main(String[] args){\n Scanner sc=new Scanner(System.in);\n int W=sc.nextInt(),H=sc.nextInt();\n int x=sc.nextInt(),y=sc.nextInt();\n int r=sc.nextInt();\n if((x-r>=0)&&(y-r>=0)&&(x+r<=W)&&(r+y<=H))System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}", "Main", "public static void main(String[] args){\n Scanner sc=new Scanner(System.in);\n int W=sc.nextInt(),H=sc.nextInt();\n int x=sc.nextInt(),y=sc.nextInt();\n int r=sc.nextInt();\n if((x-r>=0)&&(y-r>=0)&&(x+r<=W)&&(r+y<=H))System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }", "main", "{\n Scanner sc=new Scanner(System.in);\n int W=sc.nextInt(),H=sc.nextInt();\n int x=sc.nextInt(),y=sc.nextInt();\n int r=sc.nextInt();\n if((x-r>=0)&&(y-r>=0)&&(x+r<=W)&&(r+y<=H))System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }", "Scanner sc=new Scanner(System.in);", "sc", "new Scanner(System.in)", "int W=sc.nextInt()", "W", "sc.nextInt()", "sc.nextInt", "sc", "H=sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x=sc.nextInt()", "x", "sc.nextInt()", "sc.nextInt", "sc", "y=sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r=sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "if((x-r>=0)&&(y-r>=0)&&(x+r<=W)&&(r+y<=H))System.out.println(\"Yes\");\n else System.out.println(\"No\");", "(x-r>=0)&&(y-r>=0)&&(x+r<=W)&&(r+y<=H)", "(x+r<=W)", "(x-r>=0)&&(y-r>=0)&&(x+r<=W)&&(r+y<=H)", "(x-r>=0)", "x-r", "x", "r", "0", "(y-r>=0)", "y-r", "y", "r", "0", "(x+r<=W)", "x+r", "x", "r", "W", "(r+y<=H)", "r+y", "r", "y", "H", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args" ]
import java.util.*; class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); int W=sc.nextInt(),H=sc.nextInt(); int x=sc.nextInt(),y=sc.nextInt(); int r=sc.nextInt(); if((x-r>=0)&&(y-r>=0)&&(x+r<=W)&&(r+y<=H))System.out.println("Yes"); else System.out.println("No"); } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 12, 13, 30, 0, 13, 20, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 90, 5 ], [ 90, 6 ], [ 6, 7 ], [ 90, 8 ], [ 8, 9 ], [ 90, 10 ], [ 10, 11 ], [ 90, 12 ], [ 12, 13 ], [ 90, 14 ], [ 14, 15 ], [ 90, 16 ], [ 16, 17 ], [ 90, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 20, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 20, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 37, 38 ], [ 20, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 42, 43 ], [ 20, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 47, 48 ], [ 20, 49 ], [ 49, 50 ], [ 52, 51 ], [ 63, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 53, 57 ], [ 52, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 58, 62 ], [ 63, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 52, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 68, 72 ], [ 49, 73 ], [ 73, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 74, 79 ], [ 49, 80 ], [ 80, 81 ], [ 81, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 81, 86 ], [ 18, 87 ], [ 87, 88 ], [ 0, 89 ], [ 89, 90 ], [ 89, 91 ] ]
[ "import java.util.*;\n\npublic class Main {\n private static Scanner sc;\n static int w;\n static int h;\n static int x;\n static int y;\n static int r;\n \n\n\tpublic static void main(String[] args) {\n \tsc = new Scanner(System.in);\n \tw = sc.nextInt();\n \th = sc.nextInt();\n \tx = sc.nextInt();\n \ty = sc.nextInt();\n \tr = sc.nextInt();\n \tif (x-r<0||x+r>w ||y-r<0||y+r>h){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}\n }\n}\n \t", "import java.util.*;", "util.*", "java", "public class Main {\n private static Scanner sc;\n static int w;\n static int h;\n static int x;\n static int y;\n static int r;\n \n\n\tpublic static void main(String[] args) {\n \tsc = new Scanner(System.in);\n \tw = sc.nextInt();\n \th = sc.nextInt();\n \tx = sc.nextInt();\n \ty = sc.nextInt();\n \tr = sc.nextInt();\n \tif (x-r<0||x+r>w ||y-r<0||y+r>h){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}\n }\n}", "Main", "private static Scanner sc;", "sc", "static int w;", "w", "static int h;", "h", "static int x;", "x", "static int y;", "y", "static int r;", "r", "public static void main(String[] args) {\n \tsc = new Scanner(System.in);\n \tw = sc.nextInt();\n \th = sc.nextInt();\n \tx = sc.nextInt();\n \ty = sc.nextInt();\n \tr = sc.nextInt();\n \tif (x-r<0||x+r>w ||y-r<0||y+r>h){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}\n }", "main", "{\n \tsc = new Scanner(System.in);\n \tw = sc.nextInt();\n \th = sc.nextInt();\n \tx = sc.nextInt();\n \ty = sc.nextInt();\n \tr = sc.nextInt();\n \tif (x-r<0||x+r>w ||y-r<0||y+r>h){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}\n }", "sc = new Scanner(System.in)", "sc", "new Scanner(System.in)", "w = sc.nextInt()", "w", "sc.nextInt()", "sc.nextInt", "sc", "h = sc.nextInt()", "h", "sc.nextInt()", "sc.nextInt", "sc", "x = sc.nextInt()", "x", "sc.nextInt()", "sc.nextInt", "sc", "y = sc.nextInt()", "y", "sc.nextInt()", "sc.nextInt", "sc", "r = sc.nextInt()", "r", "sc.nextInt()", "sc.nextInt", "sc", "if (x-r<0||x+r>w ||y-r<0||y+r>h){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}", "x-r<0||x+r>w ||y-r<0||y+r>h", "y-r<0", "x-r<0||x+r>w ||y-r<0||y+r>h", "x-r<0", "x-r", "x", "r", "0", "x+r>w", "x+r", "x", "r", "w", "y-r<0", "y-r", "y", "r", "0", "y+r>h", "y+r", "y", "r", "h", "{\n \t\tSystem.out.println(\"No\");\n \t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n \t\tSystem.out.println(\"Yes\");\n \t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main {\n private static Scanner sc;\n static int w;\n static int h;\n static int x;\n static int y;\n static int r;\n \n\n\tpublic static void main(String[] args) {\n \tsc = new Scanner(System.in);\n \tw = sc.nextInt();\n \th = sc.nextInt();\n \tx = sc.nextInt();\n \ty = sc.nextInt();\n \tr = sc.nextInt();\n \tif (x-r<0||x+r>w ||y-r<0||y+r>h){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}\n }\n}", "public class Main {\n private static Scanner sc;\n static int w;\n static int h;\n static int x;\n static int y;\n static int r;\n \n\n\tpublic static void main(String[] args) {\n \tsc = new Scanner(System.in);\n \tw = sc.nextInt();\n \th = sc.nextInt();\n \tx = sc.nextInt();\n \ty = sc.nextInt();\n \tr = sc.nextInt();\n \tif (x-r<0||x+r>w ||y-r<0||y+r>h){\n \t\tSystem.out.println(\"No\");\n \t}else{\n \t\tSystem.out.println(\"Yes\");\n \t}\n }\n}", "Main" ]
import java.util.*; public class Main { private static Scanner sc; static int w; static int h; static int x; static int y; static int r; public static void main(String[] args) { sc = new Scanner(System.in); w = sc.nextInt(); h = sc.nextInt(); x = sc.nextInt(); y = sc.nextInt(); r = sc.nextInt(); if (x-r<0||x+r>w ||y-r<0||y+r>h){ System.out.println("No"); }else{ System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 0, 13, 17, 4, 18, 18, 13, 13, 13, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 79, 5 ], [ 79, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 37, 39 ], [ 8, 40 ], [ 40, 41 ], [ 43, 42 ], [ 54, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 44, 48 ], [ 43, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 49, 53 ], [ 54, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 54, 58 ], [ 43, 59 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 59, 63 ], [ 40, 64 ], [ 64, 65 ], [ 64, 66 ], [ 8, 67 ], [ 67, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 67, 72 ], [ 8, 73 ], [ 73, 74 ], [ 74, 75 ], [ 6, 76 ], [ 76, 77 ], [ 0, 78 ], [ 78, 79 ], [ 78, 80 ] ]
[ "import java.util.Scanner;\n\n\npublic class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint width= scanner.nextInt();\n\t\tint height = scanner.nextInt();\n\t\tint x = scanner.nextInt();\n\t\tint y = scanner.nextInt();\n\t\tint r = scanner.nextInt();\n\t\t\n\t\tString ans = \"Yes\";\n\t\tif(x+r > width || x-r < 0 || y+r > height || y-r < 0)\n\t\t\tans=\"No\";\n\t\t\n\t\tSystem.out.println(ans);\n\t\tscanner.close();\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint width= scanner.nextInt();\n\t\tint height = scanner.nextInt();\n\t\tint x = scanner.nextInt();\n\t\tint y = scanner.nextInt();\n\t\tint r = scanner.nextInt();\n\t\t\n\t\tString ans = \"Yes\";\n\t\tif(x+r > width || x-r < 0 || y+r > height || y-r < 0)\n\t\t\tans=\"No\";\n\t\t\n\t\tSystem.out.println(ans);\n\t\tscanner.close();\n\t}\n}", "Main", "public static void main(String args[]){\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint width= scanner.nextInt();\n\t\tint height = scanner.nextInt();\n\t\tint x = scanner.nextInt();\n\t\tint y = scanner.nextInt();\n\t\tint r = scanner.nextInt();\n\t\t\n\t\tString ans = \"Yes\";\n\t\tif(x+r > width || x-r < 0 || y+r > height || y-r < 0)\n\t\t\tans=\"No\";\n\t\t\n\t\tSystem.out.println(ans);\n\t\tscanner.close();\n\t}", "main", "{\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint width= scanner.nextInt();\n\t\tint height = scanner.nextInt();\n\t\tint x = scanner.nextInt();\n\t\tint y = scanner.nextInt();\n\t\tint r = scanner.nextInt();\n\t\t\n\t\tString ans = \"Yes\";\n\t\tif(x+r > width || x-r < 0 || y+r > height || y-r < 0)\n\t\t\tans=\"No\";\n\t\t\n\t\tSystem.out.println(ans);\n\t\tscanner.close();\n\t}", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "int width= scanner.nextInt();", "width", "scanner.nextInt()", "scanner.nextInt", "scanner", "int height = scanner.nextInt();", "height", "scanner.nextInt()", "scanner.nextInt", "scanner", "int x = scanner.nextInt();", "x", "scanner.nextInt()", "scanner.nextInt", "scanner", "int y = scanner.nextInt();", "y", "scanner.nextInt()", "scanner.nextInt", "scanner", "int r = scanner.nextInt();", "r", "scanner.nextInt()", "scanner.nextInt", "scanner", "String ans = \"Yes\";", "ans", "\"Yes\"", "if(x+r > width || x-r < 0 || y+r > height || y-r < 0)\n\t\t\tans=\"No\";", "x+r > width || x-r < 0 || y+r > height || y-r < 0", "y+r > height", "x+r > width || x-r < 0 || y+r > height || y-r < 0", "x+r > width", "x+r", "x", "r", "width", "x-r < 0", "x-r", "x", "r", "0", "y+r > height", "y+r", "y", "r", "height", "y-r < 0", "y-r", "y", "r", "0", "ans=\"No\"", "ans", "\"No\"", "System.out.println(ans)", "System.out.println", "System.out", "System", "System.out", "ans", "scanner.close()", "scanner.close", "scanner", "String args[]", "args", "public class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint width= scanner.nextInt();\n\t\tint height = scanner.nextInt();\n\t\tint x = scanner.nextInt();\n\t\tint y = scanner.nextInt();\n\t\tint r = scanner.nextInt();\n\t\t\n\t\tString ans = \"Yes\";\n\t\tif(x+r > width || x-r < 0 || y+r > height || y-r < 0)\n\t\t\tans=\"No\";\n\t\t\n\t\tSystem.out.println(ans);\n\t\tscanner.close();\n\t}\n}", "public class Main {\n\tpublic static void main(String args[]){\n\t\tScanner scanner = new Scanner(System.in);\n\t\tint width= scanner.nextInt();\n\t\tint height = scanner.nextInt();\n\t\tint x = scanner.nextInt();\n\t\tint y = scanner.nextInt();\n\t\tint r = scanner.nextInt();\n\t\t\n\t\tString ans = \"Yes\";\n\t\tif(x+r > width || x-r < 0 || y+r > height || y-r < 0)\n\t\t\tans=\"No\";\n\t\t\n\t\tSystem.out.println(ans);\n\t\tscanner.close();\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String args[]){ Scanner scanner = new Scanner(System.in); int width= scanner.nextInt(); int height = scanner.nextInt(); int x = scanner.nextInt(); int y = scanner.nextInt(); int r = scanner.nextInt(); String ans = "Yes"; if(x+r > width || x-r < 0 || y+r > height || y-r < 0) ans="No"; System.out.println(ans); scanner.close(); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 4, 18, 20, 23, 13, 12, 13, 30, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 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, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 14, 2, 2, 2, 2, 13, 2, 13, 13, 2, 17, 2, 13, 13, 2, 13, 2, 13, 13, 2, 17, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 117, 5 ], [ 117, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 10, 11 ], [ 6, 12 ], [ 12, 13 ], [ 117, 14 ], [ 14, 15 ], [ 14, 16 ], [ 16, 17 ], [ 17, 18 ], [ 16, 19 ], [ 19, 20 ], [ 16, 21 ], [ 21, 22 ], [ 16, 23 ], [ 23, 24 ], [ 16, 25 ], [ 25, 26 ], [ 16, 27 ], [ 27, 28 ], [ 27, 29 ], [ 16, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 34, 35 ], [ 35, 36 ], [ 32, 37 ], [ 16, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 43, 44 ], [ 43, 45 ], [ 16, 46 ], [ 46, 47 ], [ 46, 48 ], [ 48, 49 ], [ 49, 50 ], [ 48, 51 ], [ 51, 52 ], [ 51, 53 ], [ 16, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 59, 60 ], [ 59, 61 ], [ 16, 62 ], [ 62, 63 ], [ 62, 64 ], [ 64, 65 ], [ 65, 66 ], [ 64, 67 ], [ 67, 68 ], [ 67, 69 ], [ 16, 70 ], [ 70, 71 ], [ 70, 72 ], [ 72, 73 ], [ 73, 74 ], [ 72, 75 ], [ 75, 76 ], [ 75, 77 ], [ 16, 78 ], [ 78, 79 ], [ 81, 80 ], [ 92, 81 ], [ 81, 82 ], [ 82, 83 ], [ 82, 84 ], [ 84, 85 ], [ 84, 86 ], [ 81, 87 ], [ 87, 88 ], [ 87, 89 ], [ 89, 90 ], [ 89, 91 ], [ 92, 92 ], [ 92, 93 ], [ 92, 94 ], [ 94, 95 ], [ 94, 96 ], [ 81, 97 ], [ 97, 98 ], [ 97, 99 ], [ 99, 100 ], [ 99, 101 ], [ 78, 102 ], [ 102, 103 ], [ 103, 104 ], [ 104, 105 ], [ 105, 106 ], [ 105, 107 ], [ 103, 108 ], [ 78, 109 ], [ 109, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 112, 114 ], [ 110, 115 ], [ 0, 116 ], [ 116, 117 ], [ 116, 118 ] ]
[ "import java.util.Scanner;\n\n/**\n * Created by labuser on 2016/04/19.\n */\npublic class Main {\n public static void main(String[] args) {\n new Main().run();\n }\n\n private void run() {\n\n int W, H, x, y, r;\n\n Scanner sc = new Scanner(System.in);\n String[] input = sc.nextLine().split(\" \");\n W = Integer.parseInt(input[0]);\n H = Integer.parseInt(input[1]);\n x = Integer.parseInt(input[2]);\n y = Integer.parseInt(input[3]);\n r = Integer.parseInt(input[4]);\n\n if (W >= (x + r) && 0 <= (x - r) && H >= (y + r) && 0 <= (y - r)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }\n\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args) {\n new Main().run();\n }\n\n private void run() {\n\n int W, H, x, y, r;\n\n Scanner sc = new Scanner(System.in);\n String[] input = sc.nextLine().split(\" \");\n W = Integer.parseInt(input[0]);\n H = Integer.parseInt(input[1]);\n x = Integer.parseInt(input[2]);\n y = Integer.parseInt(input[3]);\n r = Integer.parseInt(input[4]);\n\n if (W >= (x + r) && 0 <= (x - r) && H >= (y + r) && 0 <= (y - r)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }\n\n\n}", "Main", "public static void main(String[] args) {\n new Main().run();\n }", "main", "{\n new Main().run();\n }", "new Main().run()", "new Main().run", "new Main()", "String[] args", "args", "private void run() {\n\n int W, H, x, y, r;\n\n Scanner sc = new Scanner(System.in);\n String[] input = sc.nextLine().split(\" \");\n W = Integer.parseInt(input[0]);\n H = Integer.parseInt(input[1]);\n x = Integer.parseInt(input[2]);\n y = Integer.parseInt(input[3]);\n r = Integer.parseInt(input[4]);\n\n if (W >= (x + r) && 0 <= (x - r) && H >= (y + r) && 0 <= (y - r)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }", "run", "{\n\n int W, H, x, y, r;\n\n Scanner sc = new Scanner(System.in);\n String[] input = sc.nextLine().split(\" \");\n W = Integer.parseInt(input[0]);\n H = Integer.parseInt(input[1]);\n x = Integer.parseInt(input[2]);\n y = Integer.parseInt(input[3]);\n r = Integer.parseInt(input[4]);\n\n if (W >= (x + r) && 0 <= (x - r) && H >= (y + r) && 0 <= (y - r)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }", "int W", "W", "H", "H", "x", "x", "y", "y", "r;", "r", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "String[] input = sc.nextLine().split(\" \");", "input", "sc.nextLine().split(\" \")", "sc.nextLine().split", "sc.nextLine()", "sc.nextLine", "sc", "\" \"", "W = Integer.parseInt(input[0])", "W", "Integer.parseInt(input[0])", "Integer.parseInt", "Integer", "input[0]", "input", "0", "H = Integer.parseInt(input[1])", "H", "Integer.parseInt(input[1])", "Integer.parseInt", "Integer", "input[1]", "input", "1", "x = Integer.parseInt(input[2])", "x", "Integer.parseInt(input[2])", "Integer.parseInt", "Integer", "input[2]", "input", "2", "y = Integer.parseInt(input[3])", "y", "Integer.parseInt(input[3])", "Integer.parseInt", "Integer", "input[3]", "input", "3", "r = Integer.parseInt(input[4])", "r", "Integer.parseInt(input[4])", "Integer.parseInt", "Integer", "input[4]", "input", "4", "if (W >= (x + r) && 0 <= (x - r) && H >= (y + r) && 0 <= (y - r)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }", "W >= (x + r) && 0 <= (x - r) && H >= (y + r) && 0 <= (y - r)", "H >= (y + r)", "W >= (x + r) && 0 <= (x - r) && H >= (y + r) && 0 <= (y - r)", "W >= (x + r)", "W", "(x + r)", "x", "r", "0 <= (x - r)", "0", "(x - r)", "x", "r", "H >= (y + r)", "H", "(y + r)", "y", "r", "0 <= (y - r)", "0", "(y - r)", "y", "r", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "public class Main {\n public static void main(String[] args) {\n new Main().run();\n }\n\n private void run() {\n\n int W, H, x, y, r;\n\n Scanner sc = new Scanner(System.in);\n String[] input = sc.nextLine().split(\" \");\n W = Integer.parseInt(input[0]);\n H = Integer.parseInt(input[1]);\n x = Integer.parseInt(input[2]);\n y = Integer.parseInt(input[3]);\n r = Integer.parseInt(input[4]);\n\n if (W >= (x + r) && 0 <= (x - r) && H >= (y + r) && 0 <= (y - r)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }\n\n\n}", "public class Main {\n public static void main(String[] args) {\n new Main().run();\n }\n\n private void run() {\n\n int W, H, x, y, r;\n\n Scanner sc = new Scanner(System.in);\n String[] input = sc.nextLine().split(\" \");\n W = Integer.parseInt(input[0]);\n H = Integer.parseInt(input[1]);\n x = Integer.parseInt(input[2]);\n y = Integer.parseInt(input[3]);\n r = Integer.parseInt(input[4]);\n\n if (W >= (x + r) && 0 <= (x - r) && H >= (y + r) && 0 <= (y - r)) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }\n\n\n}", "Main" ]
import java.util.Scanner; /** * Created by labuser on 2016/04/19. */ public class Main { public static void main(String[] args) { new Main().run(); } private void run() { int W, H, x, y, r; Scanner sc = new Scanner(System.in); String[] input = sc.nextLine().split(" "); W = Integer.parseInt(input[0]); H = Integer.parseInt(input[1]); x = Integer.parseInt(input[2]); y = Integer.parseInt(input[3]); r = Integer.parseInt(input[4]); if (W >= (x + r) && 0 <= (x - r) && H >= (y + r) && 0 <= (y - r)) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 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, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 13, 41, 13, 4, 18, 13, 13, 41, 13, 4, 18, 13, 13, 41, 13, 4, 18, 13, 13, 41, 13, 4, 18, 13, 13, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 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 ], [ 22, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 37, 38 ], [ 22, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 42, 43 ], [ 22, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 47, 48 ], [ 22, 49 ], [ 49, 50 ], [ 49, 51 ], [ 51, 52 ], [ 52, 53 ], [ 22, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 22, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 62, 63 ], [ 61, 64 ], [ 22, 65 ], [ 65, 66 ], [ 65, 67 ], [ 67, 68 ], [ 68, 69 ], [ 67, 70 ], [ 22, 71 ], [ 71, 72 ], [ 71, 73 ], [ 73, 74 ], [ 74, 75 ], [ 73, 76 ], [ 22, 77 ], [ 77, 78 ], [ 77, 79 ], [ 79, 80 ], [ 80, 81 ], [ 79, 82 ], [ 22, 83 ], [ 83, 84 ], [ 83, 85 ], [ 85, 86 ], [ 86, 87 ], [ 85, 88 ], [ 22, 89 ], [ 89, 90 ], [ 92, 91 ], [ 103, 92 ], [ 92, 93 ], [ 93, 94 ], [ 94, 95 ], [ 94, 96 ], [ 93, 97 ], [ 92, 98 ], [ 98, 99 ], [ 99, 100 ], [ 99, 101 ], [ 98, 102 ], [ 103, 103 ], [ 103, 104 ], [ 104, 105 ], [ 104, 106 ], [ 103, 107 ], [ 92, 108 ], [ 108, 109 ], [ 109, 110 ], [ 109, 111 ], [ 108, 112 ], [ 89, 113 ], [ 113, 114 ], [ 114, 115 ], [ 115, 116 ], [ 116, 117 ], [ 116, 118 ], [ 114, 119 ], [ 89, 120 ], [ 120, 121 ], [ 121, 122 ], [ 122, 123 ], [ 123, 124 ], [ 123, 125 ], [ 121, 126 ], [ 9, 127 ], [ 127, 128 ] ]
[ "import java.io.*;\nimport java.util.*;\n\nclass Main{\n public static void main(String args[]){\n try{\n BufferedReader reader=new BufferedReader(new InputStreamReader(System.in));\n String s=reader.readLine();\n StringTokenizer st=new StringTokenizer(s,\" \");\n \n String W=st.nextToken();\n String H=st.nextToken();\n String x=st.nextToken();\n String y=st.nextToken();\n String r=st.nextToken();\n \n int Wn=Integer.parseInt(W);\n int Hn=Integer.parseInt(H);\n int xn=Integer.parseInt(x);\n int yn=Integer.parseInt(y);\n int rn=Integer.parseInt(r);\n \n if((xn-rn)>=0 && (xn+rn)<=Wn && (yn-rn)>=0 && (yn+rn)<=Hn){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n \n \n }catch(IOException e){\n System.out.println(e);\n }\n }\n}", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "class Main{\n public static void main(String args[]){\n try{\n BufferedReader reader=new BufferedReader(new InputStreamReader(System.in));\n String s=reader.readLine();\n StringTokenizer st=new StringTokenizer(s,\" \");\n \n String W=st.nextToken();\n String H=st.nextToken();\n String x=st.nextToken();\n String y=st.nextToken();\n String r=st.nextToken();\n \n int Wn=Integer.parseInt(W);\n int Hn=Integer.parseInt(H);\n int xn=Integer.parseInt(x);\n int yn=Integer.parseInt(y);\n int rn=Integer.parseInt(r);\n \n if((xn-rn)>=0 && (xn+rn)<=Wn && (yn-rn)>=0 && (yn+rn)<=Hn){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n \n \n }catch(IOException e){\n System.out.println(e);\n }\n }\n}", "Main", "public static void main(String args[]){\n try{\n BufferedReader reader=new BufferedReader(new InputStreamReader(System.in));\n String s=reader.readLine();\n StringTokenizer st=new StringTokenizer(s,\" \");\n \n String W=st.nextToken();\n String H=st.nextToken();\n String x=st.nextToken();\n String y=st.nextToken();\n String r=st.nextToken();\n \n int Wn=Integer.parseInt(W);\n int Hn=Integer.parseInt(H);\n int xn=Integer.parseInt(x);\n int yn=Integer.parseInt(y);\n int rn=Integer.parseInt(r);\n \n if((xn-rn)>=0 && (xn+rn)<=Wn && (yn-rn)>=0 && (yn+rn)<=Hn){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n \n \n }catch(IOException e){\n System.out.println(e);\n }\n }", "main", "{\n try{\n BufferedReader reader=new BufferedReader(new InputStreamReader(System.in));\n String s=reader.readLine();\n StringTokenizer st=new StringTokenizer(s,\" \");\n \n String W=st.nextToken();\n String H=st.nextToken();\n String x=st.nextToken();\n String y=st.nextToken();\n String r=st.nextToken();\n \n int Wn=Integer.parseInt(W);\n int Hn=Integer.parseInt(H);\n int xn=Integer.parseInt(x);\n int yn=Integer.parseInt(y);\n int rn=Integer.parseInt(r);\n \n if((xn-rn)>=0 && (xn+rn)<=Wn && (yn-rn)>=0 && (yn+rn)<=Hn){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n \n \n }catch(IOException e){\n System.out.println(e);\n }\n }", "try{\n BufferedReader reader=new BufferedReader(new InputStreamReader(System.in));\n String s=reader.readLine();\n StringTokenizer st=new StringTokenizer(s,\" \");\n \n String W=st.nextToken();\n String H=st.nextToken();\n String x=st.nextToken();\n String y=st.nextToken();\n String r=st.nextToken();\n \n int Wn=Integer.parseInt(W);\n int Hn=Integer.parseInt(H);\n int xn=Integer.parseInt(x);\n int yn=Integer.parseInt(y);\n int rn=Integer.parseInt(r);\n \n if((xn-rn)>=0 && (xn+rn)<=Wn && (yn-rn)>=0 && (yn+rn)<=Hn){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n \n \n }catch(IOException e){\n System.out.println(e);\n }", "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 BufferedReader reader=new BufferedReader(new InputStreamReader(System.in));\n String s=reader.readLine();\n StringTokenizer st=new StringTokenizer(s,\" \");\n \n String W=st.nextToken();\n String H=st.nextToken();\n String x=st.nextToken();\n String y=st.nextToken();\n String r=st.nextToken();\n \n int Wn=Integer.parseInt(W);\n int Hn=Integer.parseInt(H);\n int xn=Integer.parseInt(x);\n int yn=Integer.parseInt(y);\n int rn=Integer.parseInt(r);\n \n if((xn-rn)>=0 && (xn+rn)<=Wn && (yn-rn)>=0 && (yn+rn)<=Hn){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n \n \n }", "BufferedReader reader=new BufferedReader(new InputStreamReader(System.in));", "reader", "new BufferedReader(new InputStreamReader(System.in))", "String s=reader.readLine();", "s", "reader.readLine()", "reader.readLine", "reader", "StringTokenizer st=new StringTokenizer(s,\" \");", "st", "new StringTokenizer(s,\" \")", "String W=st.nextToken();", "W", "st.nextToken()", "st.nextToken", "st", "String H=st.nextToken();", "H", "st.nextToken()", "st.nextToken", "st", "String x=st.nextToken();", "x", "st.nextToken()", "st.nextToken", "st", "String y=st.nextToken();", "y", "st.nextToken()", "st.nextToken", "st", "String r=st.nextToken();", "r", "st.nextToken()", "st.nextToken", "st", "int Wn=Integer.parseInt(W);", "Wn", "Integer.parseInt(W)", "Integer.parseInt", "Integer", "W", "int Hn=Integer.parseInt(H);", "Hn", "Integer.parseInt(H)", "Integer.parseInt", "Integer", "H", "int xn=Integer.parseInt(x);", "xn", "Integer.parseInt(x)", "Integer.parseInt", "Integer", "x", "int yn=Integer.parseInt(y);", "yn", "Integer.parseInt(y)", "Integer.parseInt", "Integer", "y", "int rn=Integer.parseInt(r);", "rn", "Integer.parseInt(r)", "Integer.parseInt", "Integer", "r", "if((xn-rn)>=0 && (xn+rn)<=Wn && (yn-rn)>=0 && (yn+rn)<=Hn){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }", "(xn-rn)>=0 && (xn+rn)<=Wn && (yn-rn)>=0 && (yn+rn)<=Hn", "(yn-rn)>=0", "(xn-rn)>=0 && (xn+rn)<=Wn && (yn-rn)>=0 && (yn+rn)<=Hn", "(xn-rn)>=0", "(xn-rn)", "xn", "rn", "0", "(xn+rn)<=Wn", "(xn+rn)", "xn", "rn", "Wn", "(yn-rn)>=0", "(yn-rn)", "yn", "rn", "0", "(yn+rn)<=Hn", "(yn+rn)", "yn", "rn", "Hn", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String args[]", "args" ]
import java.io.*; import java.util.*; class Main{ public static void main(String args[]){ try{ BufferedReader reader=new BufferedReader(new InputStreamReader(System.in)); String s=reader.readLine(); StringTokenizer st=new StringTokenizer(s," "); String W=st.nextToken(); String H=st.nextToken(); String x=st.nextToken(); String y=st.nextToken(); String r=st.nextToken(); int Wn=Integer.parseInt(W); int Hn=Integer.parseInt(H); int xn=Integer.parseInt(x); int yn=Integer.parseInt(y); int rn=Integer.parseInt(r); if((xn-rn)>=0 && (xn+rn)<=Wn && (yn-rn)>=0 && (yn+rn)<=Hn){ System.out.println("Yes"); }else{ System.out.println("No"); } }catch(IOException e){ System.out.println(e); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 41, 13, 12, 13, 30, 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, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 2, 2, 2, 4, 13, 13, 2, 13, 13, 4, 13, 13, 2, 13, 13, 4, 13, 2, 13, 13, 13, 4, 13, 2, 13, 13, 13, 4, 18, 18, 13, 13, 8, 13, 17, 17, 23, 13, 12, 13, 30, 41, 13, 2, 2, 17, 13, 2, 13, 13, 41, 13, 2, 2, 17, 13, 2, 13, 13, 29, 2, 13, 13, 23, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 140, 11 ], [ 140, 12 ], [ 12, 13 ], [ 140, 14 ], [ 14, 15 ], [ 140, 16 ], [ 16, 17 ], [ 16, 18 ], [ 18, 19 ], [ 19, 20 ], [ 19, 21 ], [ 18, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 24, 29 ], [ 18, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 32, 35 ], [ 35, 36 ], [ 35, 37 ], [ 18, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 43, 44 ], [ 43, 45 ], [ 18, 46 ], [ 46, 47 ], [ 46, 48 ], [ 48, 49 ], [ 49, 50 ], [ 48, 51 ], [ 51, 52 ], [ 51, 53 ], [ 18, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 59, 60 ], [ 59, 61 ], [ 18, 62 ], [ 62, 63 ], [ 62, 64 ], [ 64, 65 ], [ 65, 66 ], [ 64, 67 ], [ 67, 68 ], [ 67, 69 ], [ 18, 70 ], [ 70, 71 ], [ 70, 72 ], [ 74, 73 ], [ 73, 74 ], [ 74, 75 ], [ 75, 76 ], [ 75, 77 ], [ 75, 78 ], [ 78, 79 ], [ 78, 80 ], [ 74, 81 ], [ 81, 82 ], [ 81, 83 ], [ 81, 84 ], [ 84, 85 ], [ 84, 86 ], [ 73, 87 ], [ 87, 88 ], [ 87, 89 ], [ 89, 90 ], [ 89, 91 ], [ 87, 92 ], [ 74, 93 ], [ 93, 94 ], [ 93, 95 ], [ 95, 96 ], [ 95, 97 ], [ 93, 98 ], [ 18, 99 ], [ 99, 100 ], [ 100, 101 ], [ 101, 102 ], [ 101, 103 ], [ 99, 104 ], [ 104, 105 ], [ 104, 106 ], [ 104, 107 ], [ 16, 108 ], [ 108, 109 ], [ 140, 110 ], [ 110, 111 ], [ 110, 112 ], [ 112, 113 ], [ 113, 114 ], [ 113, 115 ], [ 115, 116 ], [ 116, 117 ], [ 116, 118 ], [ 115, 119 ], [ 119, 120 ], [ 119, 121 ], [ 112, 122 ], [ 122, 123 ], [ 122, 124 ], [ 124, 125 ], [ 125, 126 ], [ 125, 127 ], [ 124, 128 ], [ 128, 129 ], [ 128, 130 ], [ 112, 131 ], [ 131, 132 ], [ 132, 133 ], [ 132, 134 ], [ 110, 135 ], [ 135, 136 ], [ 110, 137 ], [ 137, 138 ], [ 0, 139 ], [ 139, 140 ], [ 139, 141 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\tstatic long w;\n\tstatic long h;\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] strArr = br.readLine().split(\" \");\n\t\tw = Long.parseLong(strArr[0]);\n\t\th = Long.parseLong(strArr[1]);\n\t\tlong x = Long.parseLong(strArr[2]);\n\t\tlong y = Long.parseLong(strArr[3]);\n\t\tlong r = Long.parseLong(strArr[4]);\n\t\tboolean isIn = isIn(x, y - r) && isIn(x, y + r) && isIn(x - r, y) && isIn(x + r, y);\n\t\tSystem.out.println(isIn ? \"Yes\" : \"No\");\n\t}\n\t\n\tprivate static boolean isIn(long x, long y){\n\t\tboolean xIsIn = 0 <= x && x <= w;\n\t\tboolean yIsIn = 0 <= y && y <= h;\n\t\treturn xIsIn && yIsIn;\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\tstatic long w;\n\tstatic long h;\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] strArr = br.readLine().split(\" \");\n\t\tw = Long.parseLong(strArr[0]);\n\t\th = Long.parseLong(strArr[1]);\n\t\tlong x = Long.parseLong(strArr[2]);\n\t\tlong y = Long.parseLong(strArr[3]);\n\t\tlong r = Long.parseLong(strArr[4]);\n\t\tboolean isIn = isIn(x, y - r) && isIn(x, y + r) && isIn(x - r, y) && isIn(x + r, y);\n\t\tSystem.out.println(isIn ? \"Yes\" : \"No\");\n\t}\n\t\n\tprivate static boolean isIn(long x, long y){\n\t\tboolean xIsIn = 0 <= x && x <= w;\n\t\tboolean yIsIn = 0 <= y && y <= h;\n\t\treturn xIsIn && yIsIn;\n\t}\n}", "Main", "static long w;", "w", "static long h;", "h", "public static void main(String[] args) throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] strArr = br.readLine().split(\" \");\n\t\tw = Long.parseLong(strArr[0]);\n\t\th = Long.parseLong(strArr[1]);\n\t\tlong x = Long.parseLong(strArr[2]);\n\t\tlong y = Long.parseLong(strArr[3]);\n\t\tlong r = Long.parseLong(strArr[4]);\n\t\tboolean isIn = isIn(x, y - r) && isIn(x, y + r) && isIn(x - r, y) && isIn(x + r, y);\n\t\tSystem.out.println(isIn ? \"Yes\" : \"No\");\n\t}", "main", "{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] strArr = br.readLine().split(\" \");\n\t\tw = Long.parseLong(strArr[0]);\n\t\th = Long.parseLong(strArr[1]);\n\t\tlong x = Long.parseLong(strArr[2]);\n\t\tlong y = Long.parseLong(strArr[3]);\n\t\tlong r = Long.parseLong(strArr[4]);\n\t\tboolean isIn = isIn(x, y - r) && isIn(x, y + r) && isIn(x - r, y) && isIn(x + r, y);\n\t\tSystem.out.println(isIn ? \"Yes\" : \"No\");\n\t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String[] strArr = br.readLine().split(\" \");", "strArr", "br.readLine().split(\" \")", "br.readLine().split", "br.readLine()", "br.readLine", "br", "\" \"", "w = Long.parseLong(strArr[0])", "w", "Long.parseLong(strArr[0])", "Long.parseLong", "Long", "strArr[0]", "strArr", "0", "h = Long.parseLong(strArr[1])", "h", "Long.parseLong(strArr[1])", "Long.parseLong", "Long", "strArr[1]", "strArr", "1", "long x = Long.parseLong(strArr[2]);", "x", "Long.parseLong(strArr[2])", "Long.parseLong", "Long", "strArr[2]", "strArr", "2", "long y = Long.parseLong(strArr[3]);", "y", "Long.parseLong(strArr[3])", "Long.parseLong", "Long", "strArr[3]", "strArr", "3", "long r = Long.parseLong(strArr[4]);", "r", "Long.parseLong(strArr[4])", "Long.parseLong", "Long", "strArr[4]", "strArr", "4", "boolean isIn = isIn(x, y - r) && isIn(x, y + r) && isIn(x - r, y) && isIn(x + r, y);", "isIn", "isIn(x, y - r) && isIn(x, y + r) && isIn(x - r, y) && isIn(x + r, y)", "isIn(x - r, y)", "isIn(x, y - r) && isIn(x, y + r) && isIn(x - r, y) && isIn(x + r, y)", "isIn(x, y - r)", "isIn", "x", "y - r", "y", "r", "isIn(x, y + r)", "isIn", "x", "y + r", "y", "r", "isIn(x - r, y)", "isIn", "x - r", "x", "r", "y", "isIn(x + r, y)", "isIn", "x + r", "x", "r", "y", "System.out.println(isIn ? \"Yes\" : \"No\")", "System.out.println", "System.out", "System", "System.out", "isIn ? \"Yes\" : \"No\"", "isIn", "\"Yes\"", "\"No\"", "String[] args", "args", "private static boolean isIn(long x, long y){\n\t\tboolean xIsIn = 0 <= x && x <= w;\n\t\tboolean yIsIn = 0 <= y && y <= h;\n\t\treturn xIsIn && yIsIn;\n\t}", "isIn", "{\n\t\tboolean xIsIn = 0 <= x && x <= w;\n\t\tboolean yIsIn = 0 <= y && y <= h;\n\t\treturn xIsIn && yIsIn;\n\t}", "boolean xIsIn = 0 <= x && x <= w;", "xIsIn", "0 <= x && x <= w", "0 <= x", "0", "x", "x <= w", "x", "w", "boolean yIsIn = 0 <= y && y <= h;", "yIsIn", "0 <= y && y <= h", "0 <= y", "0", "y", "y <= h", "y", "h", "return xIsIn && yIsIn;", "xIsIn && yIsIn", "xIsIn", "yIsIn", "long x", "x", "long y", "y", "public class Main {\n\tstatic long w;\n\tstatic long h;\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] strArr = br.readLine().split(\" \");\n\t\tw = Long.parseLong(strArr[0]);\n\t\th = Long.parseLong(strArr[1]);\n\t\tlong x = Long.parseLong(strArr[2]);\n\t\tlong y = Long.parseLong(strArr[3]);\n\t\tlong r = Long.parseLong(strArr[4]);\n\t\tboolean isIn = isIn(x, y - r) && isIn(x, y + r) && isIn(x - r, y) && isIn(x + r, y);\n\t\tSystem.out.println(isIn ? \"Yes\" : \"No\");\n\t}\n\t\n\tprivate static boolean isIn(long x, long y){\n\t\tboolean xIsIn = 0 <= x && x <= w;\n\t\tboolean yIsIn = 0 <= y && y <= h;\n\t\treturn xIsIn && yIsIn;\n\t}\n}", "public class Main {\n\tstatic long w;\n\tstatic long h;\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString[] strArr = br.readLine().split(\" \");\n\t\tw = Long.parseLong(strArr[0]);\n\t\th = Long.parseLong(strArr[1]);\n\t\tlong x = Long.parseLong(strArr[2]);\n\t\tlong y = Long.parseLong(strArr[3]);\n\t\tlong r = Long.parseLong(strArr[4]);\n\t\tboolean isIn = isIn(x, y - r) && isIn(x, y + r) && isIn(x - r, y) && isIn(x + r, y);\n\t\tSystem.out.println(isIn ? \"Yes\" : \"No\");\n\t}\n\t\n\tprivate static boolean isIn(long x, long y){\n\t\tboolean xIsIn = 0 <= x && x <= w;\n\t\tboolean yIsIn = 0 <= y && y <= h;\n\t\treturn xIsIn && yIsIn;\n\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { static long w; static long h; public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] strArr = br.readLine().split(" "); w = Long.parseLong(strArr[0]); h = Long.parseLong(strArr[1]); long x = Long.parseLong(strArr[2]); long y = Long.parseLong(strArr[3]); long r = Long.parseLong(strArr[4]); boolean isIn = isIn(x, y - r) && isIn(x, y + r) && isIn(x - r, y) && isIn(x + r, y); System.out.println(isIn ? "Yes" : "No"); } private static boolean isIn(long x, long y){ boolean xIsIn = 0 <= x && x <= w; boolean yIsIn = 0 <= y && y <= h; return xIsIn && yIsIn; } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 4, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 14, 2, 2, 2, 2, 17, 13, 2, 13, 13, 2, 17, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 119, 11 ], [ 119, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 20, 25 ], [ 14, 26 ], [ 26, 27 ], [ 26, 28 ], [ 28, 29 ], [ 29, 30 ], [ 28, 31 ], [ 31, 32 ], [ 31, 33 ], [ 14, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 37, 38 ], [ 36, 39 ], [ 39, 40 ], [ 39, 41 ], [ 14, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 45, 46 ], [ 44, 47 ], [ 47, 48 ], [ 47, 49 ], [ 14, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 53, 54 ], [ 52, 55 ], [ 55, 56 ], [ 55, 57 ], [ 14, 58 ], [ 58, 59 ], [ 58, 60 ], [ 60, 61 ], [ 61, 62 ], [ 60, 63 ], [ 63, 64 ], [ 63, 65 ], [ 14, 66 ], [ 66, 67 ], [ 66, 68 ], [ 68, 69 ], [ 68, 70 ], [ 14, 71 ], [ 71, 72 ], [ 71, 73 ], [ 73, 74 ], [ 73, 75 ], [ 14, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 78, 80 ], [ 14, 81 ], [ 81, 82 ], [ 81, 83 ], [ 83, 84 ], [ 83, 85 ], [ 14, 86 ], [ 86, 87 ], [ 89, 88 ], [ 96, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 89, 93 ], [ 93, 94 ], [ 93, 95 ], [ 96, 96 ], [ 96, 97 ], [ 96, 98 ], [ 89, 99 ], [ 99, 100 ], [ 99, 101 ], [ 86, 102 ], [ 102, 103 ], [ 103, 104 ], [ 104, 105 ], [ 105, 106 ], [ 105, 107 ], [ 103, 108 ], [ 86, 109 ], [ 109, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 112, 114 ], [ 110, 115 ], [ 12, 116 ], [ 116, 117 ], [ 0, 118 ], [ 118, 119 ], [ 118, 120 ] ]
[ "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 br = new BufferedReader(\n new InputStreamReader(System.in));\n final String[] str = br.readLine().split(\" \");\n final int W = Integer.parseInt(str[0]);\n final int H = Integer.parseInt(str[1]);\n final int x = Integer.parseInt(str[2]);\n final int y = Integer.parseInt(str[3]);\n final int r = Integer.parseInt(str[4]);\n final int cX1 = x - r;\n final int cX2 = x + r;\n final int cY1 = y - r;\n final int cY2 = y + r;\n\n if (0 <= cX1 && cX2 <= W && 0 <= cY1 && cY2 <= H) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\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 br = new BufferedReader(\n new InputStreamReader(System.in));\n final String[] str = br.readLine().split(\" \");\n final int W = Integer.parseInt(str[0]);\n final int H = Integer.parseInt(str[1]);\n final int x = Integer.parseInt(str[2]);\n final int y = Integer.parseInt(str[3]);\n final int r = Integer.parseInt(str[4]);\n final int cX1 = x - r;\n final int cX2 = x + r;\n final int cY1 = y - r;\n final int cY2 = y + r;\n\n if (0 <= cX1 && cX2 <= W && 0 <= cY1 && cY2 <= H) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "Main", "public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(\n new InputStreamReader(System.in));\n final String[] str = br.readLine().split(\" \");\n final int W = Integer.parseInt(str[0]);\n final int H = Integer.parseInt(str[1]);\n final int x = Integer.parseInt(str[2]);\n final int y = Integer.parseInt(str[3]);\n final int r = Integer.parseInt(str[4]);\n final int cX1 = x - r;\n final int cX2 = x + r;\n final int cY1 = y - r;\n final int cY2 = y + r;\n\n if (0 <= cX1 && cX2 <= W && 0 <= cY1 && cY2 <= H) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }", "main", "{\n BufferedReader br = new BufferedReader(\n new InputStreamReader(System.in));\n final String[] str = br.readLine().split(\" \");\n final int W = Integer.parseInt(str[0]);\n final int H = Integer.parseInt(str[1]);\n final int x = Integer.parseInt(str[2]);\n final int y = Integer.parseInt(str[3]);\n final int r = Integer.parseInt(str[4]);\n final int cX1 = x - r;\n final int cX2 = x + r;\n final int cY1 = y - r;\n final int cY2 = y + r;\n\n if (0 <= cX1 && cX2 <= W && 0 <= cY1 && cY2 <= H) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }", "BufferedReader br = new BufferedReader(\n new InputStreamReader(System.in));", "br", "new BufferedReader(\n new InputStreamReader(System.in))", "final String[] str = br.readLine().split(\" \");", "str", "br.readLine().split(\" \")", "br.readLine().split", "br.readLine()", "br.readLine", "br", "\" \"", "final int W = Integer.parseInt(str[0]);", "W", "Integer.parseInt(str[0])", "Integer.parseInt", "Integer", "str[0]", "str", "0", "final int H = Integer.parseInt(str[1]);", "H", "Integer.parseInt(str[1])", "Integer.parseInt", "Integer", "str[1]", "str", "1", "final int x = Integer.parseInt(str[2]);", "x", "Integer.parseInt(str[2])", "Integer.parseInt", "Integer", "str[2]", "str", "2", "final int y = Integer.parseInt(str[3]);", "y", "Integer.parseInt(str[3])", "Integer.parseInt", "Integer", "str[3]", "str", "3", "final int r = Integer.parseInt(str[4]);", "r", "Integer.parseInt(str[4])", "Integer.parseInt", "Integer", "str[4]", "str", "4", "final int cX1 = x - r;", "cX1", "x - r", "x", "r", "final int cX2 = x + r;", "cX2", "x + r", "x", "r", "final int cY1 = y - r;", "cY1", "y - r", "y", "r", "final int cY2 = y + r;", "cY2", "y + r", "y", "r", "if (0 <= cX1 && cX2 <= W && 0 <= cY1 && cY2 <= H) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }", "0 <= cX1 && cX2 <= W && 0 <= cY1 && cY2 <= H", "0 <= cY1", "0 <= cX1 && cX2 <= W && 0 <= cY1 && cY2 <= H", "0 <= cX1", "0", "cX1", "cX2 <= W", "cX2", "W", "0 <= cY1", "0", "cY1", "cY2 <= H", "cY2", "H", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(\n new InputStreamReader(System.in));\n final String[] str = br.readLine().split(\" \");\n final int W = Integer.parseInt(str[0]);\n final int H = Integer.parseInt(str[1]);\n final int x = Integer.parseInt(str[2]);\n final int y = Integer.parseInt(str[3]);\n final int r = Integer.parseInt(str[4]);\n final int cX1 = x - r;\n final int cX2 = x + r;\n final int cY1 = y - r;\n final int cY2 = y + r;\n\n if (0 <= cX1 && cX2 <= W && 0 <= cY1 && cY2 <= H) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n }\n}", "public class Main {\n\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(\n new InputStreamReader(System.in));\n final String[] str = br.readLine().split(\" \");\n final int W = Integer.parseInt(str[0]);\n final int H = Integer.parseInt(str[1]);\n final int x = Integer.parseInt(str[2]);\n final int y = Integer.parseInt(str[3]);\n final int r = Integer.parseInt(str[4]);\n final int cX1 = x - r;\n final int cX2 = x + r;\n final int cY1 = y - r;\n final int cY2 = y + r;\n\n if (0 <= cX1 && cX2 <= W && 0 <= cY1 && cY2 <= H) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\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 br = new BufferedReader( new InputStreamReader(System.in)); final String[] str = br.readLine().split(" "); final int W = Integer.parseInt(str[0]); final int H = Integer.parseInt(str[1]); final int x = Integer.parseInt(str[2]); final int y = Integer.parseInt(str[3]); final int r = Integer.parseInt(str[4]); final int cX1 = x - r; final int cX2 = x + r; final int cY1 = y - r; final int cY2 = y + r; if (0 <= cX1 && cX2 <= W && 0 <= cY1 && cY2 <= H) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 17, 11, 1, 41, 13, 17, 2, 13, 18, 13, 13, 1, 40, 13, 30, 30, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 13, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 2, 17, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 129, 5 ], [ 129, 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 ], [ 29, 32 ], [ 8, 33 ], [ 33, 34 ], [ 34, 35 ], [ 35, 36 ], [ 35, 37 ], [ 33, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 40, 42 ], [ 33, 43 ], [ 43, 44 ], [ 44, 45 ], [ 33, 46 ], [ 47, 47 ], [ 8, 48 ], [ 48, 49 ], [ 48, 50 ], [ 50, 51 ], [ 51, 52 ], [ 50, 53 ], [ 53, 54 ], [ 53, 55 ], [ 8, 56 ], [ 56, 57 ], [ 56, 58 ], [ 58, 59 ], [ 59, 60 ], [ 58, 61 ], [ 61, 62 ], [ 61, 63 ], [ 8, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 67, 68 ], [ 66, 69 ], [ 69, 70 ], [ 69, 71 ], [ 8, 72 ], [ 72, 73 ], [ 72, 74 ], [ 74, 75 ], [ 75, 76 ], [ 74, 77 ], [ 77, 78 ], [ 77, 79 ], [ 8, 80 ], [ 80, 81 ], [ 80, 82 ], [ 82, 83 ], [ 83, 84 ], [ 82, 85 ], [ 85, 86 ], [ 85, 87 ], [ 8, 88 ], [ 88, 89 ], [ 90, 90 ], [ 90, 91 ], [ 91, 92 ], [ 92, 93 ], [ 93, 94 ], [ 93, 95 ], [ 92, 96 ], [ 91, 97 ], [ 97, 98 ], [ 97, 99 ], [ 99, 100 ], [ 99, 101 ], [ 90, 102 ], [ 102, 103 ], [ 103, 104 ], [ 103, 105 ], [ 102, 106 ], [ 90, 107 ], [ 107, 108 ], [ 107, 109 ], [ 109, 110 ], [ 109, 111 ], [ 88, 112 ], [ 112, 113 ], [ 113, 114 ], [ 114, 115 ], [ 115, 116 ], [ 115, 117 ], [ 113, 118 ], [ 88, 119 ], [ 119, 120 ], [ 120, 121 ], [ 121, 122 ], [ 122, 123 ], [ 122, 124 ], [ 120, 125 ], [ 6, 126 ], [ 126, 127 ], [ 0, 128 ], [ 128, 129 ], [ 128, 130 ] ]
[ "import java.io.*;\n\npublic class Main {\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tint W,H,x,y,r;\n\tString s = buf.readLine();\n\tString[] strlAry =s.split(\" \");\n\tfor(int i=0;i<strlAry.length;i++){\n\t}\n\tW= Integer.parseInt(strlAry[0]);\n\tH= Integer.parseInt(strlAry[1]);\n\tx= Integer.parseInt(strlAry[2]);\n\ty= Integer.parseInt(strlAry[3]);\n\tr= Integer.parseInt(strlAry[4]);\n\n\n\tif(((x+r) <=W && 0<=(x-r)) && ((y+r) <=H) &&( 0<=(y-r)) ){\n\t\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\t\tSystem.out.println(\"No\");\n\t}\n}\n}", "import java.io.*;", "io.*", "java", "public class Main {\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tint W,H,x,y,r;\n\tString s = buf.readLine();\n\tString[] strlAry =s.split(\" \");\n\tfor(int i=0;i<strlAry.length;i++){\n\t}\n\tW= Integer.parseInt(strlAry[0]);\n\tH= Integer.parseInt(strlAry[1]);\n\tx= Integer.parseInt(strlAry[2]);\n\ty= Integer.parseInt(strlAry[3]);\n\tr= Integer.parseInt(strlAry[4]);\n\n\n\tif(((x+r) <=W && 0<=(x-r)) && ((y+r) <=H) &&( 0<=(y-r)) ){\n\t\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\t\tSystem.out.println(\"No\");\n\t}\n}\n}", "Main", "public static void main(String[] args) throws IOException{\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tint W,H,x,y,r;\n\tString s = buf.readLine();\n\tString[] strlAry =s.split(\" \");\n\tfor(int i=0;i<strlAry.length;i++){\n\t}\n\tW= Integer.parseInt(strlAry[0]);\n\tH= Integer.parseInt(strlAry[1]);\n\tx= Integer.parseInt(strlAry[2]);\n\ty= Integer.parseInt(strlAry[3]);\n\tr= Integer.parseInt(strlAry[4]);\n\n\n\tif(((x+r) <=W && 0<=(x-r)) && ((y+r) <=H) &&( 0<=(y-r)) ){\n\t\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\t\tSystem.out.println(\"No\");\n\t}\n}", "main", "{\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tint W,H,x,y,r;\n\tString s = buf.readLine();\n\tString[] strlAry =s.split(\" \");\n\tfor(int i=0;i<strlAry.length;i++){\n\t}\n\tW= Integer.parseInt(strlAry[0]);\n\tH= Integer.parseInt(strlAry[1]);\n\tx= Integer.parseInt(strlAry[2]);\n\ty= Integer.parseInt(strlAry[3]);\n\tr= Integer.parseInt(strlAry[4]);\n\n\n\tif(((x+r) <=W && 0<=(x-r)) && ((y+r) <=H) &&( 0<=(y-r)) ){\n\t\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\t\tSystem.out.println(\"No\");\n\t}\n}", "BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));", "buf", "new BufferedReader(new InputStreamReader(System.in))", "int W", "W", "H", "H", "x", "x", "y", "y", "r;", "r", "String s = buf.readLine();", "s", "buf.readLine()", "buf.readLine", "buf", "String[] strlAry =s.split(\" \");", "strlAry", "s.split(\" \")", "s.split", "s", "\" \"", "for(int i=0;i<strlAry.length;i++){\n\t}", "int i=0;", "int i=0;", "i", "0", "i<strlAry.length", "i", "strlAry.length", "strlAry", "strlAry.length", "i++", "i++", "i", "{\n\t}", "{\n\t}", "W= Integer.parseInt(strlAry[0])", "W", "Integer.parseInt(strlAry[0])", "Integer.parseInt", "Integer", "strlAry[0]", "strlAry", "0", "H= Integer.parseInt(strlAry[1])", "H", "Integer.parseInt(strlAry[1])", "Integer.parseInt", "Integer", "strlAry[1]", "strlAry", "1", "x= Integer.parseInt(strlAry[2])", "x", "Integer.parseInt(strlAry[2])", "Integer.parseInt", "Integer", "strlAry[2]", "strlAry", "2", "y= Integer.parseInt(strlAry[3])", "y", "Integer.parseInt(strlAry[3])", "Integer.parseInt", "Integer", "strlAry[3]", "strlAry", "3", "r= Integer.parseInt(strlAry[4])", "r", "Integer.parseInt(strlAry[4])", "Integer.parseInt", "Integer", "strlAry[4]", "strlAry", "4", "if(((x+r) <=W && 0<=(x-r)) && ((y+r) <=H) &&( 0<=(y-r)) ){\n\t\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\t\tSystem.out.println(\"No\");\n\t}", "((x+r) <=W && 0<=(x-r)) && ((y+r) <=H) &&( 0<=(y-r))", "((x+r) <=W && 0<=(x-r)) && ((y+r) <=H) &&( 0<=(y-r))", "((x+r) <=W && 0<=(x-r))", "(x+r) <=W", "(x+r)", "x", "r", "W", "0<=(x-r)", "0", "(x-r)", "x", "r", "((y+r) <=H)", "(y+r)", "y", "r", "H", "( 0<=(y-r))", "0", "(y-r)", "y", "r", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\tSystem.out.println(\"No\");\n\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tint W,H,x,y,r;\n\tString s = buf.readLine();\n\tString[] strlAry =s.split(\" \");\n\tfor(int i=0;i<strlAry.length;i++){\n\t}\n\tW= Integer.parseInt(strlAry[0]);\n\tH= Integer.parseInt(strlAry[1]);\n\tx= Integer.parseInt(strlAry[2]);\n\ty= Integer.parseInt(strlAry[3]);\n\tr= Integer.parseInt(strlAry[4]);\n\n\n\tif(((x+r) <=W && 0<=(x-r)) && ((y+r) <=H) &&( 0<=(y-r)) ){\n\t\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\t\tSystem.out.println(\"No\");\n\t}\n}\n}", "public class Main {\n\tpublic static void main(String[] args) throws IOException{\n\t\tBufferedReader buf = new BufferedReader(new InputStreamReader(System.in));\n\tint W,H,x,y,r;\n\tString s = buf.readLine();\n\tString[] strlAry =s.split(\" \");\n\tfor(int i=0;i<strlAry.length;i++){\n\t}\n\tW= Integer.parseInt(strlAry[0]);\n\tH= Integer.parseInt(strlAry[1]);\n\tx= Integer.parseInt(strlAry[2]);\n\ty= Integer.parseInt(strlAry[3]);\n\tr= Integer.parseInt(strlAry[4]);\n\n\n\tif(((x+r) <=W && 0<=(x-r)) && ((y+r) <=H) &&( 0<=(y-r)) ){\n\t\t\tSystem.out.println(\"Yes\");\n\t}\n\telse{\n\t\t\tSystem.out.println(\"No\");\n\t}\n}\n}", "Main" ]
import java.io.*; public class Main { public static void main(String[] args) throws IOException{ BufferedReader buf = new BufferedReader(new InputStreamReader(System.in)); int W,H,x,y,r; String s = buf.readLine(); String[] strlAry =s.split(" "); for(int i=0;i<strlAry.length;i++){ } W= Integer.parseInt(strlAry[0]); H= Integer.parseInt(strlAry[1]); x= Integer.parseInt(strlAry[2]); y= Integer.parseInt(strlAry[3]); r= Integer.parseInt(strlAry[4]); if(((x+r) <=W && 0<=(x-r)) && ((y+r) <=H) &&( 0<=(y-r)) ){ System.out.println("Yes"); } else{ System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 4, 18, 20, 23, 13, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 14, 2, 2, 2, 2, 13, 13, 2, 13, 17, 2, 13, 13, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 98, 5 ], [ 98, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 10, 11 ], [ 6, 12 ], [ 12, 13 ], [ 0, 14 ], [ 14, 15 ], [ 14, 16 ], [ 16, 17 ], [ 16, 18 ], [ 18, 19 ], [ 19, 20 ], [ 19, 21 ], [ 18, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 18, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 18, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 18, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 18, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 45, 46 ], [ 18, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 49, 51 ], [ 18, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 18, 57 ], [ 57, 58 ], [ 57, 59 ], [ 59, 60 ], [ 59, 61 ], [ 18, 62 ], [ 62, 63 ], [ 62, 64 ], [ 64, 65 ], [ 64, 66 ], [ 18, 67 ], [ 67, 68 ], [ 70, 69 ], [ 77, 70 ], [ 70, 71 ], [ 71, 72 ], [ 71, 73 ], [ 70, 74 ], [ 74, 75 ], [ 74, 76 ], [ 77, 77 ], [ 77, 78 ], [ 77, 79 ], [ 70, 80 ], [ 80, 81 ], [ 80, 82 ], [ 67, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 86, 87 ], [ 86, 88 ], [ 84, 89 ], [ 67, 90 ], [ 90, 91 ], [ 91, 92 ], [ 92, 93 ], [ 93, 94 ], [ 93, 95 ], [ 91, 96 ], [ 0, 97 ], [ 97, 98 ], [ 97, 99 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tnew Problem().solve();\n\t}\n}\n\nclass Problem {\n\tvoid solve() {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint w = sc.nextInt();\n\t\tint h = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tint right = x + r;\n\t\tint left = x - r;\n\t\tint top = y + r;\n\t\tint bottom = y - r;\n\t\t\n\t\tif (right <= w \n\t\t\t\t&& left >= 0 \n\t\t\t\t&& top <= h \n\t\t\t\t&& bottom >= 0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tnew Problem().solve();\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tnew Problem().solve();\n\t}", "main", "{\n\t\tnew Problem().solve();\n\t}", "new Problem().solve()", "new Problem().solve", "new Problem()", "String[] args", "args", "class Problem {\n\tvoid solve() {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint w = sc.nextInt();\n\t\tint h = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tint right = x + r;\n\t\tint left = x - r;\n\t\tint top = y + r;\n\t\tint bottom = y - r;\n\t\t\n\t\tif (right <= w \n\t\t\t\t&& left >= 0 \n\t\t\t\t&& top <= h \n\t\t\t\t&& bottom >= 0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "Problem", "void solve() {\n\t\tScanner sc = new Scanner(System.in);\n\t\tint w = sc.nextInt();\n\t\tint h = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tint right = x + r;\n\t\tint left = x - r;\n\t\tint top = y + r;\n\t\tint bottom = y - r;\n\t\t\n\t\tif (right <= w \n\t\t\t\t&& left >= 0 \n\t\t\t\t&& top <= h \n\t\t\t\t&& bottom >= 0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}", "solve", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint w = sc.nextInt();\n\t\tint h = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tint right = x + r;\n\t\tint left = x - r;\n\t\tint top = y + r;\n\t\tint bottom = y - r;\n\t\t\n\t\tif (right <= w \n\t\t\t\t&& left >= 0 \n\t\t\t\t&& top <= h \n\t\t\t\t&& bottom >= 0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int w = sc.nextInt();", "w", "sc.nextInt()", "sc.nextInt", "sc", "int h = sc.nextInt();", "h", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "int right = x + r;", "right", "x + r", "x", "r", "int left = x - r;", "left", "x - r", "x", "r", "int top = y + r;", "top", "y + r", "y", "r", "int bottom = y - r;", "bottom", "y - r", "y", "r", "if (right <= w \n\t\t\t\t&& left >= 0 \n\t\t\t\t&& top <= h \n\t\t\t\t&& bottom >= 0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "right <= w \n\t\t\t\t&& left >= 0 \n\t\t\t\t&& top <= h \n\t\t\t\t&& bottom >= 0", "top <= h", "right <= w \n\t\t\t\t&& left >= 0 \n\t\t\t\t&& top <= h \n\t\t\t\t&& bottom >= 0", "right <= w", "right", "w", "left >= 0", "left", "0", "top <= h", "top", "h", "bottom >= 0", "bottom", "0", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tnew Problem().solve();\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tnew Problem().solve();\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { new Problem().solve(); } } class Problem { void solve() { Scanner sc = new Scanner(System.in); int w = sc.nextInt(); int h = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int r = sc.nextInt(); int right = x + r; int left = x - r; int top = y + r; int bottom = y - r; if (right <= w && left >= 0 && top <= h && bottom >= 0) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 13, 40, 17, 2, 17, 13, 2, 2, 13, 40, 17, 2, 17, 13, 30, 4, 18, 13, 40, 17, 14, 2, 2, 2, 2, 13, 17, 2, 17, 13, 2, 2, 13, 17, 2, 17, 13, 2, 2, 13, 17, 2, 17, 13, 30, 4, 18, 13, 40, 17, 14, 2, 2, 13, 2, 17, 13, 2, 13, 2, 17, 13, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 2, 13, 13, 2, 13, 2, 13, 13, 2, 2, 13, 13, 2, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 40, 41 ], [ 40, 42 ], [ 42, 43 ], [ 39, 44 ], [ 44, 45 ], [ 44, 46 ], [ 38, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 50, 51 ], [ 47, 52 ], [ 52, 53 ], [ 52, 54 ], [ 37, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 59, 60 ], [ 37, 61 ], [ 61, 62 ], [ 63, 63 ], [ 63, 64 ], [ 64, 65 ], [ 65, 66 ], [ 65, 67 ], [ 64, 68 ], [ 68, 69 ], [ 68, 70 ], [ 63, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 71, 75 ], [ 75, 76 ], [ 75, 77 ], [ 63, 78 ], [ 78, 79 ], [ 79, 80 ], [ 79, 81 ], [ 78, 82 ], [ 82, 83 ], [ 82, 84 ], [ 61, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 86, 89 ], [ 89, 90 ], [ 61, 91 ], [ 91, 92 ], [ 92, 93 ], [ 93, 94 ], [ 93, 95 ], [ 95, 96 ], [ 95, 97 ], [ 92, 98 ], [ 98, 99 ], [ 98, 100 ], [ 100, 101 ], [ 100, 102 ], [ 91, 103 ], [ 103, 104 ], [ 104, 105 ], [ 105, 106 ], [ 106, 107 ], [ 106, 108 ], [ 104, 109 ], [ 91, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 113, 114 ], [ 113, 115 ], [ 112, 116 ], [ 116, 117 ], [ 116, 118 ], [ 118, 119 ], [ 118, 120 ], [ 111, 121 ], [ 121, 122 ], [ 122, 123 ], [ 122, 124 ], [ 121, 125 ], [ 125, 126 ], [ 125, 127 ], [ 127, 128 ], [ 127, 129 ], [ 110, 130 ], [ 130, 131 ], [ 131, 132 ], [ 132, 133 ], [ 133, 134 ], [ 133, 135 ], [ 131, 136 ], [ 110, 137 ], [ 137, 138 ], [ 138, 139 ], [ 139, 140 ], [ 140, 141 ], [ 140, 142 ], [ 138, 143 ], [ 6, 144 ], [ 144, 145 ] ]
[ "import java.util.Scanner;\n\nclass Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int w = sc.nextInt();\n int h = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n if((x<-100 || 100<x) || (y<-100 || 100<y)){\n System.exit(-1);\n }else if((w<=0 || 100<w) || (h<=0 || 100<h) || (r<=0 || 100<r)){\n System.exit(-1);\n }else if(w<2*r && h<2*r){\n System.out.println(\"No\");\n }else if((r<=x && x<=w-r) && (r<=y && y<=h-r)){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int w = sc.nextInt();\n int h = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n if((x<-100 || 100<x) || (y<-100 || 100<y)){\n System.exit(-1);\n }else if((w<=0 || 100<w) || (h<=0 || 100<h) || (r<=0 || 100<r)){\n System.exit(-1);\n }else if(w<2*r && h<2*r){\n System.out.println(\"No\");\n }else if((r<=x && x<=w-r) && (r<=y && y<=h-r)){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }\n}", "Main", "public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int w = sc.nextInt();\n int h = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n if((x<-100 || 100<x) || (y<-100 || 100<y)){\n System.exit(-1);\n }else if((w<=0 || 100<w) || (h<=0 || 100<h) || (r<=0 || 100<r)){\n System.exit(-1);\n }else if(w<2*r && h<2*r){\n System.out.println(\"No\");\n }else if((r<=x && x<=w-r) && (r<=y && y<=h-r)){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int w = sc.nextInt();\n int h = sc.nextInt();\n int x = sc.nextInt();\n int y = sc.nextInt();\n int r = sc.nextInt();\n if((x<-100 || 100<x) || (y<-100 || 100<y)){\n System.exit(-1);\n }else if((w<=0 || 100<w) || (h<=0 || 100<h) || (r<=0 || 100<r)){\n System.exit(-1);\n }else if(w<2*r && h<2*r){\n System.out.println(\"No\");\n }else if((r<=x && x<=w-r) && (r<=y && y<=h-r)){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int w = sc.nextInt();", "w", "sc.nextInt()", "sc.nextInt", "sc", "int h = sc.nextInt();", "h", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "if((x<-100 || 100<x) || (y<-100 || 100<y)){\n System.exit(-1);\n }else if((w<=0 || 100<w) || (h<=0 || 100<h) || (r<=0 || 100<r)){\n System.exit(-1);\n }else if(w<2*r && h<2*r){\n System.out.println(\"No\");\n }else if((r<=x && x<=w-r) && (r<=y && y<=h-r)){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }", "(x<-100 || 100<x) || (y<-100 || 100<y)", "(x<-100 || 100<x)", "x<-100", "x", "-100", "100", "100<x", "100", "x", "(y<-100 || 100<y)", "y<-100", "y", "-100", "100", "100<y", "100", "y", "{\n System.exit(-1);\n }", "System.exit(-1)", "System.exit", "System", "-1", "1", "if((w<=0 || 100<w) || (h<=0 || 100<h) || (r<=0 || 100<r)){\n System.exit(-1);\n }else if(w<2*r && h<2*r){\n System.out.println(\"No\");\n }else if((r<=x && x<=w-r) && (r<=y && y<=h-r)){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }", "(w<=0 || 100<w) || (h<=0 || 100<h) || (r<=0 || 100<r)", "(w<=0 || 100<w) || (h<=0 || 100<h) || (r<=0 || 100<r)", "(w<=0 || 100<w)", "w<=0", "w", "0", "100<w", "100", "w", "(h<=0 || 100<h)", "h<=0", "h", "0", "100<h", "100", "h", "(r<=0 || 100<r)", "r<=0", "r", "0", "100<r", "100", "r", "{\n System.exit(-1);\n }", "System.exit(-1)", "System.exit", "System", "-1", "1", "if(w<2*r && h<2*r){\n System.out.println(\"No\");\n }else if((r<=x && x<=w-r) && (r<=y && y<=h-r)){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }", "w<2*r && h<2*r", "w<2*r", "w", "2*r", "2", "r", "h<2*r", "h", "2*r", "2", "r", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if((r<=x && x<=w-r) && (r<=y && y<=h-r)){\n System.out.println(\"Yes\");\n }else{\n System.out.println(\"No\");\n }", "(r<=x && x<=w-r) && (r<=y && y<=h-r)", "(r<=x && x<=w-r)", "r<=x", "r", "x", "x<=w-r", "x", "w-r", "w", "r", "(r<=y && y<=h-r)", "r<=y", "r", "y", "y<=h-r", "y", "h-r", "h", "r", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args" ]
import java.util.Scanner; class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int w = sc.nextInt(); int h = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int r = sc.nextInt(); if((x<-100 || 100<x) || (y<-100 || 100<y)){ System.exit(-1); }else if((w<=0 || 100<w) || (h<=0 || 100<h) || (r<=0 || 100<r)){ System.exit(-1); }else if(w<2*r && h<2*r){ System.out.println("No"); }else if((r<=x && x<=w-r) && (r<=y && y<=h-r)){ System.out.println("Yes"); }else{ System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 14, 2, 2, 2, 13, 13, 2, 13, 2, 13, 13, 2, 2, 13, 13, 2, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 87, 5 ], [ 87, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 14, 17 ], [ 17, 18 ], [ 18, 19 ], [ 8, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 25, 26 ], [ 26, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 30, 33 ], [ 33, 34 ], [ 34, 35 ], [ 8, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 38, 41 ], [ 41, 42 ], [ 42, 43 ], [ 8, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 49, 50 ], [ 50, 51 ], [ 8, 52 ], [ 52, 53 ], [ 54, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 54, 58 ], [ 58, 59 ], [ 58, 60 ], [ 60, 61 ], [ 60, 62 ], [ 54, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 67, 68 ], [ 67, 69 ], [ 69, 70 ], [ 69, 71 ], [ 52, 72 ], [ 72, 73 ], [ 73, 74 ], [ 74, 75 ], [ 74, 76 ], [ 72, 77 ], [ 52, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 80, 82 ], [ 78, 83 ], [ 6, 84 ], [ 84, 85 ], [ 0, 86 ], [ 86, 87 ], [ 86, 88 ] ]
[ "import java.util.Scanner;\npublic class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int W = Integer.parseInt(scan.next());\n int H = Integer.parseInt(scan.next());\n int x = Integer.parseInt(scan.next());\n int y = Integer.parseInt(scan.next());\n int r = Integer.parseInt(scan.next());\n if((r<=x)&&(x<=(W-r))&&((r<=y)&&(y<=(H-r))))\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\");\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int W = Integer.parseInt(scan.next());\n int H = Integer.parseInt(scan.next());\n int x = Integer.parseInt(scan.next());\n int y = Integer.parseInt(scan.next());\n int r = Integer.parseInt(scan.next());\n if((r<=x)&&(x<=(W-r))&&((r<=y)&&(y<=(H-r))))\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\");\n }\n}", "Main", "public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int W = Integer.parseInt(scan.next());\n int H = Integer.parseInt(scan.next());\n int x = Integer.parseInt(scan.next());\n int y = Integer.parseInt(scan.next());\n int r = Integer.parseInt(scan.next());\n if((r<=x)&&(x<=(W-r))&&((r<=y)&&(y<=(H-r))))\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\");\n }", "main", "{\n Scanner scan = new Scanner(System.in);\n int W = Integer.parseInt(scan.next());\n int H = Integer.parseInt(scan.next());\n int x = Integer.parseInt(scan.next());\n int y = Integer.parseInt(scan.next());\n int r = Integer.parseInt(scan.next());\n if((r<=x)&&(x<=(W-r))&&((r<=y)&&(y<=(H-r))))\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\");\n }", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int W = Integer.parseInt(scan.next());", "W", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "int H = Integer.parseInt(scan.next());", "H", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "int x = Integer.parseInt(scan.next());", "x", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "int y = Integer.parseInt(scan.next());", "y", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "int r = Integer.parseInt(scan.next());", "r", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "if((r<=x)&&(x<=(W-r))&&((r<=y)&&(y<=(H-r))))\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\");", "(r<=x)&&(x<=(W-r))&&((r<=y)&&(y<=(H-r)))", "(r<=x)&&(x<=(W-r))&&((r<=y)&&(y<=(H-r)))", "(r<=x)", "r", "x", "(x<=(W-r))", "x", "(W-r)", "W", "r", "((r<=y)&&(y<=(H-r)))", "(r<=y)", "r", "y", "(y<=(H-r))", "y", "(H-r)", "H", "r", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int W = Integer.parseInt(scan.next());\n int H = Integer.parseInt(scan.next());\n int x = Integer.parseInt(scan.next());\n int y = Integer.parseInt(scan.next());\n int r = Integer.parseInt(scan.next());\n if((r<=x)&&(x<=(W-r))&&((r<=y)&&(y<=(H-r))))\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\");\n }\n}", "public class Main{\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n int W = Integer.parseInt(scan.next());\n int H = Integer.parseInt(scan.next());\n int x = Integer.parseInt(scan.next());\n int y = Integer.parseInt(scan.next());\n int r = Integer.parseInt(scan.next());\n if((r<=x)&&(x<=(W-r))&&((r<=y)&&(y<=(H-r))))\n System.out.println(\"Yes\");\n else\n System.out.println(\"No\");\n }\n}", "Main" ]
import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner scan = new Scanner(System.in); int W = Integer.parseInt(scan.next()); int H = Integer.parseInt(scan.next()); int x = Integer.parseInt(scan.next()); int y = Integer.parseInt(scan.next()); int r = Integer.parseInt(scan.next()); if((r<=x)&&(x<=(W-r))&&((r<=y)&&(y<=(H-r)))) System.out.println("Yes"); else System.out.println("No"); } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 17, 14, 2, 13, 17, 30, 0, 13, 17, 14, 2, 13, 17, 30, 0, 13, 17, 14, 2, 2, 13, 13, 13, 30, 40, 13, 14, 2, 2, 13, 13, 13, 30, 40, 13, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 98, 5 ], [ 98, 6 ], [ 6, 7 ], [ 6, 8 ], [ 98, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 11, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 28, 29 ], [ 11, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 11, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 38, 39 ], [ 11, 40 ], [ 40, 41 ], [ 40, 42 ], [ 11, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 43, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 11, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 55, 56 ], [ 56, 57 ], [ 56, 58 ], [ 11, 59 ], [ 59, 60 ], [ 60, 61 ], [ 61, 62 ], [ 61, 63 ], [ 60, 64 ], [ 59, 65 ], [ 65, 66 ], [ 66, 67 ], [ 11, 68 ], [ 68, 69 ], [ 69, 70 ], [ 70, 71 ], [ 70, 72 ], [ 69, 73 ], [ 68, 74 ], [ 74, 75 ], [ 75, 76 ], [ 11, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 77, 81 ], [ 81, 82 ], [ 82, 83 ], [ 83, 84 ], [ 84, 85 ], [ 84, 86 ], [ 82, 87 ], [ 77, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 91, 92 ], [ 91, 93 ], [ 89, 94 ], [ 9, 95 ], [ 95, 96 ], [ 0, 97 ], [ 97, 98 ], [ 97, 99 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tstatic StringBuffer buf = new StringBuffer();\n public static void main (String args[]){\n \tScanner sc = new Scanner(System.in);\n \tint X = sc.nextInt();\n \tint H = sc.nextInt();\n \tint x = sc.nextInt();\n \tint y = sc.nextInt();\n \tint r = sc.nextInt();\n \tint count = 0;\n \tif(x<0){\n \t\tcount = 3;\n \t}\n\n \tif(y<0){\n \t\tcount = 3;\n \t}\n\n\n \tif(x+r<=X){\n \t count++;\n \t}\n \tif(y+r<=H){\n \t count++;\n \t}\n\n \tif(count == 2){\n \t System.out.println(\"Yes\");\n \t}else{\n \t System.out.println(\"No\");\n \t}\n\n\n\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tstatic StringBuffer buf = new StringBuffer();\n public static void main (String args[]){\n \tScanner sc = new Scanner(System.in);\n \tint X = sc.nextInt();\n \tint H = sc.nextInt();\n \tint x = sc.nextInt();\n \tint y = sc.nextInt();\n \tint r = sc.nextInt();\n \tint count = 0;\n \tif(x<0){\n \t\tcount = 3;\n \t}\n\n \tif(y<0){\n \t\tcount = 3;\n \t}\n\n\n \tif(x+r<=X){\n \t count++;\n \t}\n \tif(y+r<=H){\n \t count++;\n \t}\n\n \tif(count == 2){\n \t System.out.println(\"Yes\");\n \t}else{\n \t System.out.println(\"No\");\n \t}\n\n\n\n }\n}", "Main", "static StringBuffer buf = new StringBuffer();", "buf", "new StringBuffer()", "public static void main (String args[]){\n \tScanner sc = new Scanner(System.in);\n \tint X = sc.nextInt();\n \tint H = sc.nextInt();\n \tint x = sc.nextInt();\n \tint y = sc.nextInt();\n \tint r = sc.nextInt();\n \tint count = 0;\n \tif(x<0){\n \t\tcount = 3;\n \t}\n\n \tif(y<0){\n \t\tcount = 3;\n \t}\n\n\n \tif(x+r<=X){\n \t count++;\n \t}\n \tif(y+r<=H){\n \t count++;\n \t}\n\n \tif(count == 2){\n \t System.out.println(\"Yes\");\n \t}else{\n \t System.out.println(\"No\");\n \t}\n\n\n\n }", "main", "{\n \tScanner sc = new Scanner(System.in);\n \tint X = sc.nextInt();\n \tint H = sc.nextInt();\n \tint x = sc.nextInt();\n \tint y = sc.nextInt();\n \tint r = sc.nextInt();\n \tint count = 0;\n \tif(x<0){\n \t\tcount = 3;\n \t}\n\n \tif(y<0){\n \t\tcount = 3;\n \t}\n\n\n \tif(x+r<=X){\n \t count++;\n \t}\n \tif(y+r<=H){\n \t count++;\n \t}\n\n \tif(count == 2){\n \t System.out.println(\"Yes\");\n \t}else{\n \t System.out.println(\"No\");\n \t}\n\n\n\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int X = sc.nextInt();", "X", "sc.nextInt()", "sc.nextInt", "sc", "int H = sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "int count = 0;", "count", "0", "if(x<0){\n \t\tcount = 3;\n \t}", "x<0", "x", "0", "{\n \t\tcount = 3;\n \t}", "count = 3", "count", "3", "if(y<0){\n \t\tcount = 3;\n \t}", "y<0", "y", "0", "{\n \t\tcount = 3;\n \t}", "count = 3", "count", "3", "if(x+r<=X){\n \t count++;\n \t}", "x+r<=X", "x+r", "x", "r", "X", "{\n \t count++;\n \t}", "count++", "count", "if(y+r<=H){\n \t count++;\n \t}", "y+r<=H", "y+r", "y", "r", "H", "{\n \t count++;\n \t}", "count++", "count", "if(count == 2){\n \t System.out.println(\"Yes\");\n \t}else{\n \t System.out.println(\"No\");\n \t}", "count == 2", "count", "2", "{\n \t System.out.println(\"Yes\");\n \t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n \t System.out.println(\"No\");\n \t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String args[]", "args", "public class Main {\n\tstatic StringBuffer buf = new StringBuffer();\n public static void main (String args[]){\n \tScanner sc = new Scanner(System.in);\n \tint X = sc.nextInt();\n \tint H = sc.nextInt();\n \tint x = sc.nextInt();\n \tint y = sc.nextInt();\n \tint r = sc.nextInt();\n \tint count = 0;\n \tif(x<0){\n \t\tcount = 3;\n \t}\n\n \tif(y<0){\n \t\tcount = 3;\n \t}\n\n\n \tif(x+r<=X){\n \t count++;\n \t}\n \tif(y+r<=H){\n \t count++;\n \t}\n\n \tif(count == 2){\n \t System.out.println(\"Yes\");\n \t}else{\n \t System.out.println(\"No\");\n \t}\n\n\n\n }\n}", "public class Main {\n\tstatic StringBuffer buf = new StringBuffer();\n public static void main (String args[]){\n \tScanner sc = new Scanner(System.in);\n \tint X = sc.nextInt();\n \tint H = sc.nextInt();\n \tint x = sc.nextInt();\n \tint y = sc.nextInt();\n \tint r = sc.nextInt();\n \tint count = 0;\n \tif(x<0){\n \t\tcount = 3;\n \t}\n\n \tif(y<0){\n \t\tcount = 3;\n \t}\n\n\n \tif(x+r<=X){\n \t count++;\n \t}\n \tif(y+r<=H){\n \t count++;\n \t}\n\n \tif(count == 2){\n \t System.out.println(\"Yes\");\n \t}else{\n \t System.out.println(\"No\");\n \t}\n\n\n\n }\n}", "Main" ]
import java.util.Scanner; public class Main { static StringBuffer buf = new StringBuffer(); public static void main (String args[]){ Scanner sc = new Scanner(System.in); int X = sc.nextInt(); int H = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int r = sc.nextInt(); int count = 0; if(x<0){ count = 3; } if(y<0){ count = 3; } if(x+r<=X){ count++; } if(y+r<=H){ count++; } if(count == 2){ System.out.println("Yes"); }else{ System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 4, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 14, 17 ], [ 17, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 25, 26 ], [ 26, 27 ], [ 11, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 30, 33 ], [ 33, 34 ], [ 34, 35 ], [ 11, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 38, 41 ], [ 41, 42 ], [ 42, 43 ], [ 11, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 49, 50 ], [ 50, 51 ], [ 11, 52 ], [ 52, 53 ], [ 55, 54 ], [ 66, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 56, 60 ], [ 55, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 61, 65 ], [ 66, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 66, 70 ], [ 55, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 71, 75 ], [ 52, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 76, 81 ], [ 52, 82 ], [ 82, 83 ], [ 83, 84 ], [ 84, 85 ], [ 84, 86 ], [ 82, 87 ], [ 9, 88 ], [ 88, 89 ] ]
[ "import java.util.*;\nclass Main{\n\tstatic Scanner s = new Scanner(System.in);\n\tpublic static void main(String[] args) {\n\t\tint w = Integer.parseInt(s.next()),\n\t\t h = Integer.parseInt(s.next()),\n\t\t x = Integer.parseInt(s.next()),\n\t\t y = Integer.parseInt(s.next()),\n\t\t r = Integer.parseInt(s.next());\n\t\tif( x-r>=0 && x+r<=w && y-r>=0 && y+r<=h)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n}", "import java.util.*;", "util.*", "java", "class Main{\n\tstatic Scanner s = new Scanner(System.in);\n\tpublic static void main(String[] args) {\n\t\tint w = Integer.parseInt(s.next()),\n\t\t h = Integer.parseInt(s.next()),\n\t\t x = Integer.parseInt(s.next()),\n\t\t y = Integer.parseInt(s.next()),\n\t\t r = Integer.parseInt(s.next());\n\t\tif( x-r>=0 && x+r<=w && y-r>=0 && y+r<=h)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n}", "Main", "static Scanner s = new Scanner(System.in);", "s", "new Scanner(System.in)", "public static void main(String[] args) {\n\t\tint w = Integer.parseInt(s.next()),\n\t\t h = Integer.parseInt(s.next()),\n\t\t x = Integer.parseInt(s.next()),\n\t\t y = Integer.parseInt(s.next()),\n\t\t r = Integer.parseInt(s.next());\n\t\tif( x-r>=0 && x+r<=w && y-r>=0 && y+r<=h)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}", "main", "{\n\t\tint w = Integer.parseInt(s.next()),\n\t\t h = Integer.parseInt(s.next()),\n\t\t x = Integer.parseInt(s.next()),\n\t\t y = Integer.parseInt(s.next()),\n\t\t r = Integer.parseInt(s.next());\n\t\tif( x-r>=0 && x+r<=w && y-r>=0 && y+r<=h)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}", "int w = Integer.parseInt(s.next())", "w", "Integer.parseInt(s.next())", "Integer.parseInt", "Integer", "s.next()", "s.next", "s", "h = Integer.parseInt(s.next())", "h", "Integer.parseInt(s.next())", "Integer.parseInt", "Integer", "s.next()", "s.next", "s", "x = Integer.parseInt(s.next())", "x", "Integer.parseInt(s.next())", "Integer.parseInt", "Integer", "s.next()", "s.next", "s", "y = Integer.parseInt(s.next())", "y", "Integer.parseInt(s.next())", "Integer.parseInt", "Integer", "s.next()", "s.next", "s", "r = Integer.parseInt(s.next());", "r", "Integer.parseInt(s.next())", "Integer.parseInt", "Integer", "s.next()", "s.next", "s", "if( x-r>=0 && x+r<=w && y-r>=0 && y+r<=h)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");", "x-r>=0 && x+r<=w && y-r>=0 && y+r<=h", "y-r>=0", "x-r>=0 && x+r<=w && y-r>=0 && y+r<=h", "x-r>=0", "x-r", "x", "r", "0", "x+r<=w", "x+r", "x", "r", "w", "y-r>=0", "y-r", "y", "r", "0", "y+r<=h", "y+r", "y", "r", "h", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args" ]
import java.util.*; class Main{ static Scanner s = new Scanner(System.in); public static void main(String[] args) { int w = Integer.parseInt(s.next()), h = Integer.parseInt(s.next()), x = Integer.parseInt(s.next()), y = Integer.parseInt(s.next()), r = Integer.parseInt(s.next()); if( x-r>=0 && x+r<=w && y-r>=0 && y+r<=h) System.out.println("Yes"); else System.out.println("No"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 2, 2, 2, 13, 2, 13, 13, 2, 2, 13, 13, 17, 2, 13, 2, 13, 13, 2, 2, 13, 13, 17, 17, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 37, 42 ], [ 42, 43 ], [ 43, 44 ], [ 56, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 48, 49 ], [ 48, 50 ], [ 45, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 56, 56 ], [ 56, 57 ], [ 56, 58 ], [ 58, 59 ], [ 58, 60 ], [ 43, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 61, 65 ], [ 42, 66 ], [ 42, 67 ], [ 6, 68 ], [ 68, 69 ] ]
[ "\nimport java.util.*;\n\nclass Main{\n\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint W= sc.nextInt(), H=sc.nextInt();\n\t\tint x=sc.nextInt(), y=sc.nextInt(), r=sc.nextInt();\n\t\t\n\t\tSystem.out.println\n\t\t\t( (H>=y+r && y-r>=0 && W>=x+r && x-r>=0)? \"Yes\" : \"No\" );\n\n\t}\n}", "import java.util.*;", "util.*", "java", "class Main{\n\n\tpublic static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint W= sc.nextInt(), H=sc.nextInt();\n\t\tint x=sc.nextInt(), y=sc.nextInt(), r=sc.nextInt();\n\t\t\n\t\tSystem.out.println\n\t\t\t( (H>=y+r && y-r>=0 && W>=x+r && x-r>=0)? \"Yes\" : \"No\" );\n\n\t}\n}", "Main", "public static void main(String[] args){\n\t\tScanner sc = new Scanner(System.in);\n\t\tint W= sc.nextInt(), H=sc.nextInt();\n\t\tint x=sc.nextInt(), y=sc.nextInt(), r=sc.nextInt();\n\t\t\n\t\tSystem.out.println\n\t\t\t( (H>=y+r && y-r>=0 && W>=x+r && x-r>=0)? \"Yes\" : \"No\" );\n\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tint W= sc.nextInt(), H=sc.nextInt();\n\t\tint x=sc.nextInt(), y=sc.nextInt(), r=sc.nextInt();\n\t\t\n\t\tSystem.out.println\n\t\t\t( (H>=y+r && y-r>=0 && W>=x+r && x-r>=0)? \"Yes\" : \"No\" );\n\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int W= sc.nextInt()", "W", "sc.nextInt()", "sc.nextInt", "sc", "H=sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x=sc.nextInt()", "x", "sc.nextInt()", "sc.nextInt", "sc", "y=sc.nextInt()", "y", "sc.nextInt()", "sc.nextInt", "sc", "r=sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "System.out.println\n\t\t\t( (H>=y+r && y-r>=0 && W>=x+r && x-r>=0)? \"Yes\" : \"No\" )", "System.out.println", "System.out", "System", "System.out", "(H>=y+r && y-r>=0 && W>=x+r && x-r>=0)? \"Yes\" : \"No\"", "(H>=y+r && y-r>=0 && W>=x+r && x-r>=0)", "W>=x+r", "H>=y+r && y-r>=0 && W>=x+r && x-r>=0", "H>=y+r", "H", "y+r", "y", "r", "y-r>=0", "y-r", "y", "r", "0", "W>=x+r", "W", "x+r", "x", "r", "x-r>=0", "x-r", "x", "r", "0", "\"Yes\"", "\"No\"", "String[] args", "args" ]
import java.util.*; class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int W= sc.nextInt(), H=sc.nextInt(); int x=sc.nextInt(), y=sc.nextInt(), r=sc.nextInt(); System.out.println ( (H>=y+r && y-r>=0 && W>=x+r && x-r>=0)? "Yes" : "No" ); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 4, 18, 20, 17, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 13, 17, 2, 13, 17, 4, 18, 18, 13, 13, 17, 14, 2, 2, 2, 2, 13, 13, 13, 17, 2, 2, 2, 13, 13, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 85, 5 ], [ 85, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 11, 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 ], [ 28, 29 ], [ 8, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 33, 34 ], [ 8, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 38, 39 ], [ 8, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 41, 45 ], [ 45, 46 ], [ 45, 47 ], [ 40, 48 ], [ 48, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 48, 53 ], [ 40, 54 ], [ 54, 55 ], [ 55, 56 ], [ 56, 57 ], [ 58, 58 ], [ 58, 59 ], [ 58, 60 ], [ 58, 61 ], [ 56, 62 ], [ 55, 63 ], [ 63, 64 ], [ 65, 65 ], [ 65, 66 ], [ 65, 67 ], [ 65, 68 ], [ 63, 69 ], [ 54, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 70, 75 ], [ 54, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 76, 81 ], [ 6, 82 ], [ 82, 83 ], [ 0, 84 ], [ 84, 85 ], [ 84, 86 ] ]
[ "import java.util.Scanner;\n\n/**\n * Created by khrom on 2017/06/11.\n * ??????????????????????????????????§?????£????????????¨?????????????????????\n */\npublic class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in).useDelimiter(\"\\\\s\");\n int w = scanner.nextInt();\n int h = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n if (x < 0 || y < 0) System.out.println(\"No\");\n else if (w - x - r >= 0 && h - y - r >= 0) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in).useDelimiter(\"\\\\s\");\n int w = scanner.nextInt();\n int h = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n if (x < 0 || y < 0) System.out.println(\"No\");\n else if (w - x - r >= 0 && h - y - r >= 0) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}", "Main", "public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in).useDelimiter(\"\\\\s\");\n int w = scanner.nextInt();\n int h = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n if (x < 0 || y < 0) System.out.println(\"No\");\n else if (w - x - r >= 0 && h - y - r >= 0) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }", "main", "{\n Scanner scanner = new Scanner(System.in).useDelimiter(\"\\\\s\");\n int w = scanner.nextInt();\n int h = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n if (x < 0 || y < 0) System.out.println(\"No\");\n else if (w - x - r >= 0 && h - y - r >= 0) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }", "Scanner scanner = new Scanner(System.in).useDelimiter(\"\\\\s\");", "scanner", "new Scanner(System.in).useDelimiter(\"\\\\s\")", "new Scanner(System.in).useDelimiter", "new Scanner(System.in)", "\"\\\\s\"", "int w = scanner.nextInt();", "w", "scanner.nextInt()", "scanner.nextInt", "scanner", "int h = scanner.nextInt();", "h", "scanner.nextInt()", "scanner.nextInt", "scanner", "int x = scanner.nextInt();", "x", "scanner.nextInt()", "scanner.nextInt", "scanner", "int y = scanner.nextInt();", "y", "scanner.nextInt()", "scanner.nextInt", "scanner", "int r = scanner.nextInt();", "r", "scanner.nextInt()", "scanner.nextInt", "scanner", "if (x < 0 || y < 0) System.out.println(\"No\");\n else if (w - x - r >= 0 && h - y - r >= 0) System.out.println(\"Yes\");\n else System.out.println(\"No\");", "x < 0 || y < 0", "x < 0", "x", "0", "y < 0", "y", "0", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if (w - x - r >= 0 && h - y - r >= 0) System.out.println(\"Yes\");\n else System.out.println(\"No\");", "w - x - r >= 0 && h - y - r >= 0", "w - x - r >= 0", "w - x - r", "w - x - r", "w", "x", "r", "0", "h - y - r >= 0", "h - y - r", "h - y - r", "h", "y", "r", "0", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in).useDelimiter(\"\\\\s\");\n int w = scanner.nextInt();\n int h = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n if (x < 0 || y < 0) System.out.println(\"No\");\n else if (w - x - r >= 0 && h - y - r >= 0) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}", "public class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in).useDelimiter(\"\\\\s\");\n int w = scanner.nextInt();\n int h = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n if (x < 0 || y < 0) System.out.println(\"No\");\n else if (w - x - r >= 0 && h - y - r >= 0) System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}", "Main" ]
import java.util.Scanner; /** * Created by khrom on 2017/06/11. * ??????????????????????????????????§?????£????????????¨????????????????????? */ public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in).useDelimiter("\\s"); int w = scanner.nextInt(); int h = scanner.nextInt(); int x = scanner.nextInt(); int y = scanner.nextInt(); int r = scanner.nextInt(); if (x < 0 || y < 0) System.out.println("No"); else if (w - x - r >= 0 && h - y - r >= 0) System.out.println("Yes"); else System.out.println("No"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 13, 2, 13, 13, 2, 2, 13, 13, 17, 2, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 29, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 78, 5 ], [ 78, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 40, 39 ], [ 51, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 41, 45 ], [ 40, 46 ], [ 46, 47 ], [ 46, 48 ], [ 48, 49 ], [ 48, 50 ], [ 51, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 40, 56 ], [ 56, 57 ], [ 56, 58 ], [ 58, 59 ], [ 58, 60 ], [ 37, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 62, 67 ], [ 61, 68 ], [ 8, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 71, 73 ], [ 69, 74 ], [ 6, 75 ], [ 75, 76 ], [ 0, 77 ], [ 77, 78 ], [ 77, 79 ] ]
[ "import java.util.*;\n \npublic class Main {\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n \n int W = scan.nextInt();\n int H = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n if ((x-r) < 0 || W < (x+r) || (y-r) < 0 || H < (y+r)){\n \tSystem.out.println(\"No\");\n \treturn;\n }\n System.out.println(\"Yes\");\n }\n}", "import java.util.*;", "util.*", "java", "public class Main {\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n \n int W = scan.nextInt();\n int H = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n if ((x-r) < 0 || W < (x+r) || (y-r) < 0 || H < (y+r)){\n \tSystem.out.println(\"No\");\n \treturn;\n }\n System.out.println(\"Yes\");\n }\n}", "Main", "public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n \n int W = scan.nextInt();\n int H = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n if ((x-r) < 0 || W < (x+r) || (y-r) < 0 || H < (y+r)){\n \tSystem.out.println(\"No\");\n \treturn;\n }\n System.out.println(\"Yes\");\n }", "main", "{\n Scanner scan = new Scanner(System.in);\n \n int W = scan.nextInt();\n int H = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n if ((x-r) < 0 || W < (x+r) || (y-r) < 0 || H < (y+r)){\n \tSystem.out.println(\"No\");\n \treturn;\n }\n System.out.println(\"Yes\");\n }", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int W = scan.nextInt();", "W", "scan.nextInt()", "scan.nextInt", "scan", "int H = scan.nextInt();", "H", "scan.nextInt()", "scan.nextInt", "scan", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "int y = scan.nextInt();", "y", "scan.nextInt()", "scan.nextInt", "scan", "int r = scan.nextInt();", "r", "scan.nextInt()", "scan.nextInt", "scan", "if ((x-r) < 0 || W < (x+r) || (y-r) < 0 || H < (y+r)){\n \tSystem.out.println(\"No\");\n \treturn;\n }", "(x-r) < 0 || W < (x+r) || (y-r) < 0 || H < (y+r)", "(y-r) < 0", "(x-r) < 0 || W < (x+r) || (y-r) < 0 || H < (y+r)", "(x-r) < 0", "(x-r)", "x", "r", "0", "W < (x+r)", "W", "(x+r)", "x", "r", "(y-r) < 0", "(y-r)", "y", "r", "0", "H < (y+r)", "H", "(y+r)", "y", "r", "{\n \tSystem.out.println(\"No\");\n \treturn;\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "return;", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main {\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n \n int W = scan.nextInt();\n int H = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n if ((x-r) < 0 || W < (x+r) || (y-r) < 0 || H < (y+r)){\n \tSystem.out.println(\"No\");\n \treturn;\n }\n System.out.println(\"Yes\");\n }\n}", "public class Main {\n public static void main(String[] args){\n Scanner scan = new Scanner(System.in);\n \n int W = scan.nextInt();\n int H = scan.nextInt();\n int x = scan.nextInt();\n int y = scan.nextInt();\n int r = scan.nextInt();\n if ((x-r) < 0 || W < (x+r) || (y-r) < 0 || H < (y+r)){\n \tSystem.out.println(\"No\");\n \treturn;\n }\n System.out.println(\"Yes\");\n }\n}", "Main" ]
import java.util.*; public class Main { public static void main(String[] args){ Scanner scan = new Scanner(System.in); int W = scan.nextInt(); int H = scan.nextInt(); int x = scan.nextInt(); int y = scan.nextInt(); int r = scan.nextInt(); if ((x-r) < 0 || W < (x+r) || (y-r) < 0 || H < (y+r)){ System.out.println("No"); return; } System.out.println("Yes"); } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 17, 12, 13, 30, 41, 13, 20, 41, 13, 20, 13, 11, 1, 41, 13, 17, 2, 13, 13, 1, 40, 13, 30, 30, 41, 13, 4, 18, 13, 0, 18, 13, 13, 4, 18, 13, 13, 41, 13, 18, 13, 17, 41, 13, 18, 13, 17, 41, 13, 18, 13, 17, 41, 13, 18, 13, 17, 41, 13, 18, 13, 17, 14, 2, 2, 2, 2, 13, 13, 2, 13, 2, 13, 13, 2, 13, 13, 2, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 107, 5 ], [ 107, 6 ], [ 6, 7 ], [ 6, 8 ], [ 107, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 12, 14 ], [ 11, 15 ], [ 15, 16 ], [ 15, 17 ], [ 11, 19 ], [ 19, 20 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 19, 24 ], [ 24, 25 ], [ 24, 26 ], [ 19, 27 ], [ 27, 28 ], [ 28, 29 ], [ 19, 30 ], [ 31, 31 ], [ 31, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 31, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 37, 41 ], [ 41, 42 ], [ 42, 43 ], [ 41, 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 ], [ 55, 57 ], [ 57, 58 ], [ 57, 59 ], [ 11, 60 ], [ 60, 61 ], [ 60, 62 ], [ 62, 63 ], [ 62, 64 ], [ 11, 65 ], [ 65, 66 ], [ 65, 67 ], [ 67, 68 ], [ 67, 69 ], [ 11, 70 ], [ 70, 71 ], [ 73, 72 ], [ 82, 73 ], [ 73, 74 ], [ 74, 75 ], [ 74, 76 ], [ 73, 77 ], [ 77, 78 ], [ 77, 79 ], [ 79, 80 ], [ 79, 81 ], [ 82, 82 ], [ 82, 83 ], [ 82, 84 ], [ 73, 85 ], [ 85, 86 ], [ 85, 87 ], [ 87, 88 ], [ 87, 89 ], [ 70, 90 ], [ 90, 91 ], [ 91, 92 ], [ 92, 93 ], [ 93, 94 ], [ 93, 95 ], [ 91, 96 ], [ 70, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 100, 101 ], [ 100, 102 ], [ 98, 103 ], [ 9, 104 ], [ 104, 105 ], [ 0, 106 ], [ 106, 107 ], [ 106, 108 ] ]
[ "import java.util.Scanner;\npublic class Main{\n public static int NUM_NUMBERS = 5;\n public static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\tint[] numbers = new int[NUM_NUMBERS];\n\tfor (int i = 0; i < NUM_NUMBERS; i++) {\n\t String input = scan.next();\n\t numbers[i] = Integer.parseInt(input);\n\t}\n\tint width = numbers[0];\n\tint height = numbers[1];\n\tint x = numbers[2];\n\tint y = numbers[3];\n\tint r = numbers[4];\n\tif (r <= x && x <= width - r && r <= y && y <= height - r) {\n\t System.out.println(\"Yes\");\n\t} else {\n\t System.out.println(\"No\");\n\t}\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main{\n public static int NUM_NUMBERS = 5;\n public static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\tint[] numbers = new int[NUM_NUMBERS];\n\tfor (int i = 0; i < NUM_NUMBERS; i++) {\n\t String input = scan.next();\n\t numbers[i] = Integer.parseInt(input);\n\t}\n\tint width = numbers[0];\n\tint height = numbers[1];\n\tint x = numbers[2];\n\tint y = numbers[3];\n\tint r = numbers[4];\n\tif (r <= x && x <= width - r && r <= y && y <= height - r) {\n\t System.out.println(\"Yes\");\n\t} else {\n\t System.out.println(\"No\");\n\t}\n }\n}", "Main", "public static int NUM_NUMBERS = 5;", "NUM_NUMBERS", "5", "public static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\tint[] numbers = new int[NUM_NUMBERS];\n\tfor (int i = 0; i < NUM_NUMBERS; i++) {\n\t String input = scan.next();\n\t numbers[i] = Integer.parseInt(input);\n\t}\n\tint width = numbers[0];\n\tint height = numbers[1];\n\tint x = numbers[2];\n\tint y = numbers[3];\n\tint r = numbers[4];\n\tif (r <= x && x <= width - r && r <= y && y <= height - r) {\n\t System.out.println(\"Yes\");\n\t} else {\n\t System.out.println(\"No\");\n\t}\n }", "main", "{\n\tScanner scan = new Scanner(System.in);\n\tint[] numbers = new int[NUM_NUMBERS];\n\tfor (int i = 0; i < NUM_NUMBERS; i++) {\n\t String input = scan.next();\n\t numbers[i] = Integer.parseInt(input);\n\t}\n\tint width = numbers[0];\n\tint height = numbers[1];\n\tint x = numbers[2];\n\tint y = numbers[3];\n\tint r = numbers[4];\n\tif (r <= x && x <= width - r && r <= y && y <= height - r) {\n\t System.out.println(\"Yes\");\n\t} else {\n\t System.out.println(\"No\");\n\t}\n }", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int[] numbers = new int[NUM_NUMBERS];", "numbers", "new int[NUM_NUMBERS]", "NUM_NUMBERS", "for (int i = 0; i < NUM_NUMBERS; i++) {\n\t String input = scan.next();\n\t numbers[i] = Integer.parseInt(input);\n\t}", "int i = 0;", "int i = 0;", "i", "0", "i < NUM_NUMBERS", "i", "NUM_NUMBERS", "i++", "i++", "i", "{\n\t String input = scan.next();\n\t numbers[i] = Integer.parseInt(input);\n\t}", "{\n\t String input = scan.next();\n\t numbers[i] = Integer.parseInt(input);\n\t}", "String input = scan.next();", "input", "scan.next()", "scan.next", "scan", "numbers[i] = Integer.parseInt(input)", "numbers[i]", "numbers", "i", "Integer.parseInt(input)", "Integer.parseInt", "Integer", "input", "int width = numbers[0];", "width", "numbers[0]", "numbers", "0", "int height = numbers[1];", "height", "numbers[1]", "numbers", "1", "int x = numbers[2];", "x", "numbers[2]", "numbers", "2", "int y = numbers[3];", "y", "numbers[3]", "numbers", "3", "int r = numbers[4];", "r", "numbers[4]", "numbers", "4", "if (r <= x && x <= width - r && r <= y && y <= height - r) {\n\t System.out.println(\"Yes\");\n\t} else {\n\t System.out.println(\"No\");\n\t}", "r <= x && x <= width - r && r <= y && y <= height - r", "r <= y", "r <= x && x <= width - r && r <= y && y <= height - r", "r <= x", "r", "x", "x <= width - r", "x", "width - r", "width", "r", "r <= y", "r", "y", "y <= height - r", "y", "height - r", "height", "r", "{\n\t System.out.println(\"Yes\");\n\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t System.out.println(\"No\");\n\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main{\n public static int NUM_NUMBERS = 5;\n public static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\tint[] numbers = new int[NUM_NUMBERS];\n\tfor (int i = 0; i < NUM_NUMBERS; i++) {\n\t String input = scan.next();\n\t numbers[i] = Integer.parseInt(input);\n\t}\n\tint width = numbers[0];\n\tint height = numbers[1];\n\tint x = numbers[2];\n\tint y = numbers[3];\n\tint r = numbers[4];\n\tif (r <= x && x <= width - r && r <= y && y <= height - r) {\n\t System.out.println(\"Yes\");\n\t} else {\n\t System.out.println(\"No\");\n\t}\n }\n}", "public class Main{\n public static int NUM_NUMBERS = 5;\n public static void main(String[] args) {\n\tScanner scan = new Scanner(System.in);\n\tint[] numbers = new int[NUM_NUMBERS];\n\tfor (int i = 0; i < NUM_NUMBERS; i++) {\n\t String input = scan.next();\n\t numbers[i] = Integer.parseInt(input);\n\t}\n\tint width = numbers[0];\n\tint height = numbers[1];\n\tint x = numbers[2];\n\tint y = numbers[3];\n\tint r = numbers[4];\n\tif (r <= x && x <= width - r && r <= y && y <= height - r) {\n\t System.out.println(\"Yes\");\n\t} else {\n\t System.out.println(\"No\");\n\t}\n }\n}", "Main" ]
import java.util.Scanner; public class Main{ public static int NUM_NUMBERS = 5; public static void main(String[] args) { Scanner scan = new Scanner(System.in); int[] numbers = new int[NUM_NUMBERS]; for (int i = 0; i < NUM_NUMBERS; i++) { String input = scan.next(); numbers[i] = Integer.parseInt(input); } int width = numbers[0]; int height = numbers[1]; int x = numbers[2]; int y = numbers[3]; int r = numbers[4]; if (r <= x && x <= width - r && r <= y && y <= height - r) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 41, 13, 4, 13, 41, 13, 4, 13, 41, 13, 4, 13, 41, 13, 4, 13, 41, 13, 4, 13, 14, 2, 2, 2, 2, 13, 13, 2, 13, 2, 13, 13, 2, 13, 13, 2, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 12, 13, 30, 29, 4, 18, 13, 4, 18, 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 ], [ 10, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 20, 21 ], [ 17, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 17, 26 ], [ 26, 27 ], [ 26, 28 ], [ 28, 29 ], [ 17, 30 ], [ 30, 31 ], [ 30, 32 ], [ 32, 33 ], [ 17, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 17, 38 ], [ 38, 39 ], [ 41, 40 ], [ 50, 41 ], [ 41, 42 ], [ 42, 43 ], [ 42, 44 ], [ 41, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 47, 49 ], [ 50, 50 ], [ 50, 51 ], [ 50, 52 ], [ 41, 53 ], [ 53, 54 ], [ 53, 55 ], [ 55, 56 ], [ 55, 57 ], [ 38, 58 ], [ 58, 59 ], [ 59, 60 ], [ 60, 61 ], [ 61, 62 ], [ 61, 63 ], [ 59, 64 ], [ 38, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 66, 71 ], [ 15, 72 ], [ 72, 73 ], [ 10, 74 ], [ 74, 75 ], [ 74, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 78, 81 ], [ 81, 82 ], [ 82, 83 ] ]
[ "import java.io.*;\nimport java.util.Scanner;\nimport java.util.Arrays;\n\nclass Main {\n static Scanner sc = new Scanner(System.in);\n public static void main(String[] args) throws IOException {\n int W = ReadInt();\n int H = ReadInt();\n int x = ReadInt();\n int y = ReadInt();\n int r = ReadInt();\n if( r <= x && x <= W - r && r <= y && y <= H - r ) {\n System.out.println(\"Yes\");\n }\n else {\n System.out.println(\"No\");\n }\n }\n static int ReadInt() throws IOException {\n return Integer.parseInt(sc.next());\n }\n}", "import java.io.*;", "io.*", "java", "import java.util.Scanner;", "Scanner", "java.util", "import java.util.Arrays;", "Arrays", "java.util", "class Main {\n static Scanner sc = new Scanner(System.in);\n public static void main(String[] args) throws IOException {\n int W = ReadInt();\n int H = ReadInt();\n int x = ReadInt();\n int y = ReadInt();\n int r = ReadInt();\n if( r <= x && x <= W - r && r <= y && y <= H - r ) {\n System.out.println(\"Yes\");\n }\n else {\n System.out.println(\"No\");\n }\n }\n static int ReadInt() throws IOException {\n return Integer.parseInt(sc.next());\n }\n}", "Main", "static Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "public static void main(String[] args) throws IOException {\n int W = ReadInt();\n int H = ReadInt();\n int x = ReadInt();\n int y = ReadInt();\n int r = ReadInt();\n if( r <= x && x <= W - r && r <= y && y <= H - r ) {\n System.out.println(\"Yes\");\n }\n else {\n System.out.println(\"No\");\n }\n }", "main", "{\n int W = ReadInt();\n int H = ReadInt();\n int x = ReadInt();\n int y = ReadInt();\n int r = ReadInt();\n if( r <= x && x <= W - r && r <= y && y <= H - r ) {\n System.out.println(\"Yes\");\n }\n else {\n System.out.println(\"No\");\n }\n }", "int W = ReadInt();", "W", "ReadInt()", "ReadInt", "int H = ReadInt();", "H", "ReadInt()", "ReadInt", "int x = ReadInt();", "x", "ReadInt()", "ReadInt", "int y = ReadInt();", "y", "ReadInt()", "ReadInt", "int r = ReadInt();", "r", "ReadInt()", "ReadInt", "if( r <= x && x <= W - r && r <= y && y <= H - r ) {\n System.out.println(\"Yes\");\n }\n else {\n System.out.println(\"No\");\n }", "r <= x && x <= W - r && r <= y && y <= H - r", "r <= y", "r <= x && x <= W - r && r <= y && y <= H - r", "r <= x", "r", "x", "x <= W - r", "x", "W - r", "W", "r", "r <= y", "r", "y", "y <= H - r", "y", "H - r", "H", "r", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "static int ReadInt() throws IOException {\n return Integer.parseInt(sc.next());\n }", "ReadInt", "{\n return Integer.parseInt(sc.next());\n }", "return Integer.parseInt(sc.next());", "Integer.parseInt(sc.next())", "Integer.parseInt", "Integer", "sc.next()", "sc.next", "sc" ]
import java.io.*; import java.util.Scanner; import java.util.Arrays; class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) throws IOException { int W = ReadInt(); int H = ReadInt(); int x = ReadInt(); int y = ReadInt(); int r = ReadInt(); if( r <= x && x <= W - r && r <= y && y <= H - r ) { System.out.println("Yes"); } else { System.out.println("No"); } } static int ReadInt() throws IOException { return Integer.parseInt(sc.next()); } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 20, 12, 13, 30, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 14, 2, 2, 13, 13, 13, 30, 0, 13, 17, 14, 2, 2, 13, 13, 17, 30, 0, 13, 17, 14, 2, 2, 13, 13, 13, 30, 0, 13, 17, 14, 2, 2, 13, 13, 17, 30, 0, 13, 17, 30, 0, 13, 17, 4, 18, 18, 13, 13, 8, 13, 17, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 95, 5 ], [ 95, 6 ], [ 6, 7 ], [ 6, 8 ], [ 95, 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 ], [ 25, 26 ], [ 11, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 11, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 11, 37 ], [ 37, 38 ], [ 11, 39 ], [ 39, 40 ], [ 40, 41 ], [ 41, 42 ], [ 41, 43 ], [ 40, 44 ], [ 39, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 39, 49 ], [ 49, 50 ], [ 50, 51 ], [ 51, 52 ], [ 51, 53 ], [ 50, 54 ], [ 49, 55 ], [ 55, 56 ], [ 56, 57 ], [ 56, 58 ], [ 49, 59 ], [ 59, 60 ], [ 60, 61 ], [ 61, 62 ], [ 61, 63 ], [ 60, 64 ], [ 59, 65 ], [ 65, 66 ], [ 66, 67 ], [ 66, 68 ], [ 59, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 71, 73 ], [ 70, 74 ], [ 69, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 69, 79 ], [ 79, 80 ], [ 80, 81 ], [ 80, 82 ], [ 11, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 85, 87 ], [ 83, 88 ], [ 88, 89 ], [ 88, 90 ], [ 88, 91 ], [ 9, 92 ], [ 92, 93 ], [ 0, 94 ], [ 94, 95 ], [ 94, 96 ] ]
[ "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 W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\tboolean flag;\n\t\tif(x + r > W){\n\t\t\tflag = false;\n\t\t} else if(x - r < 0){\n\t\t\tflag = false;\n\t\t} else if(y + r > H){\n\t\t\tflag = false;\n\t\t} else if(y - r < 0){\n\t\t\tflag = false;\n\t\t} else{\n\t\t\tflag = true;\n\t\t}\n\t\tSystem.out.println(flag? \"Yes\" : \"No\");\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 W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\tboolean flag;\n\t\tif(x + r > W){\n\t\t\tflag = false;\n\t\t} else if(x - r < 0){\n\t\t\tflag = false;\n\t\t} else if(y + r > H){\n\t\t\tflag = false;\n\t\t} else if(y - r < 0){\n\t\t\tflag = false;\n\t\t} else{\n\t\t\tflag = true;\n\t\t}\n\t\tSystem.out.println(flag? \"Yes\" : \"No\");\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 W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\tboolean flag;\n\t\tif(x + r > W){\n\t\t\tflag = false;\n\t\t} else if(x - r < 0){\n\t\t\tflag = false;\n\t\t} else if(y + r > H){\n\t\t\tflag = false;\n\t\t} else if(y - r < 0){\n\t\t\tflag = false;\n\t\t} else{\n\t\t\tflag = true;\n\t\t}\n\t\tSystem.out.println(flag? \"Yes\" : \"No\");\n\t}", "main", "{\n\t\tint W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\tboolean flag;\n\t\tif(x + r > W){\n\t\t\tflag = false;\n\t\t} else if(x - r < 0){\n\t\t\tflag = false;\n\t\t} else if(y + r > H){\n\t\t\tflag = false;\n\t\t} else if(y - r < 0){\n\t\t\tflag = false;\n\t\t} else{\n\t\t\tflag = true;\n\t\t}\n\t\tSystem.out.println(flag? \"Yes\" : \"No\");\n\t}", "int W = scan.nextInt();", "W", "scan.nextInt()", "scan.nextInt", "scan", "int H = scan.nextInt();", "H", "scan.nextInt()", "scan.nextInt", "scan", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "int y = scan.nextInt();", "y", "scan.nextInt()", "scan.nextInt", "scan", "int r = scan.nextInt();", "r", "scan.nextInt()", "scan.nextInt", "scan", "boolean flag;", "flag", "if(x + r > W){\n\t\t\tflag = false;\n\t\t} else if(x - r < 0){\n\t\t\tflag = false;\n\t\t} else if(y + r > H){\n\t\t\tflag = false;\n\t\t} else if(y - r < 0){\n\t\t\tflag = false;\n\t\t} else{\n\t\t\tflag = true;\n\t\t}", "x + r > W", "x + r", "x", "r", "W", "{\n\t\t\tflag = false;\n\t\t}", "flag = false", "flag", "false", "if(x - r < 0){\n\t\t\tflag = false;\n\t\t} else if(y + r > H){\n\t\t\tflag = false;\n\t\t} else if(y - r < 0){\n\t\t\tflag = false;\n\t\t} else{\n\t\t\tflag = true;\n\t\t}", "x - r < 0", "x - r", "x", "r", "0", "{\n\t\t\tflag = false;\n\t\t}", "flag = false", "flag", "false", "if(y + r > H){\n\t\t\tflag = false;\n\t\t} else if(y - r < 0){\n\t\t\tflag = false;\n\t\t} else{\n\t\t\tflag = true;\n\t\t}", "y + r > H", "y + r", "y", "r", "H", "{\n\t\t\tflag = false;\n\t\t}", "flag = false", "flag", "false", "if(y - r < 0){\n\t\t\tflag = false;\n\t\t} else{\n\t\t\tflag = true;\n\t\t}", "y - r < 0", "y - r", "y", "r", "0", "{\n\t\t\tflag = false;\n\t\t}", "flag = false", "flag", "false", "{\n\t\t\tflag = true;\n\t\t}", "flag = true", "flag", "true", "System.out.println(flag? \"Yes\" : \"No\")", "System.out.println", "System.out", "System", "System.out", "flag? \"Yes\" : \"No\"", "flag", "\"Yes\"", "\"No\"", "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 W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\tboolean flag;\n\t\tif(x + r > W){\n\t\t\tflag = false;\n\t\t} else if(x - r < 0){\n\t\t\tflag = false;\n\t\t} else if(y + r > H){\n\t\t\tflag = false;\n\t\t} else if(y - r < 0){\n\t\t\tflag = false;\n\t\t} else{\n\t\t\tflag = true;\n\t\t}\n\t\tSystem.out.println(flag? \"Yes\" : \"No\");\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 W = scan.nextInt();\n\t\tint H = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\tboolean flag;\n\t\tif(x + r > W){\n\t\t\tflag = false;\n\t\t} else if(x - r < 0){\n\t\t\tflag = false;\n\t\t} else if(y + r > H){\n\t\t\tflag = false;\n\t\t} else if(y - r < 0){\n\t\t\tflag = false;\n\t\t} else{\n\t\t\tflag = true;\n\t\t}\n\t\tSystem.out.println(flag? \"Yes\" : \"No\");\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 W = scan.nextInt(); int H = scan.nextInt(); int x = scan.nextInt(); int y = scan.nextInt(); int r = scan.nextInt(); boolean flag; if(x + r > W){ flag = false; } else if(x - r < 0){ flag = false; } else if(y + r > H){ flag = false; } else if(y - r < 0){ flag = false; } else{ flag = true; } System.out.println(flag? "Yes" : "No"); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 17, 26 ], [ 26, 27 ], [ 26, 28 ], [ 28, 29 ], [ 29, 30 ], [ 17, 31 ], [ 31, 32 ], [ 31, 33 ], [ 33, 34 ], [ 34, 35 ], [ 17, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 17, 41 ], [ 41, 42 ], [ 41, 43 ], [ 43, 44 ], [ 44, 45 ], [ 17, 46 ], [ 46, 47 ], [ 49, 48 ], [ 60, 49 ], [ 49, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 52, 54 ], [ 49, 55 ], [ 55, 56 ], [ 56, 57 ], [ 56, 58 ], [ 55, 59 ], [ 60, 60 ], [ 60, 61 ], [ 60, 62 ], [ 62, 63 ], [ 62, 64 ], [ 49, 65 ], [ 65, 66 ], [ 66, 67 ], [ 66, 68 ], [ 65, 69 ], [ 46, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 71, 76 ], [ 46, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 80, 82 ], [ 78, 83 ], [ 15, 84 ], [ 84, 85 ] ]
[ "import java.io.*;\nimport java.util.ArrayList;\nimport java.util.Collections;\nimport java.util.Scanner;\n\nclass Main {\n public static void main(String[] args) throws IOException {\n Scanner in = new Scanner(System.in);\n int W = in.nextInt();\n int H = in.nextInt();\n int x = in.nextInt();\n int y = in.nextInt();\n int r = in.nextInt();\n\n if(0 <= x-r && x+r <= W &&\n\t\t0 <= y-r && y+r <= H) {\n \t System.out.println(\"Yes\");\n\t} else {\n\t System.out.println(\"No\");\n\t}\n }\n}", "import java.io.*;", "io.*", "java", "import java.util.ArrayList;", "ArrayList", "java.util", "import java.util.Collections;", "Collections", "java.util", "import java.util.Scanner;", "Scanner", "java.util", "class Main {\n public static void main(String[] args) throws IOException {\n Scanner in = new Scanner(System.in);\n int W = in.nextInt();\n int H = in.nextInt();\n int x = in.nextInt();\n int y = in.nextInt();\n int r = in.nextInt();\n\n if(0 <= x-r && x+r <= W &&\n\t\t0 <= y-r && y+r <= H) {\n \t System.out.println(\"Yes\");\n\t} else {\n\t System.out.println(\"No\");\n\t}\n }\n}", "Main", "public static void main(String[] args) throws IOException {\n Scanner in = new Scanner(System.in);\n int W = in.nextInt();\n int H = in.nextInt();\n int x = in.nextInt();\n int y = in.nextInt();\n int r = in.nextInt();\n\n if(0 <= x-r && x+r <= W &&\n\t\t0 <= y-r && y+r <= H) {\n \t System.out.println(\"Yes\");\n\t} else {\n\t System.out.println(\"No\");\n\t}\n }", "main", "{\n Scanner in = new Scanner(System.in);\n int W = in.nextInt();\n int H = in.nextInt();\n int x = in.nextInt();\n int y = in.nextInt();\n int r = in.nextInt();\n\n if(0 <= x-r && x+r <= W &&\n\t\t0 <= y-r && y+r <= H) {\n \t System.out.println(\"Yes\");\n\t} else {\n\t System.out.println(\"No\");\n\t}\n }", "Scanner in = new Scanner(System.in);", "in", "new Scanner(System.in)", "int W = in.nextInt();", "W", "in.nextInt()", "in.nextInt", "in", "int H = in.nextInt();", "H", "in.nextInt()", "in.nextInt", "in", "int x = in.nextInt();", "x", "in.nextInt()", "in.nextInt", "in", "int y = in.nextInt();", "y", "in.nextInt()", "in.nextInt", "in", "int r = in.nextInt();", "r", "in.nextInt()", "in.nextInt", "in", "if(0 <= x-r && x+r <= W &&\n\t\t0 <= y-r && y+r <= H) {\n \t System.out.println(\"Yes\");\n\t} else {\n\t System.out.println(\"No\");\n\t}", "0 <= x-r && x+r <= W &&\n\t\t0 <= y-r && y+r <= H", "0 <= y-r", "0 <= x-r && x+r <= W &&\n\t\t0 <= y-r && y+r <= H", "0 <= x-r", "0", "x-r", "x", "r", "x+r <= W", "x+r", "x", "r", "W", "0 <= y-r", "0", "y-r", "y", "r", "y+r <= H", "y+r", "y", "r", "H", "{\n \t System.out.println(\"Yes\");\n\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t System.out.println(\"No\");\n\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args" ]
import java.io.*; import java.util.ArrayList; import java.util.Collections; import java.util.Scanner; class Main { public static void main(String[] args) throws IOException { Scanner in = new Scanner(System.in); int W = in.nextInt(); int H = in.nextInt(); int x = in.nextInt(); int y = in.nextInt(); int r = in.nextInt(); if(0 <= x-r && x+r <= W && 0 <= y-r && y+r <= H) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 38, 30, 41, 13, 20, 41, 13, 4, 18, 13, 14, 2, 2, 13, 17, 2, 13, 17, 30, 4, 18, 13, 17, 41, 13, 4, 18, 13, 14, 2, 2, 13, 17, 2, 13, 17, 30, 4, 18, 13, 17, 41, 13, 4, 18, 13, 14, 2, 2, 13, 40, 17, 2, 13, 17, 30, 4, 18, 13, 17, 41, 13, 4, 18, 13, 14, 2, 2, 13, 40, 17, 2, 13, 17, 30, 4, 18, 13, 17, 41, 13, 4, 18, 13, 14, 2, 2, 13, 17, 2, 13, 17, 30, 4, 18, 13, 17, 14, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 154, 5 ], [ 154, 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 ], [ 20, 21 ], [ 21, 22 ], [ 21, 23 ], [ 20, 24 ], [ 24, 25 ], [ 24, 26 ], [ 19, 27 ], [ 27, 28 ], [ 28, 29 ], [ 29, 30 ], [ 28, 31 ], [ 10, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 10, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 39, 41 ], [ 38, 42 ], [ 42, 43 ], [ 42, 44 ], [ 37, 45 ], [ 45, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 10, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 53, 54 ], [ 10, 55 ], [ 55, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 59, 60 ], [ 56, 61 ], [ 61, 62 ], [ 61, 63 ], [ 55, 64 ], [ 64, 65 ], [ 65, 66 ], [ 66, 67 ], [ 65, 68 ], [ 10, 69 ], [ 69, 70 ], [ 69, 71 ], [ 71, 72 ], [ 72, 73 ], [ 10, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 75, 80 ], [ 80, 81 ], [ 80, 82 ], [ 74, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 84, 87 ], [ 10, 88 ], [ 88, 89 ], [ 88, 90 ], [ 90, 91 ], [ 91, 92 ], [ 10, 93 ], [ 93, 94 ], [ 94, 95 ], [ 95, 96 ], [ 95, 97 ], [ 94, 98 ], [ 98, 99 ], [ 98, 100 ], [ 93, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 102, 105 ], [ 10, 106 ], [ 106, 107 ], [ 107, 108 ], [ 108, 109 ], [ 109, 110 ], [ 109, 111 ], [ 108, 112 ], [ 107, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 113, 117 ], [ 106, 118 ], [ 118, 119 ], [ 119, 120 ], [ 120, 121 ], [ 121, 122 ], [ 121, 123 ], [ 119, 124 ], [ 106, 125 ], [ 125, 126 ], [ 126, 127 ], [ 127, 128 ], [ 128, 129 ], [ 128, 130 ], [ 127, 131 ], [ 126, 132 ], [ 132, 133 ], [ 133, 134 ], [ 133, 135 ], [ 132, 136 ], [ 125, 137 ], [ 137, 138 ], [ 138, 139 ], [ 139, 140 ], [ 140, 141 ], [ 140, 142 ], [ 138, 143 ], [ 125, 144 ], [ 144, 145 ], [ 145, 146 ], [ 146, 147 ], [ 147, 148 ], [ 147, 149 ], [ 145, 150 ], [ 6, 151 ], [ 151, 152 ], [ 0, 153 ], [ 153, 154 ], [ 153, 155 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry (Scanner sc = new Scanner(System.in)) {\n\t\t\tint w = sc.nextInt();\n\t\t\tif (w <= 0 || w > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint h = sc.nextInt();\n\t\t\tif (h <= 0 || h > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint x = sc.nextInt();\n\t\t\tif (x < -100 || x > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tint y = sc.nextInt();\n\t\t\tif (y < -100 || y > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint r = sc.nextInt();\n\t\t\tif (r <= 0 || r > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tif (x - r < 0 || x + r > w) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else if (y - r < 0 || y + r > h) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t}\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 sc = new Scanner(System.in)) {\n\t\t\tint w = sc.nextInt();\n\t\t\tif (w <= 0 || w > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint h = sc.nextInt();\n\t\t\tif (h <= 0 || h > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint x = sc.nextInt();\n\t\t\tif (x < -100 || x > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tint y = sc.nextInt();\n\t\t\tif (y < -100 || y > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint r = sc.nextInt();\n\t\t\tif (r <= 0 || r > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tif (x - r < 0 || x + r > w) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else if (y - r < 0 || y + r > h) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t}\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\ttry (Scanner sc = new Scanner(System.in)) {\n\t\t\tint w = sc.nextInt();\n\t\t\tif (w <= 0 || w > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint h = sc.nextInt();\n\t\t\tif (h <= 0 || h > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint x = sc.nextInt();\n\t\t\tif (x < -100 || x > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tint y = sc.nextInt();\n\t\t\tif (y < -100 || y > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint r = sc.nextInt();\n\t\t\tif (r <= 0 || r > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tif (x - r < 0 || x + r > w) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else if (y - r < 0 || y + r > h) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t}\n\t\t}\n\t}", "main", "{\n\t\ttry (Scanner sc = new Scanner(System.in)) {\n\t\t\tint w = sc.nextInt();\n\t\t\tif (w <= 0 || w > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint h = sc.nextInt();\n\t\t\tif (h <= 0 || h > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint x = sc.nextInt();\n\t\t\tif (x < -100 || x > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tint y = sc.nextInt();\n\t\t\tif (y < -100 || y > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint r = sc.nextInt();\n\t\t\tif (r <= 0 || r > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tif (x - r < 0 || x + r > w) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else if (y - r < 0 || y + r > h) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t}\n\t\t}\n\t}", "try (Scanner sc = new Scanner(System.in)) {\n\t\t\tint w = sc.nextInt();\n\t\t\tif (w <= 0 || w > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint h = sc.nextInt();\n\t\t\tif (h <= 0 || h > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint x = sc.nextInt();\n\t\t\tif (x < -100 || x > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tint y = sc.nextInt();\n\t\t\tif (y < -100 || y > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint r = sc.nextInt();\n\t\t\tif (r <= 0 || r > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tif (x - r < 0 || x + r > w) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else if (y - r < 0 || y + r > h) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t}\n\t\t}", "{\n\t\t\tint w = sc.nextInt();\n\t\t\tif (w <= 0 || w > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint h = sc.nextInt();\n\t\t\tif (h <= 0 || h > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint x = sc.nextInt();\n\t\t\tif (x < -100 || x > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tint y = sc.nextInt();\n\t\t\tif (y < -100 || y > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint r = sc.nextInt();\n\t\t\tif (r <= 0 || r > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tif (x - r < 0 || x + r > w) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else if (y - r < 0 || y + r > h) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t}\n\t\t}", "Scanner sc = new Scanner(System.in)", "Scanner sc = new Scanner(System.in)", "new Scanner(System.in)", "int w = sc.nextInt();", "w", "sc.nextInt()", "sc.nextInt", "sc", "if (w <= 0 || w > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}", "w <= 0 || w > 100", "w <= 0", "w", "0", "w > 100", "w", "100", "{\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}", "System.exit(0)", "System.exit", "System", "0", "int h = sc.nextInt();", "h", "sc.nextInt()", "sc.nextInt", "sc", "if (h <= 0 || h > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}", "h <= 0 || h > 100", "h <= 0", "h", "0", "h > 100", "h", "100", "{\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}", "System.exit(0)", "System.exit", "System", "0", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "if (x < -100 || x > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}", "x < -100 || x > 100", "x < -100", "x", "-100", "100", "x > 100", "x", "100", "{\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}", "System.exit(0)", "System.exit", "System", "0", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "if (y < -100 || y > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}", "y < -100 || y > 100", "y < -100", "y", "-100", "100", "y > 100", "y", "100", "{\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}", "System.exit(0)", "System.exit", "System", "0", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "if (r <= 0 || r > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}", "r <= 0 || r > 100", "r <= 0", "r", "0", "r > 100", "r", "100", "{\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}", "System.exit(0)", "System.exit", "System", "0", "if (x - r < 0 || x + r > w) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else if (y - r < 0 || y + r > h) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t}", "x - r < 0 || x + r > w", "x - r < 0", "x - r", "x", "r", "0", "x + r > w", "x + r", "x", "r", "w", "{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if (y - r < 0 || y + r > h) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t}", "y - r < 0 || y + r > h", "y - r < 0", "y - r", "y", "r", "0", "y + r > h", "y + r", "y", "r", "h", "{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry (Scanner sc = new Scanner(System.in)) {\n\t\t\tint w = sc.nextInt();\n\t\t\tif (w <= 0 || w > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint h = sc.nextInt();\n\t\t\tif (h <= 0 || h > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint x = sc.nextInt();\n\t\t\tif (x < -100 || x > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tint y = sc.nextInt();\n\t\t\tif (y < -100 || y > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint r = sc.nextInt();\n\t\t\tif (r <= 0 || r > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tif (x - r < 0 || x + r > w) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else if (y - r < 0 || y + r > h) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t}\n\t\t}\n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\ttry (Scanner sc = new Scanner(System.in)) {\n\t\t\tint w = sc.nextInt();\n\t\t\tif (w <= 0 || w > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint h = sc.nextInt();\n\t\t\tif (h <= 0 || h > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint x = sc.nextInt();\n\t\t\tif (x < -100 || x > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tint y = sc.nextInt();\n\t\t\tif (y < -100 || y > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\t\t\tint r = sc.nextInt();\n\t\t\tif (r <= 0 || r > 100) {\n\t\t\t\tSystem.exit(0);\n\t\t\t\t;\n\t\t\t}\n\n\t\t\tif (x - r < 0 || x + r > w) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else if (y - r < 0 || y + r > h) {\n\t\t\t\tSystem.out.println(\"No\");\n\t\t\t} else {\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t\t}\n\t\t}\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { try (Scanner sc = new Scanner(System.in)) { int w = sc.nextInt(); if (w <= 0 || w > 100) { System.exit(0); ; } int h = sc.nextInt(); if (h <= 0 || h > 100) { System.exit(0); ; } int x = sc.nextInt(); if (x < -100 || x > 100) { System.exit(0); ; } int y = sc.nextInt(); if (y < -100 || y > 100) { System.exit(0); ; } int r = sc.nextInt(); if (r <= 0 || r > 100) { System.exit(0); ; } if (x - r < 0 || x + r > w) { System.out.println("No"); } else if (y - r < 0 || y + r > h) { System.out.println("No"); } else { System.out.println("Yes"); } } } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 20, 17, 12, 13, 30, 0, 13, 20, 0, 13, 17, 28, 13, 13, 30, 0, 13, 17, 12, 13, 30, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 12, 13, 30, 14, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 29, 17, 29, 17, 23, 13, 23, 13, 23, 13, 12, 13, 30, 4, 13, 38, 5, 13, 30, 30, 38, 5, 13, 30, 30, 4, 18, 13, 30, 0, 13, 4, 18, 4, 18, 13, 17, 4, 13, 14, 2, 2, 4, 13, 13, 13, 13, 4, 13, 13, 13, 13, 17, 0, 13, 17, 4, 18, 18, 13, 13, 13, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 4, 8 ], [ 8, 9 ], [ 4, 10 ], [ 10, 11 ], [ 4, 12 ], [ 12, 13 ], [ 4, 14 ], [ 14, 15 ], [ 4, 16 ], [ 16, 17 ], [ 4, 18 ], [ 18, 19 ], [ 4, 20 ], [ 20, 21 ], [ 20, 22 ], [ 4, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 26, 30 ], [ 30, 31 ], [ 30, 32 ], [ 26, 33 ], [ 33, 34 ], [ 33, 35 ], [ 33, 36 ], [ 36, 37 ], [ 37, 38 ], [ 37, 39 ], [ 4, 40 ], [ 40, 41 ], [ 40, 42 ], [ 42, 43 ], [ 43, 44 ], [ 43, 45 ], [ 45, 46 ], [ 46, 47 ], [ 45, 48 ], [ 48, 49 ], [ 48, 50 ], [ 42, 51 ], [ 51, 52 ], [ 51, 53 ], [ 53, 54 ], [ 54, 55 ], [ 53, 56 ], [ 56, 57 ], [ 56, 58 ], [ 42, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 62, 63 ], [ 61, 64 ], [ 64, 65 ], [ 64, 66 ], [ 42, 67 ], [ 67, 68 ], [ 67, 69 ], [ 69, 70 ], [ 70, 71 ], [ 69, 72 ], [ 72, 73 ], [ 72, 74 ], [ 42, 75 ], [ 75, 76 ], [ 75, 77 ], [ 77, 78 ], [ 78, 79 ], [ 77, 80 ], [ 80, 81 ], [ 80, 82 ], [ 4, 83 ], [ 83, 84 ], [ 83, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 88, 89 ], [ 89, 90 ], [ 89, 91 ], [ 88, 92 ], [ 87, 93 ], [ 93, 94 ], [ 94, 95 ], [ 94, 96 ], [ 93, 97 ], [ 86, 98 ], [ 98, 99 ], [ 85, 100 ], [ 100, 101 ], [ 83, 102 ], [ 102, 103 ], [ 83, 104 ], [ 104, 105 ], [ 83, 106 ], [ 106, 107 ], [ 4, 108 ], [ 108, 109 ], [ 108, 110 ], [ 110, 111 ], [ 111, 112 ], [ 110, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 113, 117 ], [ 117, 118 ], [ 118, 119 ], [ 119, 120 ], [ 119, 121 ], [ 118, 122 ], [ 122, 123 ], [ 123, 124 ], [ 124, 125 ], [ 113, 126 ], [ 126, 127 ], [ 127, 128 ], [ 127, 129 ], [ 129, 130 ], [ 130, 131 ], [ 131, 132 ], [ 132, 133 ], [ 129, 134 ], [ 126, 135 ], [ 135, 136 ], [ 126, 137 ], [ 137, 138 ], [ 138, 139 ], [ 139, 140 ], [ 140, 141 ], [ 140, 142 ], [ 140, 143 ], [ 140, 144 ], [ 139, 145 ], [ 145, 146 ], [ 145, 147 ], [ 145, 148 ], [ 145, 149 ], [ 138, 150 ], [ 137, 151 ], [ 151, 152 ], [ 151, 153 ], [ 126, 154 ], [ 154, 155 ], [ 155, 156 ], [ 156, 157 ], [ 156, 158 ], [ 154, 159 ], [ 108, 160 ], [ 160, 161 ] ]
[ "import java.io.*;\n\nclass Main {\n\n private static BufferedReader br;\n private static int W;\n private static int H;\n private static int x;\n private static int y;\n private static int r;\n private static String output;\n private static String[] data = new String[5];\n\n private static void initialize() {\n br = new BufferedReader(new InputStreamReader(System.in));\n output = \"No\";\n for (String d : data)\n d = null;\n }\n\n private static void transInt() {\n W = Integer.parseInt(data[0]);\n H = Integer.parseInt(data[1]);\n x = Integer.parseInt(data[2]);\n y = Integer.parseInt(data[3]);\n r = Integer.parseInt(data[4]);\n }\n\n private static int judge(int x, int maxX, int r) {\n if (x-r >= 0 && x+r <= maxX) return 0;\n return 1;\n }\n\n public static void main(String[] args) {\n initialize();\n try {\n data = (br.readLine()).split(\" \");\n transInt();\n if ((judge(x, W, r) + judge(y, H, r)) == 0) output = \"Yes\";\n System.out.println(output);\n } catch(IOException e) {\n } finally {\n try {\n br.close();\n } catch(IOException e) {\n }\n }\n }\n\n}", "import java.io.*;", "io.*", "java", "class Main {\n\n private static BufferedReader br;\n private static int W;\n private static int H;\n private static int x;\n private static int y;\n private static int r;\n private static String output;\n private static String[] data = new String[5];\n\n private static void initialize() {\n br = new BufferedReader(new InputStreamReader(System.in));\n output = \"No\";\n for (String d : data)\n d = null;\n }\n\n private static void transInt() {\n W = Integer.parseInt(data[0]);\n H = Integer.parseInt(data[1]);\n x = Integer.parseInt(data[2]);\n y = Integer.parseInt(data[3]);\n r = Integer.parseInt(data[4]);\n }\n\n private static int judge(int x, int maxX, int r) {\n if (x-r >= 0 && x+r <= maxX) return 0;\n return 1;\n }\n\n public static void main(String[] args) {\n initialize();\n try {\n data = (br.readLine()).split(\" \");\n transInt();\n if ((judge(x, W, r) + judge(y, H, r)) == 0) output = \"Yes\";\n System.out.println(output);\n } catch(IOException e) {\n } finally {\n try {\n br.close();\n } catch(IOException e) {\n }\n }\n }\n\n}", "Main", "private static BufferedReader br;", "br", "private static int W;", "W", "private static int H;", "H", "private static int x;", "x", "private static int y;", "y", "private static int r;", "r", "private static String output;", "output", "private static String[] data = new String[5];", "data", "new String[5]", "5", "private static void initialize() {\n br = new BufferedReader(new InputStreamReader(System.in));\n output = \"No\";\n for (String d : data)\n d = null;\n }", "initialize", "{\n br = new BufferedReader(new InputStreamReader(System.in));\n output = \"No\";\n for (String d : data)\n d = null;\n }", "br = new BufferedReader(new InputStreamReader(System.in))", "br", "new BufferedReader(new InputStreamReader(System.in))", "output = \"No\"", "output", "\"No\"", "for (String d : data)\n d = null;", "String d", "data", "d = null;", "d = null", "d", "null", "private static void transInt() {\n W = Integer.parseInt(data[0]);\n H = Integer.parseInt(data[1]);\n x = Integer.parseInt(data[2]);\n y = Integer.parseInt(data[3]);\n r = Integer.parseInt(data[4]);\n }", "transInt", "{\n W = Integer.parseInt(data[0]);\n H = Integer.parseInt(data[1]);\n x = Integer.parseInt(data[2]);\n y = Integer.parseInt(data[3]);\n r = Integer.parseInt(data[4]);\n }", "W = Integer.parseInt(data[0])", "W", "Integer.parseInt(data[0])", "Integer.parseInt", "Integer", "data[0]", "data", "0", "H = Integer.parseInt(data[1])", "H", "Integer.parseInt(data[1])", "Integer.parseInt", "Integer", "data[1]", "data", "1", "x = Integer.parseInt(data[2])", "x", "Integer.parseInt(data[2])", "Integer.parseInt", "Integer", "data[2]", "data", "2", "y = Integer.parseInt(data[3])", "y", "Integer.parseInt(data[3])", "Integer.parseInt", "Integer", "data[3]", "data", "3", "r = Integer.parseInt(data[4])", "r", "Integer.parseInt(data[4])", "Integer.parseInt", "Integer", "data[4]", "data", "4", "private static int judge(int x, int maxX, int r) {\n if (x-r >= 0 && x+r <= maxX) return 0;\n return 1;\n }", "judge", "{\n if (x-r >= 0 && x+r <= maxX) return 0;\n return 1;\n }", "if (x-r >= 0 && x+r <= maxX) return 0;", "x-r >= 0 && x+r <= maxX", "x-r >= 0", "x-r", "x", "r", "0", "x+r <= maxX", "x+r", "x", "r", "maxX", "return 0;", "0", "return 1;", "1", "int x", "x", "int maxX", "maxX", "int r", "r", "public static void main(String[] args) {\n initialize();\n try {\n data = (br.readLine()).split(\" \");\n transInt();\n if ((judge(x, W, r) + judge(y, H, r)) == 0) output = \"Yes\";\n System.out.println(output);\n } catch(IOException e) {\n } finally {\n try {\n br.close();\n } catch(IOException e) {\n }\n }\n }", "main", "{\n initialize();\n try {\n data = (br.readLine()).split(\" \");\n transInt();\n if ((judge(x, W, r) + judge(y, H, r)) == 0) output = \"Yes\";\n System.out.println(output);\n } catch(IOException e) {\n } finally {\n try {\n br.close();\n } catch(IOException e) {\n }\n }\n }", "initialize()", "initialize", "try {\n data = (br.readLine()).split(\" \");\n transInt();\n if ((judge(x, W, r) + judge(y, H, r)) == 0) output = \"Yes\";\n System.out.println(output);\n } catch(IOException e) {\n } finally {\n try {\n br.close();\n } catch(IOException e) {\n }\n }", "catch(IOException e) {\n }", "IOException e", "{\n }", "{\n try {\n br.close();\n } catch(IOException e) {\n }\n }", "try {\n br.close();\n } catch(IOException e) {\n }", "catch(IOException e) {\n }", "IOException e", "{\n }", "{\n br.close();\n }", "br.close()", "br.close", "br", "{\n data = (br.readLine()).split(\" \");\n transInt();\n if ((judge(x, W, r) + judge(y, H, r)) == 0) output = \"Yes\";\n System.out.println(output);\n }", "data = (br.readLine()).split(\" \")", "data", "(br.readLine()).split(\" \")", "(br.readLine()).split", "(br.readLine())", "br.readLine", "br", "\" \"", "transInt()", "transInt", "if ((judge(x, W, r) + judge(y, H, r)) == 0) output = \"Yes\";", "(judge(x, W, r) + judge(y, H, r)) == 0", "(judge(x, W, r) + judge(y, H, r))", "judge(x, W, r)", "judge", "x", "W", "r", "judge(y, H, r)", "judge", "y", "H", "r", "0", "output = \"Yes\"", "output", "\"Yes\"", "System.out.println(output)", "System.out.println", "System.out", "System", "System.out", "output", "String[] args", "args" ]
import java.io.*; class Main { private static BufferedReader br; private static int W; private static int H; private static int x; private static int y; private static int r; private static String output; private static String[] data = new String[5]; private static void initialize() { br = new BufferedReader(new InputStreamReader(System.in)); output = "No"; for (String d : data) d = null; } private static void transInt() { W = Integer.parseInt(data[0]); H = Integer.parseInt(data[1]); x = Integer.parseInt(data[2]); y = Integer.parseInt(data[3]); r = Integer.parseInt(data[4]); } private static int judge(int x, int maxX, int r) { if (x-r >= 0 && x+r <= maxX) return 0; return 1; } public static void main(String[] args) { initialize(); try { data = (br.readLine()).split(" "); transInt(); if ((judge(x, W, r) + judge(y, H, r)) == 0) output = "Yes"; System.out.println(output); } catch(IOException e) { } finally { try { br.close(); } catch(IOException e) { } } } }
[ 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, 4, 18, 13, 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, 13, 17, 2, 2, 13, 13, 13, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 110, 11 ], [ 110, 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 ], [ 48, 49 ], [ 47, 50 ], [ 50, 51 ], [ 50, 52 ], [ 14, 53 ], [ 53, 54 ], [ 53, 55 ], [ 55, 56 ], [ 56, 57 ], [ 55, 58 ], [ 58, 59 ], [ 58, 60 ], [ 14, 61 ], [ 61, 62 ], [ 61, 63 ], [ 63, 64 ], [ 64, 65 ], [ 63, 66 ], [ 66, 67 ], [ 66, 68 ], [ 14, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 76 ], [ 71, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 77, 81 ], [ 70, 82 ], [ 82, 83 ], [ 83, 84 ], [ 84, 85 ], [ 84, 86 ], [ 83, 87 ], [ 82, 88 ], [ 88, 89 ], [ 89, 90 ], [ 89, 91 ], [ 88, 92 ], [ 69, 93 ], [ 93, 94 ], [ 94, 95 ], [ 95, 96 ], [ 96, 97 ], [ 96, 98 ], [ 94, 99 ], [ 69, 100 ], [ 100, 101 ], [ 101, 102 ], [ 102, 103 ], [ 103, 104 ], [ 103, 105 ], [ 101, 106 ], [ 12, 107 ], [ 107, 108 ], [ 0, 109 ], [ 109, 110 ], [ 109, 111 ] ]
[ "\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String n = br.readLine();\n String[] str = n.split(\" \");\n \n int W = Integer.parseInt(str[0]);\n int H = Integer.parseInt(str[1]);\n int x = Integer.parseInt(str[2]);\n int y = Integer.parseInt(str[3]);\n int r = Integer.parseInt(str[4]);\n \n if(((x-r<0)||(x+r>W))||((y-r<0)||(y+r>H))){\n \tSystem.out.println(\"No\");\n }else{\n \tSystem.out.println(\"Yes\");\n }\n \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\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String n = br.readLine();\n String[] str = n.split(\" \");\n \n int W = Integer.parseInt(str[0]);\n int H = Integer.parseInt(str[1]);\n int x = Integer.parseInt(str[2]);\n int y = Integer.parseInt(str[3]);\n int r = Integer.parseInt(str[4]);\n \n if(((x-r<0)||(x+r>W))||((y-r<0)||(y+r>H))){\n \tSystem.out.println(\"No\");\n }else{\n \tSystem.out.println(\"Yes\");\n }\n \n \n\t}\n}", "Main", "public static void main(String[] args) throws NumberFormatException, IOException {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String n = br.readLine();\n String[] str = n.split(\" \");\n \n int W = Integer.parseInt(str[0]);\n int H = Integer.parseInt(str[1]);\n int x = Integer.parseInt(str[2]);\n int y = Integer.parseInt(str[3]);\n int r = Integer.parseInt(str[4]);\n \n if(((x-r<0)||(x+r>W))||((y-r<0)||(y+r>H))){\n \tSystem.out.println(\"No\");\n }else{\n \tSystem.out.println(\"Yes\");\n }\n \n \n\t}", "main", "{\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String n = br.readLine();\n String[] str = n.split(\" \");\n \n int W = Integer.parseInt(str[0]);\n int H = Integer.parseInt(str[1]);\n int x = Integer.parseInt(str[2]);\n int y = Integer.parseInt(str[3]);\n int r = Integer.parseInt(str[4]);\n \n if(((x-r<0)||(x+r>W))||((y-r<0)||(y+r>H))){\n \tSystem.out.println(\"No\");\n }else{\n \tSystem.out.println(\"Yes\");\n }\n \n \n\t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String n = br.readLine();", "n", "br.readLine()", "br.readLine", "br", "String[] str = n.split(\" \");", "str", "n.split(\" \")", "n.split", "n", "\" \"", "int W = Integer.parseInt(str[0]);", "W", "Integer.parseInt(str[0])", "Integer.parseInt", "Integer", "str[0]", "str", "0", "int H = Integer.parseInt(str[1]);", "H", "Integer.parseInt(str[1])", "Integer.parseInt", "Integer", "str[1]", "str", "1", "int x = Integer.parseInt(str[2]);", "x", "Integer.parseInt(str[2])", "Integer.parseInt", "Integer", "str[2]", "str", "2", "int y = Integer.parseInt(str[3]);", "y", "Integer.parseInt(str[3])", "Integer.parseInt", "Integer", "str[3]", "str", "3", "int r = Integer.parseInt(str[4]);", "r", "Integer.parseInt(str[4])", "Integer.parseInt", "Integer", "str[4]", "str", "4", "if(((x-r<0)||(x+r>W))||((y-r<0)||(y+r>H))){\n \tSystem.out.println(\"No\");\n }else{\n \tSystem.out.println(\"Yes\");\n }", "((x-r<0)||(x+r>W))||((y-r<0)||(y+r>H))", "((x-r<0)||(x+r>W))", "(x-r<0)", "x-r", "x", "r", "0", "(x+r>W)", "x+r", "x", "r", "W", "((y-r<0)||(y+r>H))", "(y-r<0)", "y-r", "y", "r", "0", "(y+r>H)", "y+r", "y", "r", "H", "{\n \tSystem.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n \tSystem.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String n = br.readLine();\n String[] str = n.split(\" \");\n \n int W = Integer.parseInt(str[0]);\n int H = Integer.parseInt(str[1]);\n int x = Integer.parseInt(str[2]);\n int y = Integer.parseInt(str[3]);\n int r = Integer.parseInt(str[4]);\n \n if(((x-r<0)||(x+r>W))||((y-r<0)||(y+r>H))){\n \tSystem.out.println(\"No\");\n }else{\n \tSystem.out.println(\"Yes\");\n }\n \n \n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) throws NumberFormatException, IOException {\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String n = br.readLine();\n String[] str = n.split(\" \");\n \n int W = Integer.parseInt(str[0]);\n int H = Integer.parseInt(str[1]);\n int x = Integer.parseInt(str[2]);\n int y = Integer.parseInt(str[3]);\n int r = Integer.parseInt(str[4]);\n \n if(((x-r<0)||(x+r>W))||((y-r<0)||(y+r>H))){\n \tSystem.out.println(\"No\");\n }else{\n \tSystem.out.println(\"Yes\");\n }\n \n \n\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String n = br.readLine(); String[] str = n.split(" "); int W = Integer.parseInt(str[0]); int H = Integer.parseInt(str[1]); int x = Integer.parseInt(str[2]); int y = Integer.parseInt(str[3]); int r = Integer.parseInt(str[4]); if(((x-r<0)||(x+r>W))||((y-r<0)||(y+r>H))){ System.out.println("No"); }else{ System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 0, 13, 4, 13, 41, 13, 0, 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, 18, 13, 17, 14, 2, 2, 2, 2, 13, 13, 2, 13, 13, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 12, 13, 30, 41, 13, 20, 29, 4, 18, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 111, 8 ], [ 111, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 11, 14 ], [ 14, 15 ], [ 14, 16 ], [ 16, 17 ], [ 11, 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 ], [ 58, 60 ], [ 60, 61 ], [ 61, 62 ], [ 60, 63 ], [ 63, 64 ], [ 63, 65 ], [ 11, 66 ], [ 66, 67 ], [ 69, 68 ], [ 76, 69 ], [ 69, 70 ], [ 70, 71 ], [ 70, 72 ], [ 69, 73 ], [ 73, 74 ], [ 73, 75 ], [ 76, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 76, 80 ], [ 69, 81 ], [ 81, 82 ], [ 82, 83 ], [ 82, 84 ], [ 81, 85 ], [ 66, 86 ], [ 86, 87 ], [ 87, 88 ], [ 88, 89 ], [ 88, 90 ], [ 86, 91 ], [ 66, 92 ], [ 92, 93 ], [ 93, 94 ], [ 94, 95 ], [ 94, 96 ], [ 92, 97 ], [ 9, 98 ], [ 98, 99 ], [ 111, 100 ], [ 100, 101 ], [ 100, 102 ], [ 102, 103 ], [ 103, 104 ], [ 103, 105 ], [ 102, 106 ], [ 106, 107 ], [ 107, 108 ], [ 108, 109 ], [ 0, 110 ], [ 110, 111 ], [ 110, 112 ] ]
[ "import java.io.BufferedReader;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n\tpublic static void main(String[] args) throws Exception {\n\t\tString inStr;\n\t\tinStr = inp();\n\t\tString[] in;\n\t\tin = inStr.split(\" \");\n\n\t\tint W = Integer.valueOf(in[0]);\n\t\tint H = Integer.valueOf(in[1]);\n\t\tint x = Integer.valueOf(in[2]);\n\t\tint y = Integer.valueOf(in[3]);\n\t\tint r = Integer.valueOf(in[4]);\n\n\t\tif (x >= r && y >= r && x + r <= W && y + r <= H)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n\n\tprivate static String inp() throws Exception {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\treturn br.readLine();\n\t}\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\t\tString inStr;\n\t\tinStr = inp();\n\t\tString[] in;\n\t\tin = inStr.split(\" \");\n\n\t\tint W = Integer.valueOf(in[0]);\n\t\tint H = Integer.valueOf(in[1]);\n\t\tint x = Integer.valueOf(in[2]);\n\t\tint y = Integer.valueOf(in[3]);\n\t\tint r = Integer.valueOf(in[4]);\n\n\t\tif (x >= r && y >= r && x + r <= W && y + r <= H)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n\n\tprivate static String inp() throws Exception {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\treturn br.readLine();\n\t}\n\n}", "Main", "public static void main(String[] args) throws Exception {\n\t\tString inStr;\n\t\tinStr = inp();\n\t\tString[] in;\n\t\tin = inStr.split(\" \");\n\n\t\tint W = Integer.valueOf(in[0]);\n\t\tint H = Integer.valueOf(in[1]);\n\t\tint x = Integer.valueOf(in[2]);\n\t\tint y = Integer.valueOf(in[3]);\n\t\tint r = Integer.valueOf(in[4]);\n\n\t\tif (x >= r && y >= r && x + r <= W && y + r <= H)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}", "main", "{\n\t\tString inStr;\n\t\tinStr = inp();\n\t\tString[] in;\n\t\tin = inStr.split(\" \");\n\n\t\tint W = Integer.valueOf(in[0]);\n\t\tint H = Integer.valueOf(in[1]);\n\t\tint x = Integer.valueOf(in[2]);\n\t\tint y = Integer.valueOf(in[3]);\n\t\tint r = Integer.valueOf(in[4]);\n\n\t\tif (x >= r && y >= r && x + r <= W && y + r <= H)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}", "String inStr;", "inStr", "inStr = inp()", "inStr", "inp()", "inp", "String[] in;", "in", "in = inStr.split(\" \")", "in", "inStr.split(\" \")", "inStr.split", "inStr", "\" \"", "int W = Integer.valueOf(in[0]);", "W", "Integer.valueOf(in[0])", "Integer.valueOf", "Integer", "in[0]", "in", "0", "int H = Integer.valueOf(in[1]);", "H", "Integer.valueOf(in[1])", "Integer.valueOf", "Integer", "in[1]", "in", "1", "int x = Integer.valueOf(in[2]);", "x", "Integer.valueOf(in[2])", "Integer.valueOf", "Integer", "in[2]", "in", "2", "int y = Integer.valueOf(in[3]);", "y", "Integer.valueOf(in[3])", "Integer.valueOf", "Integer", "in[3]", "in", "3", "int r = Integer.valueOf(in[4]);", "r", "Integer.valueOf(in[4])", "Integer.valueOf", "Integer", "in[4]", "in", "4", "if (x >= r && y >= r && x + r <= W && y + r <= H)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");", "x >= r && y >= r && x + r <= W && y + r <= H", "x + r <= W", "x >= r && y >= r && x + r <= W && y + r <= H", "x >= r", "x", "r", "y >= r", "y", "r", "x + r <= W", "x + r", "x", "r", "W", "y + r <= H", "y + r", "y", "r", "H", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "private static String inp() throws Exception {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\treturn br.readLine();\n\t}", "inp", "{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\treturn br.readLine();\n\t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "return br.readLine();", "br.readLine()", "br.readLine", "br", "public class Main {\n\n\tpublic static void main(String[] args) throws Exception {\n\t\tString inStr;\n\t\tinStr = inp();\n\t\tString[] in;\n\t\tin = inStr.split(\" \");\n\n\t\tint W = Integer.valueOf(in[0]);\n\t\tint H = Integer.valueOf(in[1]);\n\t\tint x = Integer.valueOf(in[2]);\n\t\tint y = Integer.valueOf(in[3]);\n\t\tint r = Integer.valueOf(in[4]);\n\n\t\tif (x >= r && y >= r && x + r <= W && y + r <= H)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n\n\tprivate static String inp() throws Exception {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\treturn br.readLine();\n\t}\n\n}", "public class Main {\n\n\tpublic static void main(String[] args) throws Exception {\n\t\tString inStr;\n\t\tinStr = inp();\n\t\tString[] in;\n\t\tin = inStr.split(\" \");\n\n\t\tint W = Integer.valueOf(in[0]);\n\t\tint H = Integer.valueOf(in[1]);\n\t\tint x = Integer.valueOf(in[2]);\n\t\tint y = Integer.valueOf(in[3]);\n\t\tint r = Integer.valueOf(in[4]);\n\n\t\tif (x >= r && y >= r && x + r <= W && y + r <= H)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n\n\tprivate static String inp() throws Exception {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\treturn br.readLine();\n\t}\n\n}", "Main" ]
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws Exception { String inStr; inStr = inp(); String[] in; in = inStr.split(" "); int W = Integer.valueOf(in[0]); int H = Integer.valueOf(in[1]); int x = Integer.valueOf(in[2]); int y = Integer.valueOf(in[3]); int r = Integer.valueOf(in[4]); if (x >= r && y >= r && x + r <= W && y + r <= H) System.out.println("Yes"); else System.out.println("No"); } private static String inp() throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); return br.readLine(); } }
[ 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, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 128, 5 ], [ 128, 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 ], [ 42, 43 ], [ 41, 44 ], [ 44, 45 ], [ 44, 46 ], [ 8, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 50, 51 ], [ 49, 52 ], [ 52, 53 ], [ 52, 54 ], [ 8, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 58, 59 ], [ 57, 60 ], [ 60, 61 ], [ 60, 62 ], [ 8, 63 ], [ 63, 64 ], [ 66, 65 ], [ 77, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 67, 71 ], [ 66, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 76 ], [ 77, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 77, 81 ], [ 66, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 82, 86 ], [ 63, 87 ], [ 87, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 88, 93 ], [ 63, 94 ], [ 94, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 98, 99 ], [ 98, 100 ], [ 97, 101 ], [ 96, 102 ], [ 102, 103 ], [ 103, 104 ], [ 103, 105 ], [ 102, 106 ], [ 95, 107 ], [ 107, 108 ], [ 108, 109 ], [ 109, 110 ], [ 109, 111 ], [ 108, 112 ], [ 107, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 113, 117 ], [ 94, 118 ], [ 118, 119 ], [ 119, 120 ], [ 120, 121 ], [ 121, 122 ], [ 121, 123 ], [ 119, 124 ], [ 6, 125 ], [ 125, 126 ], [ 0, 127 ], [ 127, 128 ], [ 127, 129 ] ]
[ "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\tString line = sc.nextLine();\n\t\tString[] array = line.split(\" \");\n\t\tint W = Integer.parseInt(array[0]);\n\t\tint H = Integer.parseInt(array[1]);\n\t\tint x = Integer.parseInt(array[2]);\n\t\tint y = Integer.parseInt(array[3]);\n\t\tint r = Integer.parseInt(array[4]);\n\n\t\tif (x - r < 0 || x + r > W || y + r > H || y - r < 0) {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\t\telse if (x - r >= 0 && x + r <= W || y - r >= 0 && y + r <= H) {\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t}\n\n\t}\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] array = line.split(\" \");\n\t\tint W = Integer.parseInt(array[0]);\n\t\tint H = Integer.parseInt(array[1]);\n\t\tint x = Integer.parseInt(array[2]);\n\t\tint y = Integer.parseInt(array[3]);\n\t\tint r = Integer.parseInt(array[4]);\n\n\t\tif (x - r < 0 || x + r > W || y + r > H || y - r < 0) {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\t\telse if (x - r >= 0 && x + r <= W || y - r >= 0 && y + r <= H) {\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t}\n\n\t}\n\n}", "Main", "public static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] array = line.split(\" \");\n\t\tint W = Integer.parseInt(array[0]);\n\t\tint H = Integer.parseInt(array[1]);\n\t\tint x = Integer.parseInt(array[2]);\n\t\tint y = Integer.parseInt(array[3]);\n\t\tint r = Integer.parseInt(array[4]);\n\n\t\tif (x - r < 0 || x + r > W || y + r > H || y - r < 0) {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\t\telse if (x - r >= 0 && x + r <= W || y - r >= 0 && y + r <= H) {\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t}\n\n\t}", "main", "{\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] array = line.split(\" \");\n\t\tint W = Integer.parseInt(array[0]);\n\t\tint H = Integer.parseInt(array[1]);\n\t\tint x = Integer.parseInt(array[2]);\n\t\tint y = Integer.parseInt(array[3]);\n\t\tint r = Integer.parseInt(array[4]);\n\n\t\tif (x - r < 0 || x + r > W || y + r > H || y - r < 0) {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\t\telse if (x - r >= 0 && x + r <= W || y - r >= 0 && y + r <= H) {\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t}\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[] array = line.split(\" \");", "array", "line.split(\" \")", "line.split", "line", "\" \"", "int W = Integer.parseInt(array[0]);", "W", "Integer.parseInt(array[0])", "Integer.parseInt", "Integer", "array[0]", "array", "0", "int H = Integer.parseInt(array[1]);", "H", "Integer.parseInt(array[1])", "Integer.parseInt", "Integer", "array[1]", "array", "1", "int x = Integer.parseInt(array[2]);", "x", "Integer.parseInt(array[2])", "Integer.parseInt", "Integer", "array[2]", "array", "2", "int y = Integer.parseInt(array[3]);", "y", "Integer.parseInt(array[3])", "Integer.parseInt", "Integer", "array[3]", "array", "3", "int r = Integer.parseInt(array[4]);", "r", "Integer.parseInt(array[4])", "Integer.parseInt", "Integer", "array[4]", "array", "4", "if (x - r < 0 || x + r > W || y + r > H || y - r < 0) {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\t\telse if (x - r >= 0 && x + r <= W || y - r >= 0 && y + r <= H) {\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t}", "x - r < 0 || x + r > W || y + r > H || y - r < 0", "y + r > H", "x - r < 0 || x + r > W || y + r > H || y - r < 0", "x - r < 0", "x - r", "x", "r", "0", "x + r > W", "x + r", "x", "r", "W", "y + r > H", "y + r", "y", "r", "H", "y - r < 0", "y - r", "y", "r", "0", "{\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if (x - r >= 0 && x + r <= W || y - r >= 0 && y + r <= H) {\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t}", "x - r >= 0 && x + r <= W || y - r >= 0 && y + r <= H", "x - r >= 0 && x + r <= W", "x - r >= 0", "x - r", "x", "r", "0", "x + r <= W", "x + r", "x", "r", "W", "y - r >= 0 && y + r <= H", "y - r >= 0", "y - r", "y", "r", "0", "y + r <= H", "y + r", "y", "r", "H", "{\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\tScanner sc = new Scanner(System.in);\n\t\tString line = sc.nextLine();\n\t\tString[] array = line.split(\" \");\n\t\tint W = Integer.parseInt(array[0]);\n\t\tint H = Integer.parseInt(array[1]);\n\t\tint x = Integer.parseInt(array[2]);\n\t\tint y = Integer.parseInt(array[3]);\n\t\tint r = Integer.parseInt(array[4]);\n\n\t\tif (x - r < 0 || x + r > W || y + r > H || y - r < 0) {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\t\telse if (x - r >= 0 && x + r <= W || y - r >= 0 && y + r <= H) {\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t}\n\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\tString line = sc.nextLine();\n\t\tString[] array = line.split(\" \");\n\t\tint W = Integer.parseInt(array[0]);\n\t\tint H = Integer.parseInt(array[1]);\n\t\tint x = Integer.parseInt(array[2]);\n\t\tint y = Integer.parseInt(array[3]);\n\t\tint r = Integer.parseInt(array[4]);\n\n\t\tif (x - r < 0 || x + r > W || y + r > H || y - r < 0) {\n\t\t\tSystem.out.println(\"No\");\n\n\t\t}\n\t\telse if (x - r >= 0 && x + r <= W || y - r >= 0 && y + r <= H) {\n\t\t\tSystem.out.println(\"Yes\");\n\n\t\t}\n\n\t}\n\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String line = sc.nextLine(); String[] array = line.split(" "); int W = Integer.parseInt(array[0]); int H = Integer.parseInt(array[1]); int x = Integer.parseInt(array[2]); int y = Integer.parseInt(array[3]); int r = Integer.parseInt(array[4]); if (x - r < 0 || x + r > W || y + r > H || y - r < 0) { System.out.println("No"); } else if (x - r >= 0 && x + r <= W || y - r >= 0 && y + r <= H) { System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 38, 5, 13, 30, 4, 18, 18, 13, 13, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 40, 17, 13, 2, 13, 17, 2, 40, 17, 13, 2, 13, 17, 2, 17, 13, 2, 13, 17, 2, 17, 13, 2, 13, 17, 2, 17, 13, 2, 13, 17, 30, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 167, 14 ], [ 167, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 19, 20 ], [ 19, 21 ], [ 21, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 22, 27 ], [ 18, 28 ], [ 28, 29 ], [ 29, 30 ], [ 29, 31 ], [ 28, 32 ], [ 32, 33 ], [ 32, 34 ], [ 28, 35 ], [ 35, 36 ], [ 35, 37 ], [ 37, 38 ], [ 38, 39 ], [ 28, 40 ], [ 40, 41 ], [ 40, 42 ], [ 28, 43 ], [ 43, 44 ], [ 43, 45 ], [ 45, 46 ], [ 46, 47 ], [ 45, 48 ], [ 48, 49 ], [ 49, 50 ], [ 28, 51 ], [ 51, 52 ], [ 51, 53 ], [ 53, 54 ], [ 54, 55 ], [ 53, 56 ], [ 56, 57 ], [ 57, 58 ], [ 28, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 62, 63 ], [ 61, 64 ], [ 64, 65 ], [ 65, 66 ], [ 28, 67 ], [ 67, 68 ], [ 67, 69 ], [ 69, 70 ], [ 70, 71 ], [ 69, 72 ], [ 72, 73 ], [ 73, 74 ], [ 28, 75 ], [ 75, 76 ], [ 75, 77 ], [ 77, 78 ], [ 78, 79 ], [ 77, 80 ], [ 80, 81 ], [ 81, 82 ], [ 28, 83 ], [ 83, 84 ], [ 92, 85 ], [ 119, 86 ], [ 116, 87 ], [ 113, 88 ], [ 110, 89 ], [ 107, 90 ], [ 104, 91 ], [ 100, 92 ], [ 92, 93 ], [ 93, 94 ], [ 94, 95 ], [ 93, 96 ], [ 92, 97 ], [ 97, 98 ], [ 97, 99 ], [ 100, 100 ], [ 100, 101 ], [ 101, 102 ], [ 100, 103 ], [ 104, 104 ], [ 104, 105 ], [ 104, 106 ], [ 107, 107 ], [ 107, 108 ], [ 107, 109 ], [ 110, 110 ], [ 110, 111 ], [ 110, 112 ], [ 113, 113 ], [ 113, 114 ], [ 113, 115 ], [ 116, 116 ], [ 116, 117 ], [ 116, 118 ], [ 119, 119 ], [ 119, 120 ], [ 119, 121 ], [ 92, 122 ], [ 122, 123 ], [ 122, 124 ], [ 83, 125 ], [ 125, 126 ], [ 126, 127 ], [ 129, 128 ], [ 140, 129 ], [ 129, 130 ], [ 130, 131 ], [ 131, 132 ], [ 131, 133 ], [ 130, 134 ], [ 129, 135 ], [ 135, 136 ], [ 136, 137 ], [ 136, 138 ], [ 135, 139 ], [ 140, 140 ], [ 140, 141 ], [ 141, 142 ], [ 141, 143 ], [ 140, 144 ], [ 129, 145 ], [ 145, 146 ], [ 146, 147 ], [ 146, 148 ], [ 145, 149 ], [ 126, 150 ], [ 150, 151 ], [ 151, 152 ], [ 152, 153 ], [ 153, 154 ], [ 153, 155 ], [ 151, 156 ], [ 126, 157 ], [ 157, 158 ], [ 158, 159 ], [ 159, 160 ], [ 160, 161 ], [ 160, 162 ], [ 158, 163 ], [ 15, 164 ], [ 164, 165 ], [ 0, 166 ], [ 166, 167 ], [ 166, 168 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.StringTokenizer;\n\npublic class Main {\n public static void main(String[] args){\n \t\n \ttry {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tStringTokenizer st=new StringTokenizer(buf,\" \");\n \t\tint W = Integer.parseInt(st.nextToken());\t//高さ(H)…height\n \t\tint H = Integer.parseInt(st.nextToken());\t//幅(W)…wide\n \t\tint x = Integer.parseInt(st.nextToken());\t//x軸は横 幅に関係\n \t\tint y = Integer.parseInt(st.nextToken());\t//y軸は縦 高さに関係\n \t\tint r = Integer.parseInt(st.nextToken());\t//半径\n\n \t\tif(-100 <=x && x<=100 && -100 <=y && y<=100 && 0<W && W <=100 && 0<H && H <=100 && 0<r && r <=100){\n\n \t\t\tif( (x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H ){\n\n \t\t\t\tSystem.out.println(\"Yes\");\n \t\t\t} else{\n \t\t\t\tSystem.out.println(\"No\");\n \t\t\t}\n \t\t}\n\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}\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.util.StringTokenizer;", "StringTokenizer", "java.util", "public class Main {\n public static void main(String[] args){\n \t\n \ttry {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tStringTokenizer st=new StringTokenizer(buf,\" \");\n \t\tint W = Integer.parseInt(st.nextToken());\t//高さ(H)…height\n \t\tint H = Integer.parseInt(st.nextToken());\t//幅(W)…wide\n \t\tint x = Integer.parseInt(st.nextToken());\t//x軸は横 幅に関係\n \t\tint y = Integer.parseInt(st.nextToken());\t//y軸は縦 高さに関係\n \t\tint r = Integer.parseInt(st.nextToken());\t//半径\n\n \t\tif(-100 <=x && x<=100 && -100 <=y && y<=100 && 0<W && W <=100 && 0<H && H <=100 && 0<r && r <=100){\n\n \t\t\tif( (x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H ){\n\n \t\t\t\tSystem.out.println(\"Yes\");\n \t\t\t} else{\n \t\t\t\tSystem.out.println(\"No\");\n \t\t\t}\n \t\t}\n\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}\n\n }\n}", "Main", "public static void main(String[] args){\n \t\n \ttry {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tStringTokenizer st=new StringTokenizer(buf,\" \");\n \t\tint W = Integer.parseInt(st.nextToken());\t//高さ(H)…height\n \t\tint H = Integer.parseInt(st.nextToken());\t//幅(W)…wide\n \t\tint x = Integer.parseInt(st.nextToken());\t//x軸は横 幅に関係\n \t\tint y = Integer.parseInt(st.nextToken());\t//y軸は縦 高さに関係\n \t\tint r = Integer.parseInt(st.nextToken());\t//半径\n\n \t\tif(-100 <=x && x<=100 && -100 <=y && y<=100 && 0<W && W <=100 && 0<H && H <=100 && 0<r && r <=100){\n\n \t\t\tif( (x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H ){\n\n \t\t\t\tSystem.out.println(\"Yes\");\n \t\t\t} else{\n \t\t\t\tSystem.out.println(\"No\");\n \t\t\t}\n \t\t}\n\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}\n\n }", "main", "{\n \t\n \ttry {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tStringTokenizer st=new StringTokenizer(buf,\" \");\n \t\tint W = Integer.parseInt(st.nextToken());\t//高さ(H)…height\n \t\tint H = Integer.parseInt(st.nextToken());\t//幅(W)…wide\n \t\tint x = Integer.parseInt(st.nextToken());\t//x軸は横 幅に関係\n \t\tint y = Integer.parseInt(st.nextToken());\t//y軸は縦 高さに関係\n \t\tint r = Integer.parseInt(st.nextToken());\t//半径\n\n \t\tif(-100 <=x && x<=100 && -100 <=y && y<=100 && 0<W && W <=100 && 0<H && H <=100 && 0<r && r <=100){\n\n \t\t\tif( (x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H ){\n\n \t\t\t\tSystem.out.println(\"Yes\");\n \t\t\t} else{\n \t\t\t\tSystem.out.println(\"No\");\n \t\t\t}\n \t\t}\n\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}\n\n }", "try {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tStringTokenizer st=new StringTokenizer(buf,\" \");\n \t\tint W = Integer.parseInt(st.nextToken());\t//高さ(H)…height\n \t\tint H = Integer.parseInt(st.nextToken());\t//幅(W)…wide\n \t\tint x = Integer.parseInt(st.nextToken());\t//x軸は横 幅に関係\n \t\tint y = Integer.parseInt(st.nextToken());\t//y軸は縦 高さに関係\n \t\tint r = Integer.parseInt(st.nextToken());\t//半径\n\n \t\tif(-100 <=x && x<=100 && -100 <=y && y<=100 && 0<W && W <=100 && 0<H && H <=100 && 0<r && r <=100){\n\n \t\t\tif( (x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H ){\n\n \t\t\t\tSystem.out.println(\"Yes\");\n \t\t\t} else{\n \t\t\t\tSystem.out.println(\"No\");\n \t\t\t}\n \t\t}\n\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}", "catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}", "IOException e", "{\n\t\t System.err.println(e);\n\t\t}", "System.err.println(e)", "System.err.println", "System.err", "System", "System.err", "e", "{\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tStringTokenizer st=new StringTokenizer(buf,\" \");\n \t\tint W = Integer.parseInt(st.nextToken());\t//高さ(H)…height\n \t\tint H = Integer.parseInt(st.nextToken());\t//幅(W)…wide\n \t\tint x = Integer.parseInt(st.nextToken());\t//x軸は横 幅に関係\n \t\tint y = Integer.parseInt(st.nextToken());\t//y軸は縦 高さに関係\n \t\tint r = Integer.parseInt(st.nextToken());\t//半径\n\n \t\tif(-100 <=x && x<=100 && -100 <=y && y<=100 && 0<W && W <=100 && 0<H && H <=100 && 0<r && r <=100){\n\n \t\t\tif( (x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H ){\n\n \t\t\t\tSystem.out.println(\"Yes\");\n \t\t\t} else{\n \t\t\t\tSystem.out.println(\"No\");\n \t\t\t}\n \t\t}\n\n \t}", "InputStreamReader isr = new InputStreamReader(System.in);", "isr", "new InputStreamReader(System.in)", "BufferedReader br = new BufferedReader(isr);", "br", "new BufferedReader(isr)", "String buf = br.readLine();", "buf", "br.readLine()", "br.readLine", "br", "StringTokenizer st=new StringTokenizer(buf,\" \");", "st", "new StringTokenizer(buf,\" \")", "int W = Integer.parseInt(st.nextToken());", "W", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "int H = Integer.parseInt(st.nextToken());", "H", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "int x = Integer.parseInt(st.nextToken());", "x", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "int y = Integer.parseInt(st.nextToken());", "y", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "int r = Integer.parseInt(st.nextToken());", "r", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "if(-100 <=x && x<=100 && -100 <=y && y<=100 && 0<W && W <=100 && 0<H && H <=100 && 0<r && r <=100){\n\n \t\t\tif( (x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H ){\n\n \t\t\t\tSystem.out.println(\"Yes\");\n \t\t\t} else{\n \t\t\t\tSystem.out.println(\"No\");\n \t\t\t}\n \t\t}", "-100 <=x && x<=100 && -100 <=y && y<=100 && 0<W && W <=100 && 0<H && H <=100 && 0<r && r <=100", "0<r", "H <=100", "0<H", "W <=100", "0<W", "y<=100", "-100 <=y", "-100 <=x && x<=100 && -100 <=y && y<=100 && 0<W && W <=100 && 0<H && H <=100 && 0<r && r <=100", "-100 <=x", "-100", "100", "x", "x<=100", "x", "100", "-100 <=y", "-100", "100", "y", "y<=100", "y", "100", "0<W", "0", "W", "W <=100", "W", "100", "0<H", "0", "H", "H <=100", "H", "100", "0<r", "0", "r", "r <=100", "r", "100", "{\n\n \t\t\tif( (x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H ){\n\n \t\t\t\tSystem.out.println(\"Yes\");\n \t\t\t} else{\n \t\t\t\tSystem.out.println(\"No\");\n \t\t\t}\n \t\t}", "if( (x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H ){\n\n \t\t\t\tSystem.out.println(\"Yes\");\n \t\t\t} else{\n \t\t\t\tSystem.out.println(\"No\");\n \t\t\t}", "(x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H", "(y-r) >=0", "(x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H", "(x-r) >= 0", "(x-r)", "x", "r", "0", "(x+r) <= W", "(x+r)", "x", "r", "W", "(y-r) >=0", "(y-r)", "y", "r", "0", "(y+r) <= H", "(y+r)", "y", "r", "H", "{\n\n \t\t\t\tSystem.out.println(\"Yes\");\n \t\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n \t\t\t\tSystem.out.println(\"No\");\n \t\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n public static void main(String[] args){\n \t\n \ttry {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tStringTokenizer st=new StringTokenizer(buf,\" \");\n \t\tint W = Integer.parseInt(st.nextToken());\t//高さ(H)…height\n \t\tint H = Integer.parseInt(st.nextToken());\t//幅(W)…wide\n \t\tint x = Integer.parseInt(st.nextToken());\t//x軸は横 幅に関係\n \t\tint y = Integer.parseInt(st.nextToken());\t//y軸は縦 高さに関係\n \t\tint r = Integer.parseInt(st.nextToken());\t//半径\n\n \t\tif(-100 <=x && x<=100 && -100 <=y && y<=100 && 0<W && W <=100 && 0<H && H <=100 && 0<r && r <=100){\n\n \t\t\tif( (x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H ){\n\n \t\t\t\tSystem.out.println(\"Yes\");\n \t\t\t} else{\n \t\t\t\tSystem.out.println(\"No\");\n \t\t\t}\n \t\t}\n\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}\n\n }\n}", "public class Main {\n public static void main(String[] args){\n \t\n \ttry {\n \t\tInputStreamReader isr = new InputStreamReader(System.in);\n \t\tBufferedReader br = new BufferedReader(isr);\n \t\tString buf = br.readLine();\n \t\tStringTokenizer st=new StringTokenizer(buf,\" \");\n \t\tint W = Integer.parseInt(st.nextToken());\t//高さ(H)…height\n \t\tint H = Integer.parseInt(st.nextToken());\t//幅(W)…wide\n \t\tint x = Integer.parseInt(st.nextToken());\t//x軸は横 幅に関係\n \t\tint y = Integer.parseInt(st.nextToken());\t//y軸は縦 高さに関係\n \t\tint r = Integer.parseInt(st.nextToken());\t//半径\n\n \t\tif(-100 <=x && x<=100 && -100 <=y && y<=100 && 0<W && W <=100 && 0<H && H <=100 && 0<r && r <=100){\n\n \t\t\tif( (x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H ){\n\n \t\t\t\tSystem.out.println(\"Yes\");\n \t\t\t} else{\n \t\t\t\tSystem.out.println(\"No\");\n \t\t\t}\n \t\t}\n\n \t} catch(IOException e) {\n\t\t System.err.println(e);\n\t\t}\n\n }\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { public static void main(String[] args){ try { InputStreamReader isr = new InputStreamReader(System.in); BufferedReader br = new BufferedReader(isr); String buf = br.readLine(); StringTokenizer st=new StringTokenizer(buf," "); int W = Integer.parseInt(st.nextToken()); //高さ(H)…height int H = Integer.parseInt(st.nextToken()); //幅(W)…wide int x = Integer.parseInt(st.nextToken()); //x軸は横 幅に関係 int y = Integer.parseInt(st.nextToken()); //y軸は縦 高さに関係 int r = Integer.parseInt(st.nextToken()); //半径 if(-100 <=x && x<=100 && -100 <=y && y<=100 && 0<W && W <=100 && 0<H && H <=100 && 0<r && r <=100){ if( (x-r) >= 0 && (x+r) <= W && (y-r) >=0 && (y+r) <= H ){ System.out.println("Yes"); } else{ System.out.println("No"); } } } catch(IOException e) { System.err.println(e); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 13, 17, 2, 13, 17, 2, 13, 13, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 113, 14 ], [ 113, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 21, 23 ], [ 17, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 17, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 17, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 37, 38 ], [ 17, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 42, 43 ], [ 17, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 47, 48 ], [ 17, 49 ], [ 49, 50 ], [ 52, 51 ], [ 59, 52 ], [ 52, 53 ], [ 53, 54 ], [ 53, 55 ], [ 52, 56 ], [ 56, 57 ], [ 56, 58 ], [ 59, 59 ], [ 59, 60 ], [ 59, 61 ], [ 52, 62 ], [ 62, 63 ], [ 62, 64 ], [ 49, 65 ], [ 65, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 66, 71 ], [ 49, 72 ], [ 72, 73 ], [ 73, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 75, 79 ], [ 74, 80 ], [ 80, 81 ], [ 81, 82 ], [ 81, 83 ], [ 80, 84 ], [ 73, 85 ], [ 85, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 86, 90 ], [ 85, 91 ], [ 91, 92 ], [ 92, 93 ], [ 92, 94 ], [ 91, 95 ], [ 72, 96 ], [ 96, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 99, 101 ], [ 97, 102 ], [ 72, 103 ], [ 103, 104 ], [ 104, 105 ], [ 105, 106 ], [ 106, 107 ], [ 106, 108 ], [ 104, 109 ], [ 15, 110 ], [ 110, 111 ], [ 0, 112 ], [ 112, 113 ], [ 112, 114 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.Scanner;\n\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\tScanner sc = new Scanner(br.readLine());\n\t\tint w=sc.nextInt();\n\t\tint h=sc.nextInt();\n\t\tint x=sc.nextInt();\n\t\tint y=sc.nextInt();\n\t\tint r=sc.nextInt();\n\t\tif(x<0||y<0||w<x||h<y){System.out.println(\"No\");}\n\t\telse if((x+r<=w&&y+r<=h)&&(x-r>=0&&y-r>=0)){System.out.println(\"Yes\");}\n\t\telse{System.out.println(\"No\");}\n\t\t}\n}", "import java.io.BufferedReader;", "BufferedReader", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.io.InputStreamReader;", "InputStreamReader", "java.io", "import java.util.Scanner;", "Scanner", "java.util", "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\tScanner sc = new Scanner(br.readLine());\n\t\tint w=sc.nextInt();\n\t\tint h=sc.nextInt();\n\t\tint x=sc.nextInt();\n\t\tint y=sc.nextInt();\n\t\tint r=sc.nextInt();\n\t\tif(x<0||y<0||w<x||h<y){System.out.println(\"No\");}\n\t\telse if((x+r<=w&&y+r<=h)&&(x-r>=0&&y-r>=0)){System.out.println(\"Yes\");}\n\t\telse{System.out.println(\"No\");}\n\t\t}\n}", "Main", "public static void main(String[] args) throws IOException {\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tScanner sc = new Scanner(br.readLine());\n\t\tint w=sc.nextInt();\n\t\tint h=sc.nextInt();\n\t\tint x=sc.nextInt();\n\t\tint y=sc.nextInt();\n\t\tint r=sc.nextInt();\n\t\tif(x<0||y<0||w<x||h<y){System.out.println(\"No\");}\n\t\telse if((x+r<=w&&y+r<=h)&&(x-r>=0&&y-r>=0)){System.out.println(\"Yes\");}\n\t\telse{System.out.println(\"No\");}\n\t\t}", "main", "{\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tScanner sc = new Scanner(br.readLine());\n\t\tint w=sc.nextInt();\n\t\tint h=sc.nextInt();\n\t\tint x=sc.nextInt();\n\t\tint y=sc.nextInt();\n\t\tint r=sc.nextInt();\n\t\tif(x<0||y<0||w<x||h<y){System.out.println(\"No\");}\n\t\telse if((x+r<=w&&y+r<=h)&&(x-r>=0&&y-r>=0)){System.out.println(\"Yes\");}\n\t\telse{System.out.println(\"No\");}\n\t\t}", "BufferedReader br=new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "Scanner sc = new Scanner(br.readLine());", "sc", "new Scanner(br.readLine())", "int w=sc.nextInt();", "w", "sc.nextInt()", "sc.nextInt", "sc", "int h=sc.nextInt();", "h", "sc.nextInt()", "sc.nextInt", "sc", "int x=sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y=sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r=sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "if(x<0||y<0||w<x||h<y){System.out.println(\"No\");}\n\t\telse if((x+r<=w&&y+r<=h)&&(x-r>=0&&y-r>=0)){System.out.println(\"Yes\");}\n\t\telse{System.out.println(\"No\");}", "x<0||y<0||w<x||h<y", "w<x", "x<0||y<0||w<x||h<y", "x<0", "x", "0", "y<0", "y", "0", "w<x", "w", "x", "h<y", "h", "y", "{System.out.println(\"No\");}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if((x+r<=w&&y+r<=h)&&(x-r>=0&&y-r>=0)){System.out.println(\"Yes\");}\n\t\telse{System.out.println(\"No\");}", "(x+r<=w&&y+r<=h)&&(x-r>=0&&y-r>=0)", "(x+r<=w&&y+r<=h)", "x+r<=w", "x+r", "x", "r", "w", "y+r<=h", "y+r", "y", "r", "h", "(x-r>=0&&y-r>=0)", "x-r>=0", "x-r", "x", "r", "0", "y-r>=0", "y-r", "y", "r", "0", "{System.out.println(\"Yes\");}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{System.out.println(\"No\");}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br=new BufferedReader(new InputStreamReader(System.in));\n\t\tScanner sc = new Scanner(br.readLine());\n\t\tint w=sc.nextInt();\n\t\tint h=sc.nextInt();\n\t\tint x=sc.nextInt();\n\t\tint y=sc.nextInt();\n\t\tint r=sc.nextInt();\n\t\tif(x<0||y<0||w<x||h<y){System.out.println(\"No\");}\n\t\telse if((x+r<=w&&y+r<=h)&&(x-r>=0&&y-r>=0)){System.out.println(\"Yes\");}\n\t\telse{System.out.println(\"No\");}\n\t\t}\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\tScanner sc = new Scanner(br.readLine());\n\t\tint w=sc.nextInt();\n\t\tint h=sc.nextInt();\n\t\tint x=sc.nextInt();\n\t\tint y=sc.nextInt();\n\t\tint r=sc.nextInt();\n\t\tif(x<0||y<0||w<x||h<y){System.out.println(\"No\");}\n\t\telse if((x+r<=w&&y+r<=h)&&(x-r>=0&&y-r>=0)){System.out.println(\"Yes\");}\n\t\telse{System.out.println(\"No\");}\n\t\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Scanner; public class Main { public static void main(String[] args) throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); Scanner sc = new Scanner(br.readLine()); int w=sc.nextInt(); int h=sc.nextInt(); int x=sc.nextInt(); int y=sc.nextInt(); int r=sc.nextInt(); if(x<0||y<0||w<x||h<y){System.out.println("No");} else if((x+r<=w&&y+r<=h)&&(x-r>=0&&y-r>=0)){System.out.println("Yes");} else{System.out.println("No");} } }
[ 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, 4, 18, 4, 18, 13, 17, 41, 13, 20, 28, 13, 13, 30, 30, 4, 18, 13, 4, 18, 13, 13, 0, 13, 4, 18, 13, 17, 0, 13, 4, 18, 13, 17, 0, 13, 4, 18, 13, 17, 0, 13, 4, 18, 13, 17, 0, 13, 4, 18, 13, 17, 14, 2, 2, 13, 17, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 2, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 9, 10 ], [ 9, 11 ], [ 11, 12 ], [ 12, 13 ], [ 11, 14 ], [ 14, 15 ], [ 11, 16 ], [ 16, 17 ], [ 11, 18 ], [ 18, 19 ], [ 11, 20 ], [ 20, 21 ], [ 11, 22 ], [ 22, 23 ], [ 22, 24 ], [ 11, 25 ], [ 25, 26 ], [ 25, 27 ], [ 27, 28 ], [ 28, 29 ], [ 29, 30 ], [ 30, 31 ], [ 27, 32 ], [ 11, 33 ], [ 33, 34 ], [ 33, 35 ], [ 11, 36 ], [ 36, 37 ], [ 36, 38 ], [ 36, 39 ], [ 40, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 41, 44 ], [ 44, 45 ], [ 45, 46 ], [ 44, 47 ], [ 11, 48 ], [ 48, 49 ], [ 48, 50 ], [ 50, 51 ], [ 51, 52 ], [ 50, 53 ], [ 11, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 11, 60 ], [ 60, 61 ], [ 60, 62 ], [ 62, 63 ], [ 63, 64 ], [ 62, 65 ], [ 11, 66 ], [ 66, 67 ], [ 66, 68 ], [ 68, 69 ], [ 69, 70 ], [ 68, 71 ], [ 11, 72 ], [ 72, 73 ], [ 72, 74 ], [ 74, 75 ], [ 75, 76 ], [ 74, 77 ], [ 11, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 80, 82 ], [ 79, 83 ], [ 83, 84 ], [ 83, 85 ], [ 78, 86 ], [ 86, 87 ], [ 87, 88 ], [ 88, 89 ], [ 89, 90 ], [ 89, 91 ], [ 87, 92 ], [ 78, 93 ], [ 93, 94 ], [ 96, 95 ], [ 107, 96 ], [ 96, 97 ], [ 97, 98 ], [ 97, 99 ], [ 99, 100 ], [ 99, 101 ], [ 96, 102 ], [ 102, 103 ], [ 103, 104 ], [ 103, 105 ], [ 102, 106 ], [ 107, 107 ], [ 107, 108 ], [ 107, 109 ], [ 109, 110 ], [ 109, 111 ], [ 96, 112 ], [ 112, 113 ], [ 113, 114 ], [ 113, 115 ], [ 112, 116 ], [ 93, 117 ], [ 117, 118 ], [ 118, 119 ], [ 119, 120 ], [ 120, 121 ], [ 120, 122 ], [ 118, 123 ], [ 93, 124 ], [ 124, 125 ], [ 125, 126 ], [ 126, 127 ], [ 127, 128 ], [ 127, 129 ], [ 125, 130 ], [ 9, 131 ], [ 131, 132 ] ]
[ "import java.io.*;\nimport java.util.*;\nclass Main {\n public static void main(String[] args) throws IOException {\n int w, h, x, y, r;\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String[] input = br.readLine().split(\" \");\n List<Integer> list = new ArrayList<Integer>();\n for (String f : input) {\n list.add(Integer.parseInt(f));\n }\n w = list.get(0);\n h = list.get(1);\n x = list.get(2);\n y = list.get(3);\n r = list.get(4);\n if (x <= 0 || y <= 0) {\n System.out.println(\"No\");\n }\n else if (0 <= (x + r) && (x + r) <= w && 0 <= (y + r) && (y + r) <= h) {\n System.out.println(\"Yes\");\n }\n else {\n System.out.println(\"No\");\n }\n }\n}", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "class Main {\n public static void main(String[] args) throws IOException {\n int w, h, x, y, r;\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String[] input = br.readLine().split(\" \");\n List<Integer> list = new ArrayList<Integer>();\n for (String f : input) {\n list.add(Integer.parseInt(f));\n }\n w = list.get(0);\n h = list.get(1);\n x = list.get(2);\n y = list.get(3);\n r = list.get(4);\n if (x <= 0 || y <= 0) {\n System.out.println(\"No\");\n }\n else if (0 <= (x + r) && (x + r) <= w && 0 <= (y + r) && (y + r) <= h) {\n System.out.println(\"Yes\");\n }\n else {\n System.out.println(\"No\");\n }\n }\n}", "Main", "public static void main(String[] args) throws IOException {\n int w, h, x, y, r;\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String[] input = br.readLine().split(\" \");\n List<Integer> list = new ArrayList<Integer>();\n for (String f : input) {\n list.add(Integer.parseInt(f));\n }\n w = list.get(0);\n h = list.get(1);\n x = list.get(2);\n y = list.get(3);\n r = list.get(4);\n if (x <= 0 || y <= 0) {\n System.out.println(\"No\");\n }\n else if (0 <= (x + r) && (x + r) <= w && 0 <= (y + r) && (y + r) <= h) {\n System.out.println(\"Yes\");\n }\n else {\n System.out.println(\"No\");\n }\n }", "main", "{\n int w, h, x, y, r;\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String[] input = br.readLine().split(\" \");\n List<Integer> list = new ArrayList<Integer>();\n for (String f : input) {\n list.add(Integer.parseInt(f));\n }\n w = list.get(0);\n h = list.get(1);\n x = list.get(2);\n y = list.get(3);\n r = list.get(4);\n if (x <= 0 || y <= 0) {\n System.out.println(\"No\");\n }\n else if (0 <= (x + r) && (x + r) <= w && 0 <= (y + r) && (y + r) <= h) {\n System.out.println(\"Yes\");\n }\n else {\n System.out.println(\"No\");\n }\n }", "int w", "w", "h", "h", "x", "x", "y", "y", "r;", "r", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String[] input = br.readLine().split(\" \");", "input", "br.readLine().split(\" \")", "br.readLine().split", "br.readLine()", "br.readLine", "br", "\" \"", "List<Integer> list = new ArrayList<Integer>();", "list", "new ArrayList<Integer>()", "for (String f : input) {\n list.add(Integer.parseInt(f));\n }", "String f", "input", "{\n list.add(Integer.parseInt(f));\n }", "{\n list.add(Integer.parseInt(f));\n }", "list.add(Integer.parseInt(f))", "list.add", "list", "Integer.parseInt(f)", "Integer.parseInt", "Integer", "f", "w = list.get(0)", "w", "list.get(0)", "list.get", "list", "0", "h = list.get(1)", "h", "list.get(1)", "list.get", "list", "1", "x = list.get(2)", "x", "list.get(2)", "list.get", "list", "2", "y = list.get(3)", "y", "list.get(3)", "list.get", "list", "3", "r = list.get(4)", "r", "list.get(4)", "list.get", "list", "4", "if (x <= 0 || y <= 0) {\n System.out.println(\"No\");\n }\n else if (0 <= (x + r) && (x + r) <= w && 0 <= (y + r) && (y + r) <= h) {\n System.out.println(\"Yes\");\n }\n else {\n System.out.println(\"No\");\n }", "x <= 0 || y <= 0", "x <= 0", "x", "0", "y <= 0", "y", "0", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if (0 <= (x + r) && (x + r) <= w && 0 <= (y + r) && (y + r) <= h) {\n System.out.println(\"Yes\");\n }\n else {\n System.out.println(\"No\");\n }", "0 <= (x + r) && (x + r) <= w && 0 <= (y + r) && (y + r) <= h", "0 <= (y + r)", "0 <= (x + r) && (x + r) <= w && 0 <= (y + r) && (y + r) <= h", "0 <= (x + r)", "0", "(x + r)", "x", "r", "(x + r) <= w", "(x + r)", "x", "r", "w", "0 <= (y + r)", "0", "(y + r)", "y", "r", "(y + r) <= h", "(y + r)", "y", "r", "h", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args" ]
import java.io.*; import java.util.*; class Main { public static void main(String[] args) throws IOException { int w, h, x, y, r; BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] input = br.readLine().split(" "); List<Integer> list = new ArrayList<Integer>(); for (String f : input) { list.add(Integer.parseInt(f)); } w = list.get(0); h = list.get(1); x = list.get(2); y = list.get(3); r = list.get(4); if (x <= 0 || y <= 0) { System.out.println("No"); } else if (0 <= (x + r) && (x + r) <= w && 0 <= (y + r) && (y + r) <= h) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 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, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 41, 13, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 14, 2, 2, 13, 17, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 13, 14 ], [ 13, 15 ], [ 15, 16 ], [ 16, 17 ], [ 17, 18 ], [ 12, 19 ], [ 19, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 24, 25 ], [ 25, 26 ], [ 22, 27 ], [ 19, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 30, 33 ], [ 33, 34 ], [ 33, 35 ], [ 19, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 38, 41 ], [ 41, 42 ], [ 41, 43 ], [ 19, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 49, 50 ], [ 49, 51 ], [ 19, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 55, 56 ], [ 54, 57 ], [ 57, 58 ], [ 57, 59 ], [ 19, 60 ], [ 60, 61 ], [ 60, 62 ], [ 62, 63 ], [ 63, 64 ], [ 62, 65 ], [ 65, 66 ], [ 65, 67 ], [ 19, 68 ], [ 68, 69 ], [ 68, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 71, 75 ], [ 70, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 76, 80 ], [ 19, 81 ], [ 81, 82 ], [ 81, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 85, 87 ], [ 84, 88 ], [ 83, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 89, 93 ], [ 19, 94 ], [ 94, 95 ], [ 95, 96 ], [ 96, 97 ], [ 96, 98 ], [ 95, 99 ], [ 99, 100 ], [ 99, 101 ], [ 94, 102 ], [ 102, 103 ], [ 103, 104 ], [ 104, 105 ], [ 105, 106 ], [ 105, 107 ], [ 103, 108 ], [ 94, 109 ], [ 109, 110 ], [ 110, 111 ], [ 110, 112 ], [ 109, 113 ], [ 113, 114 ], [ 114, 115 ], [ 115, 116 ], [ 116, 117 ], [ 116, 118 ], [ 114, 119 ], [ 109, 120 ], [ 120, 121 ], [ 121, 122 ], [ 122, 123 ], [ 123, 124 ], [ 123, 125 ], [ 121, 126 ], [ 6, 127 ], [ 127, 128 ] ]
[ "import java.io.*;\n\nclass Main {\n\n public static void main(String[] args) {\n\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\n \n try {\n\n String[] line = reader.readLine().split(\" \");\n\n int W = Integer.parseInt(line[0]);\n int H = Integer.parseInt(line[1]);\n int x = Integer.parseInt(line[2]);\n int y = Integer.parseInt(line[3]);\n int r = Integer.parseInt(line[4]);\n \n boolean flag_width = (x + r >= 0) && (x + r <= W);\n boolean flag_height = (y + r >= 0) && (y + r <= H);\n \n if (x < 0 || y < 0) { \n System.out.println(\"No\");\n } else if (flag_width && flag_height) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n } catch (IOException e) {\n\n e.printStackTrace();\n\n }\n\n }\n\n}", "import java.io.*;", "io.*", "java", "class Main {\n\n public static void main(String[] args) {\n\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\n \n try {\n\n String[] line = reader.readLine().split(\" \");\n\n int W = Integer.parseInt(line[0]);\n int H = Integer.parseInt(line[1]);\n int x = Integer.parseInt(line[2]);\n int y = Integer.parseInt(line[3]);\n int r = Integer.parseInt(line[4]);\n \n boolean flag_width = (x + r >= 0) && (x + r <= W);\n boolean flag_height = (y + r >= 0) && (y + r <= H);\n \n if (x < 0 || y < 0) { \n System.out.println(\"No\");\n } else if (flag_width && flag_height) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n } catch (IOException e) {\n\n e.printStackTrace();\n\n }\n\n }\n\n}", "Main", "public static void main(String[] args) {\n\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\n \n try {\n\n String[] line = reader.readLine().split(\" \");\n\n int W = Integer.parseInt(line[0]);\n int H = Integer.parseInt(line[1]);\n int x = Integer.parseInt(line[2]);\n int y = Integer.parseInt(line[3]);\n int r = Integer.parseInt(line[4]);\n \n boolean flag_width = (x + r >= 0) && (x + r <= W);\n boolean flag_height = (y + r >= 0) && (y + r <= H);\n \n if (x < 0 || y < 0) { \n System.out.println(\"No\");\n } else if (flag_width && flag_height) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n } catch (IOException e) {\n\n e.printStackTrace();\n\n }\n\n }", "main", "{\n\n BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));\n\n \n try {\n\n String[] line = reader.readLine().split(\" \");\n\n int W = Integer.parseInt(line[0]);\n int H = Integer.parseInt(line[1]);\n int x = Integer.parseInt(line[2]);\n int y = Integer.parseInt(line[3]);\n int r = Integer.parseInt(line[4]);\n \n boolean flag_width = (x + r >= 0) && (x + r <= W);\n boolean flag_height = (y + r >= 0) && (y + r <= H);\n \n if (x < 0 || y < 0) { \n System.out.println(\"No\");\n } else if (flag_width && flag_height) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n } catch (IOException e) {\n\n e.printStackTrace();\n\n }\n\n }", "BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));", "reader", "new BufferedReader(new InputStreamReader(System.in))", "try {\n\n String[] line = reader.readLine().split(\" \");\n\n int W = Integer.parseInt(line[0]);\n int H = Integer.parseInt(line[1]);\n int x = Integer.parseInt(line[2]);\n int y = Integer.parseInt(line[3]);\n int r = Integer.parseInt(line[4]);\n \n boolean flag_width = (x + r >= 0) && (x + r <= W);\n boolean flag_height = (y + r >= 0) && (y + r <= H);\n \n if (x < 0 || y < 0) { \n System.out.println(\"No\");\n } else if (flag_width && flag_height) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n } catch (IOException e) {\n\n e.printStackTrace();\n\n }", "catch (IOException e) {\n\n e.printStackTrace();\n\n }", "IOException e", "{\n\n e.printStackTrace();\n\n }", "e.printStackTrace()", "e.printStackTrace", "e", "{\n\n String[] line = reader.readLine().split(\" \");\n\n int W = Integer.parseInt(line[0]);\n int H = Integer.parseInt(line[1]);\n int x = Integer.parseInt(line[2]);\n int y = Integer.parseInt(line[3]);\n int r = Integer.parseInt(line[4]);\n \n boolean flag_width = (x + r >= 0) && (x + r <= W);\n boolean flag_height = (y + r >= 0) && (y + r <= H);\n \n if (x < 0 || y < 0) { \n System.out.println(\"No\");\n } else if (flag_width && flag_height) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }\n\n }", "String[] line = reader.readLine().split(\" \");", "line", "reader.readLine().split(\" \")", "reader.readLine().split", "reader.readLine()", "reader.readLine", "reader", "\" \"", "int W = Integer.parseInt(line[0]);", "W", "Integer.parseInt(line[0])", "Integer.parseInt", "Integer", "line[0]", "line", "0", "int H = Integer.parseInt(line[1]);", "H", "Integer.parseInt(line[1])", "Integer.parseInt", "Integer", "line[1]", "line", "1", "int x = Integer.parseInt(line[2]);", "x", "Integer.parseInt(line[2])", "Integer.parseInt", "Integer", "line[2]", "line", "2", "int y = Integer.parseInt(line[3]);", "y", "Integer.parseInt(line[3])", "Integer.parseInt", "Integer", "line[3]", "line", "3", "int r = Integer.parseInt(line[4]);", "r", "Integer.parseInt(line[4])", "Integer.parseInt", "Integer", "line[4]", "line", "4", "boolean flag_width = (x + r >= 0) && (x + r <= W);", "flag_width", "(x + r >= 0) && (x + r <= W)", "(x + r >= 0)", "x + r", "x", "r", "0", "(x + r <= W)", "x + r", "x", "r", "W", "boolean flag_height = (y + r >= 0) && (y + r <= H);", "flag_height", "(y + r >= 0) && (y + r <= H)", "(y + r >= 0)", "y + r", "y", "r", "0", "(y + r <= H)", "y + r", "y", "r", "H", "if (x < 0 || y < 0) { \n System.out.println(\"No\");\n } else if (flag_width && flag_height) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }", "x < 0 || y < 0", "x < 0", "x", "0", "y < 0", "y", "0", "{ \n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if (flag_width && flag_height) {\n System.out.println(\"Yes\");\n } else {\n System.out.println(\"No\");\n }", "flag_width && flag_height", "flag_width", "flag_height", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args" ]
import java.io.*; class Main { public static void main(String[] args) { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); try { String[] line = reader.readLine().split(" "); int W = Integer.parseInt(line[0]); int H = Integer.parseInt(line[1]); int x = Integer.parseInt(line[2]); int y = Integer.parseInt(line[3]); int r = Integer.parseInt(line[4]); boolean flag_width = (x + r >= 0) && (x + r <= W); boolean flag_height = (y + r >= 0) && (y + r <= H); if (x < 0 || y < 0) { System.out.println("No"); } else if (flag_width && flag_height) { System.out.println("Yes"); } else { System.out.println("No"); } } catch (IOException e) { e.printStackTrace(); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 2, 2, 13, 13, 2, 13, 2, 13, 13, 2, 2, 13, 13, 2, 13, 2, 13, 13, 17, 17, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 85, 5 ], [ 85, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 14, 17 ], [ 17, 18 ], [ 18, 19 ], [ 8, 20 ], [ 20, 21 ], [ 20, 22 ], [ 22, 23 ], [ 23, 24 ], [ 22, 25 ], [ 25, 26 ], [ 26, 27 ], [ 8, 28 ], [ 28, 29 ], [ 28, 30 ], [ 30, 31 ], [ 31, 32 ], [ 30, 33 ], [ 33, 34 ], [ 34, 35 ], [ 8, 36 ], [ 36, 37 ], [ 36, 38 ], [ 38, 39 ], [ 39, 40 ], [ 38, 41 ], [ 41, 42 ], [ 42, 43 ], [ 8, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 49, 50 ], [ 50, 51 ], [ 8, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 52, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 59, 63 ], [ 63, 64 ], [ 63, 65 ], [ 65, 66 ], [ 65, 67 ], [ 58, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 68, 72 ], [ 72, 73 ], [ 72, 74 ], [ 74, 75 ], [ 74, 76 ], [ 57, 77 ], [ 57, 78 ], [ 8, 79 ], [ 79, 80 ], [ 80, 81 ], [ 6, 82 ], [ 82, 83 ], [ 0, 84 ], [ 84, 85 ], [ 84, 86 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint w = Integer.parseInt(scan.next());\n\t\tint h = Integer.parseInt(scan.next());\n\t\tint x = Integer.parseInt(scan.next());\n\t\tint y = Integer.parseInt(scan.next());\n\t\tint r = Integer.parseInt(scan.next());\n\t\tSystem.out.println((((r <= x && x <= (w - r)) && (r <= y && y <= (h - r))) ? \"Yes\" : \"No\"));\n\t\tscan.close();\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint w = Integer.parseInt(scan.next());\n\t\tint h = Integer.parseInt(scan.next());\n\t\tint x = Integer.parseInt(scan.next());\n\t\tint y = Integer.parseInt(scan.next());\n\t\tint r = Integer.parseInt(scan.next());\n\t\tSystem.out.println((((r <= x && x <= (w - r)) && (r <= y && y <= (h - r))) ? \"Yes\" : \"No\"));\n\t\tscan.close();\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint w = Integer.parseInt(scan.next());\n\t\tint h = Integer.parseInt(scan.next());\n\t\tint x = Integer.parseInt(scan.next());\n\t\tint y = Integer.parseInt(scan.next());\n\t\tint r = Integer.parseInt(scan.next());\n\t\tSystem.out.println((((r <= x && x <= (w - r)) && (r <= y && y <= (h - r))) ? \"Yes\" : \"No\"));\n\t\tscan.close();\n\t}", "main", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint w = Integer.parseInt(scan.next());\n\t\tint h = Integer.parseInt(scan.next());\n\t\tint x = Integer.parseInt(scan.next());\n\t\tint y = Integer.parseInt(scan.next());\n\t\tint r = Integer.parseInt(scan.next());\n\t\tSystem.out.println((((r <= x && x <= (w - r)) && (r <= y && y <= (h - r))) ? \"Yes\" : \"No\"));\n\t\tscan.close();\n\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int w = Integer.parseInt(scan.next());", "w", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "int h = Integer.parseInt(scan.next());", "h", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "int x = Integer.parseInt(scan.next());", "x", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "int y = Integer.parseInt(scan.next());", "y", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "int r = Integer.parseInt(scan.next());", "r", "Integer.parseInt(scan.next())", "Integer.parseInt", "Integer", "scan.next()", "scan.next", "scan", "System.out.println((((r <= x && x <= (w - r)) && (r <= y && y <= (h - r))) ? \"Yes\" : \"No\"))", "System.out.println", "System.out", "System", "System.out", "(((r <= x && x <= (w - r)) && (r <= y && y <= (h - r))) ? \"Yes\" : \"No\")", "((r <= x && x <= (w - r)) && (r <= y && y <= (h - r)))", "(r <= x && x <= (w - r))", "r <= x", "r", "x", "x <= (w - r)", "x", "(w - r)", "w", "r", "(r <= y && y <= (h - r))", "r <= y", "r", "y", "y <= (h - r)", "y", "(h - r)", "h", "r", "\"Yes\"", "\"No\"", "scan.close()", "scan.close", "scan", "String[] args", "args", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint w = Integer.parseInt(scan.next());\n\t\tint h = Integer.parseInt(scan.next());\n\t\tint x = Integer.parseInt(scan.next());\n\t\tint y = Integer.parseInt(scan.next());\n\t\tint r = Integer.parseInt(scan.next());\n\t\tSystem.out.println((((r <= x && x <= (w - r)) && (r <= y && y <= (h - r))) ? \"Yes\" : \"No\"));\n\t\tscan.close();\n\t}\n}", "public class Main {\n\tpublic static void main(String[] args) {\n\t\tScanner scan = new Scanner(System.in);\n\t\tint w = Integer.parseInt(scan.next());\n\t\tint h = Integer.parseInt(scan.next());\n\t\tint x = Integer.parseInt(scan.next());\n\t\tint y = Integer.parseInt(scan.next());\n\t\tint r = Integer.parseInt(scan.next());\n\t\tSystem.out.println((((r <= x && x <= (w - r)) && (r <= y && y <= (h - r))) ? \"Yes\" : \"No\"));\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 w = Integer.parseInt(scan.next()); int h = Integer.parseInt(scan.next()); int x = Integer.parseInt(scan.next()); int y = Integer.parseInt(scan.next()); int r = Integer.parseInt(scan.next()); System.out.println((((r <= x && x <= (w - r)) && (r <= y && y <= (h - r))) ? "Yes" : "No")); scan.close(); } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 17, 41, 13, 20, 17, 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, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 17, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 0, 13, 4, 18, 13, 18, 13, 17, 14, 2, 2, 17, 13, 2, 13, 17, 30, 14, 2, 2, 17, 13, 2, 13, 17, 30, 14, 2, 2, 40, 17, 13, 2, 13, 17, 30, 14, 2, 2, 17, 13, 2, 13, 17, 30, 0, 13, 17, 14, 13, 30, 14, 2, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 30, 14, 2, 2, 17, 2, 13, 13, 2, 2, 13, 13, 13, 30, 0, 13, 17, 14, 2, 13, 17, 30, 0, 13, 17, 4, 18, 18, 13, 13, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 204, 11 ], [ 204, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 15, 17 ], [ 14, 18 ], [ 18, 19 ], [ 18, 20 ], [ 14, 22 ], [ 22, 23 ], [ 22, 24 ], [ 14, 25 ], [ 25, 26 ], [ 25, 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 ], [ 41, 42 ], [ 41, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 46, 47 ], [ 46, 48 ], [ 44, 49 ], [ 40, 50 ], [ 50, 51 ], [ 50, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 55, 57 ], [ 53, 58 ], [ 40, 59 ], [ 59, 60 ], [ 60, 61 ], [ 60, 62 ], [ 59, 63 ], [ 63, 64 ], [ 63, 65 ], [ 65, 66 ], [ 66, 67 ], [ 59, 68 ], [ 68, 69 ], [ 68, 70 ], [ 70, 71 ], [ 71, 72 ], [ 70, 73 ], [ 70, 74 ], [ 59, 75 ], [ 75, 76 ], [ 75, 77 ], [ 77, 78 ], [ 78, 79 ], [ 77, 80 ], [ 80, 81 ], [ 80, 82 ], [ 59, 83 ], [ 83, 84 ], [ 83, 85 ], [ 85, 86 ], [ 86, 87 ], [ 85, 88 ], [ 88, 89 ], [ 88, 90 ], [ 59, 91 ], [ 91, 92 ], [ 91, 93 ], [ 93, 94 ], [ 94, 95 ], [ 93, 96 ], [ 96, 97 ], [ 96, 98 ], [ 59, 99 ], [ 99, 100 ], [ 99, 101 ], [ 101, 102 ], [ 102, 103 ], [ 101, 104 ], [ 104, 105 ], [ 104, 106 ], [ 59, 107 ], [ 107, 108 ], [ 107, 109 ], [ 109, 110 ], [ 110, 111 ], [ 109, 112 ], [ 112, 113 ], [ 112, 114 ], [ 59, 115 ], [ 115, 116 ], [ 116, 117 ], [ 117, 118 ], [ 117, 119 ], [ 116, 120 ], [ 120, 121 ], [ 120, 122 ], [ 115, 123 ], [ 123, 124 ], [ 124, 125 ], [ 125, 126 ], [ 126, 127 ], [ 126, 128 ], [ 125, 129 ], [ 129, 130 ], [ 129, 131 ], [ 124, 132 ], [ 132, 133 ], [ 133, 134 ], [ 134, 135 ], [ 135, 136 ], [ 136, 137 ], [ 135, 138 ], [ 134, 139 ], [ 139, 140 ], [ 139, 141 ], [ 133, 142 ], [ 142, 143 ], [ 143, 144 ], [ 144, 145 ], [ 145, 146 ], [ 145, 147 ], [ 144, 148 ], [ 148, 149 ], [ 148, 150 ], [ 143, 151 ], [ 151, 152 ], [ 152, 153 ], [ 152, 154 ], [ 59, 155 ], [ 155, 156 ], [ 155, 157 ], [ 157, 158 ], [ 158, 159 ], [ 159, 160 ], [ 160, 161 ], [ 160, 162 ], [ 162, 163 ], [ 162, 164 ], [ 159, 165 ], [ 165, 166 ], [ 166, 167 ], [ 166, 168 ], [ 165, 169 ], [ 158, 170 ], [ 170, 171 ], [ 171, 172 ], [ 172, 173 ], [ 173, 174 ], [ 173, 175 ], [ 175, 176 ], [ 175, 177 ], [ 172, 178 ], [ 178, 179 ], [ 179, 180 ], [ 179, 181 ], [ 178, 182 ], [ 171, 183 ], [ 183, 184 ], [ 184, 185 ], [ 184, 186 ], [ 59, 187 ], [ 187, 188 ], [ 188, 189 ], [ 188, 190 ], [ 187, 191 ], [ 191, 192 ], [ 192, 193 ], [ 192, 194 ], [ 59, 195 ], [ 195, 196 ], [ 196, 197 ], [ 197, 198 ], [ 197, 199 ], [ 195, 200 ], [ 12, 201 ], [ 201, 202 ], [ 0, 203 ], [ 203, 204 ], [ 203, 205 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\t//?????£?????????\n\t\tString strAnser = null;\n\n\t\tint[] intNumList = new int[5];\n\n\t\tint intW =0;\n\t\tint intH =0;\n\t\tint intx =0;\n\t\tint inty =0;\n\t\tint intr =0;\n\n\t\tboolean NumOk = false;\n\n\t\ttry {\n\t\t\t//??\\????????????\n\t\t\tBufferedReader strLine = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString strInput = strLine.readLine();\n\n\t\t\tString[] strNumList = strInput.split(\" \", 0);\n\n\t\t\t//int????????????\n\t\t\tintW = Integer.parseInt(strNumList[0]);\n\t\t\tintH = Integer.parseInt(strNumList[1]);\n\t\t\tintx = Integer.parseInt(strNumList[2]);\n\t\t\tinty = Integer.parseInt(strNumList[3]);\n\t\t\tintr = Integer.parseInt(strNumList[4]);\n\n\t\t\t//??\\?????°???????????§??????\n\t\t\tif (0 < intH && intH <= 100) {\n\t\t\t\tif (0 < intW && intW <= 100) {\n\t\t\t\t\tif (-100 < intx && intx <= 100) {\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (NumOk) {\n\t\t\t\tif (0 <= intx - intr && intx + intr <= intW) {\n\t\t\t\t\tif (0 <= inty - intr && inty + intr <= intH) {\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (strAnser == null) {\n\t\t\t\tstrAnser = \"No\";\n\t\t\t}\n\t\t\tSystem.out.println(strAnser);\n\n\t\t}catch (IOException e1) {\n\t\t\tSystem.out.println(e1);\n\t\t}catch (NumberFormatException e2) {\n\t\t\tSystem.out.println(e2);\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\n\tpublic static void main(String[] args) {\n\n\t\t//?????£?????????\n\t\tString strAnser = null;\n\n\t\tint[] intNumList = new int[5];\n\n\t\tint intW =0;\n\t\tint intH =0;\n\t\tint intx =0;\n\t\tint inty =0;\n\t\tint intr =0;\n\n\t\tboolean NumOk = false;\n\n\t\ttry {\n\t\t\t//??\\????????????\n\t\t\tBufferedReader strLine = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString strInput = strLine.readLine();\n\n\t\t\tString[] strNumList = strInput.split(\" \", 0);\n\n\t\t\t//int????????????\n\t\t\tintW = Integer.parseInt(strNumList[0]);\n\t\t\tintH = Integer.parseInt(strNumList[1]);\n\t\t\tintx = Integer.parseInt(strNumList[2]);\n\t\t\tinty = Integer.parseInt(strNumList[3]);\n\t\t\tintr = Integer.parseInt(strNumList[4]);\n\n\t\t\t//??\\?????°???????????§??????\n\t\t\tif (0 < intH && intH <= 100) {\n\t\t\t\tif (0 < intW && intW <= 100) {\n\t\t\t\t\tif (-100 < intx && intx <= 100) {\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (NumOk) {\n\t\t\t\tif (0 <= intx - intr && intx + intr <= intW) {\n\t\t\t\t\tif (0 <= inty - intr && inty + intr <= intH) {\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (strAnser == null) {\n\t\t\t\tstrAnser = \"No\";\n\t\t\t}\n\t\t\tSystem.out.println(strAnser);\n\n\t\t}catch (IOException e1) {\n\t\t\tSystem.out.println(e1);\n\t\t}catch (NumberFormatException e2) {\n\t\t\tSystem.out.println(e2);\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) {\n\n\t\t//?????£?????????\n\t\tString strAnser = null;\n\n\t\tint[] intNumList = new int[5];\n\n\t\tint intW =0;\n\t\tint intH =0;\n\t\tint intx =0;\n\t\tint inty =0;\n\t\tint intr =0;\n\n\t\tboolean NumOk = false;\n\n\t\ttry {\n\t\t\t//??\\????????????\n\t\t\tBufferedReader strLine = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString strInput = strLine.readLine();\n\n\t\t\tString[] strNumList = strInput.split(\" \", 0);\n\n\t\t\t//int????????????\n\t\t\tintW = Integer.parseInt(strNumList[0]);\n\t\t\tintH = Integer.parseInt(strNumList[1]);\n\t\t\tintx = Integer.parseInt(strNumList[2]);\n\t\t\tinty = Integer.parseInt(strNumList[3]);\n\t\t\tintr = Integer.parseInt(strNumList[4]);\n\n\t\t\t//??\\?????°???????????§??????\n\t\t\tif (0 < intH && intH <= 100) {\n\t\t\t\tif (0 < intW && intW <= 100) {\n\t\t\t\t\tif (-100 < intx && intx <= 100) {\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (NumOk) {\n\t\t\t\tif (0 <= intx - intr && intx + intr <= intW) {\n\t\t\t\t\tif (0 <= inty - intr && inty + intr <= intH) {\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (strAnser == null) {\n\t\t\t\tstrAnser = \"No\";\n\t\t\t}\n\t\t\tSystem.out.println(strAnser);\n\n\t\t}catch (IOException e1) {\n\t\t\tSystem.out.println(e1);\n\t\t}catch (NumberFormatException e2) {\n\t\t\tSystem.out.println(e2);\n\t\t}\n\t}", "main", "{\n\n\t\t//?????£?????????\n\t\tString strAnser = null;\n\n\t\tint[] intNumList = new int[5];\n\n\t\tint intW =0;\n\t\tint intH =0;\n\t\tint intx =0;\n\t\tint inty =0;\n\t\tint intr =0;\n\n\t\tboolean NumOk = false;\n\n\t\ttry {\n\t\t\t//??\\????????????\n\t\t\tBufferedReader strLine = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString strInput = strLine.readLine();\n\n\t\t\tString[] strNumList = strInput.split(\" \", 0);\n\n\t\t\t//int????????????\n\t\t\tintW = Integer.parseInt(strNumList[0]);\n\t\t\tintH = Integer.parseInt(strNumList[1]);\n\t\t\tintx = Integer.parseInt(strNumList[2]);\n\t\t\tinty = Integer.parseInt(strNumList[3]);\n\t\t\tintr = Integer.parseInt(strNumList[4]);\n\n\t\t\t//??\\?????°???????????§??????\n\t\t\tif (0 < intH && intH <= 100) {\n\t\t\t\tif (0 < intW && intW <= 100) {\n\t\t\t\t\tif (-100 < intx && intx <= 100) {\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (NumOk) {\n\t\t\t\tif (0 <= intx - intr && intx + intr <= intW) {\n\t\t\t\t\tif (0 <= inty - intr && inty + intr <= intH) {\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (strAnser == null) {\n\t\t\t\tstrAnser = \"No\";\n\t\t\t}\n\t\t\tSystem.out.println(strAnser);\n\n\t\t}catch (IOException e1) {\n\t\t\tSystem.out.println(e1);\n\t\t}catch (NumberFormatException e2) {\n\t\t\tSystem.out.println(e2);\n\t\t}\n\t}", "String strAnser = null;", "strAnser", "null", "int[] intNumList = new int[5];", "intNumList", "new int[5]", "5", "int intW =0;", "intW", "0", "int intH =0;", "intH", "0", "int intx =0;", "intx", "0", "int inty =0;", "inty", "0", "int intr =0;", "intr", "0", "boolean NumOk = false;", "NumOk", "false", "try {\n\t\t\t//??\\????????????\n\t\t\tBufferedReader strLine = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString strInput = strLine.readLine();\n\n\t\t\tString[] strNumList = strInput.split(\" \", 0);\n\n\t\t\t//int????????????\n\t\t\tintW = Integer.parseInt(strNumList[0]);\n\t\t\tintH = Integer.parseInt(strNumList[1]);\n\t\t\tintx = Integer.parseInt(strNumList[2]);\n\t\t\tinty = Integer.parseInt(strNumList[3]);\n\t\t\tintr = Integer.parseInt(strNumList[4]);\n\n\t\t\t//??\\?????°???????????§??????\n\t\t\tif (0 < intH && intH <= 100) {\n\t\t\t\tif (0 < intW && intW <= 100) {\n\t\t\t\t\tif (-100 < intx && intx <= 100) {\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (NumOk) {\n\t\t\t\tif (0 <= intx - intr && intx + intr <= intW) {\n\t\t\t\t\tif (0 <= inty - intr && inty + intr <= intH) {\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (strAnser == null) {\n\t\t\t\tstrAnser = \"No\";\n\t\t\t}\n\t\t\tSystem.out.println(strAnser);\n\n\t\t}catch (IOException e1) {\n\t\t\tSystem.out.println(e1);\n\t\t}catch (NumberFormatException e2) {\n\t\t\tSystem.out.println(e2);\n\t\t}", "catch (IOException e1) {\n\t\t\tSystem.out.println(e1);\n\t\t}", "IOException e1", "{\n\t\t\tSystem.out.println(e1);\n\t\t}", "System.out.println(e1)", "System.out.println", "System.out", "System", "System.out", "e1", "catch (NumberFormatException e2) {\n\t\t\tSystem.out.println(e2);\n\t\t}", "NumberFormatException e2", "{\n\t\t\tSystem.out.println(e2);\n\t\t}", "System.out.println(e2)", "System.out.println", "System.out", "System", "System.out", "e2", "{\n\t\t\t//??\\????????????\n\t\t\tBufferedReader strLine = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString strInput = strLine.readLine();\n\n\t\t\tString[] strNumList = strInput.split(\" \", 0);\n\n\t\t\t//int????????????\n\t\t\tintW = Integer.parseInt(strNumList[0]);\n\t\t\tintH = Integer.parseInt(strNumList[1]);\n\t\t\tintx = Integer.parseInt(strNumList[2]);\n\t\t\tinty = Integer.parseInt(strNumList[3]);\n\t\t\tintr = Integer.parseInt(strNumList[4]);\n\n\t\t\t//??\\?????°???????????§??????\n\t\t\tif (0 < intH && intH <= 100) {\n\t\t\t\tif (0 < intW && intW <= 100) {\n\t\t\t\t\tif (-100 < intx && intx <= 100) {\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (NumOk) {\n\t\t\t\tif (0 <= intx - intr && intx + intr <= intW) {\n\t\t\t\t\tif (0 <= inty - intr && inty + intr <= intH) {\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (strAnser == null) {\n\t\t\t\tstrAnser = \"No\";\n\t\t\t}\n\t\t\tSystem.out.println(strAnser);\n\n\t\t}", "BufferedReader strLine = new BufferedReader(new InputStreamReader(System.in));", "strLine", "new BufferedReader(new InputStreamReader(System.in))", "String strInput = strLine.readLine();", "strInput", "strLine.readLine()", "strLine.readLine", "strLine", "String[] strNumList = strInput.split(\" \", 0);", "strNumList", "strInput.split(\" \", 0)", "strInput.split", "strInput", "\" \"", "0", "intW = Integer.parseInt(strNumList[0])", "intW", "Integer.parseInt(strNumList[0])", "Integer.parseInt", "Integer", "strNumList[0]", "strNumList", "0", "intH = Integer.parseInt(strNumList[1])", "intH", "Integer.parseInt(strNumList[1])", "Integer.parseInt", "Integer", "strNumList[1]", "strNumList", "1", "intx = Integer.parseInt(strNumList[2])", "intx", "Integer.parseInt(strNumList[2])", "Integer.parseInt", "Integer", "strNumList[2]", "strNumList", "2", "inty = Integer.parseInt(strNumList[3])", "inty", "Integer.parseInt(strNumList[3])", "Integer.parseInt", "Integer", "strNumList[3]", "strNumList", "3", "intr = Integer.parseInt(strNumList[4])", "intr", "Integer.parseInt(strNumList[4])", "Integer.parseInt", "Integer", "strNumList[4]", "strNumList", "4", "if (0 < intH && intH <= 100) {\n\t\t\t\tif (0 < intW && intW <= 100) {\n\t\t\t\t\tif (-100 < intx && intx <= 100) {\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}", "0 < intH && intH <= 100", "0 < intH", "0", "intH", "intH <= 100", "intH", "100", "{\n\t\t\t\tif (0 < intW && intW <= 100) {\n\t\t\t\t\tif (-100 < intx && intx <= 100) {\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}", "if (0 < intW && intW <= 100) {\n\t\t\t\t\tif (-100 < intx && intx <= 100) {\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}", "0 < intW && intW <= 100", "0 < intW", "0", "intW", "intW <= 100", "intW", "100", "{\n\t\t\t\t\tif (-100 < intx && intx <= 100) {\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}", "if (-100 < intx && intx <= 100) {\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}", "-100 < intx && intx <= 100", "-100 < intx", "-100", "100", "intx", "intx <= 100", "intx", "100", "{\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}", "if (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}", "0 < intr && intr <= 100", "0 < intr", "0", "intr", "intr <= 100", "intr", "100", "{\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}", "NumOk = true", "NumOk", "true", "if (NumOk) {\n\t\t\t\tif (0 <= intx - intr && intx + intr <= intW) {\n\t\t\t\t\tif (0 <= inty - intr && inty + intr <= intH) {\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}", "NumOk", "{\n\t\t\t\tif (0 <= intx - intr && intx + intr <= intW) {\n\t\t\t\t\tif (0 <= inty - intr && inty + intr <= intH) {\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}", "if (0 <= intx - intr && intx + intr <= intW) {\n\t\t\t\t\tif (0 <= inty - intr && inty + intr <= intH) {\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}\n\t\t\t\t}", "0 <= intx - intr && intx + intr <= intW", "0 <= intx - intr", "0", "intx - intr", "intx", "intr", "intx + intr <= intW", "intx + intr", "intx", "intr", "intW", "{\n\t\t\t\t\tif (0 <= inty - intr && inty + intr <= intH) {\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}\n\t\t\t\t}", "if (0 <= inty - intr && inty + intr <= intH) {\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}", "0 <= inty - intr && inty + intr <= intH", "0 <= inty - intr", "0", "inty - intr", "inty", "intr", "inty + intr <= intH", "inty + intr", "inty", "intr", "intH", "{\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}", "strAnser = \"Yes\"", "strAnser", "\"Yes\"", "if (strAnser == null) {\n\t\t\t\tstrAnser = \"No\";\n\t\t\t}", "strAnser == null", "strAnser", "null", "{\n\t\t\t\tstrAnser = \"No\";\n\t\t\t}", "strAnser = \"No\"", "strAnser", "\"No\"", "System.out.println(strAnser)", "System.out.println", "System.out", "System", "System.out", "strAnser", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\t//?????£?????????\n\t\tString strAnser = null;\n\n\t\tint[] intNumList = new int[5];\n\n\t\tint intW =0;\n\t\tint intH =0;\n\t\tint intx =0;\n\t\tint inty =0;\n\t\tint intr =0;\n\n\t\tboolean NumOk = false;\n\n\t\ttry {\n\t\t\t//??\\????????????\n\t\t\tBufferedReader strLine = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString strInput = strLine.readLine();\n\n\t\t\tString[] strNumList = strInput.split(\" \", 0);\n\n\t\t\t//int????????????\n\t\t\tintW = Integer.parseInt(strNumList[0]);\n\t\t\tintH = Integer.parseInt(strNumList[1]);\n\t\t\tintx = Integer.parseInt(strNumList[2]);\n\t\t\tinty = Integer.parseInt(strNumList[3]);\n\t\t\tintr = Integer.parseInt(strNumList[4]);\n\n\t\t\t//??\\?????°???????????§??????\n\t\t\tif (0 < intH && intH <= 100) {\n\t\t\t\tif (0 < intW && intW <= 100) {\n\t\t\t\t\tif (-100 < intx && intx <= 100) {\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (NumOk) {\n\t\t\t\tif (0 <= intx - intr && intx + intr <= intW) {\n\t\t\t\t\tif (0 <= inty - intr && inty + intr <= intH) {\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (strAnser == null) {\n\t\t\t\tstrAnser = \"No\";\n\t\t\t}\n\t\t\tSystem.out.println(strAnser);\n\n\t\t}catch (IOException e1) {\n\t\t\tSystem.out.println(e1);\n\t\t}catch (NumberFormatException e2) {\n\t\t\tSystem.out.println(e2);\n\t\t}\n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\n\t\t//?????£?????????\n\t\tString strAnser = null;\n\n\t\tint[] intNumList = new int[5];\n\n\t\tint intW =0;\n\t\tint intH =0;\n\t\tint intx =0;\n\t\tint inty =0;\n\t\tint intr =0;\n\n\t\tboolean NumOk = false;\n\n\t\ttry {\n\t\t\t//??\\????????????\n\t\t\tBufferedReader strLine = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tString strInput = strLine.readLine();\n\n\t\t\tString[] strNumList = strInput.split(\" \", 0);\n\n\t\t\t//int????????????\n\t\t\tintW = Integer.parseInt(strNumList[0]);\n\t\t\tintH = Integer.parseInt(strNumList[1]);\n\t\t\tintx = Integer.parseInt(strNumList[2]);\n\t\t\tinty = Integer.parseInt(strNumList[3]);\n\t\t\tintr = Integer.parseInt(strNumList[4]);\n\n\t\t\t//??\\?????°???????????§??????\n\t\t\tif (0 < intH && intH <= 100) {\n\t\t\t\tif (0 < intW && intW <= 100) {\n\t\t\t\t\tif (-100 < intx && intx <= 100) {\n\t\t\t\t\t\tif (0 < intr && intr <= 100) {\n\t\t\t\t\t\t\tNumOk = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (NumOk) {\n\t\t\t\tif (0 <= intx - intr && intx + intr <= intW) {\n\t\t\t\t\tif (0 <= inty - intr && inty + intr <= intH) {\n\t\t\t\t\t\tstrAnser = \"Yes\";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (strAnser == null) {\n\t\t\t\tstrAnser = \"No\";\n\t\t\t}\n\t\t\tSystem.out.println(strAnser);\n\n\t\t}catch (IOException e1) {\n\t\t\tSystem.out.println(e1);\n\t\t}catch (NumberFormatException e2) {\n\t\t\tSystem.out.println(e2);\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) { //?????£????????? String strAnser = null; int[] intNumList = new int[5]; int intW =0; int intH =0; int intx =0; int inty =0; int intr =0; boolean NumOk = false; try { //??\???????????? BufferedReader strLine = new BufferedReader(new InputStreamReader(System.in)); String strInput = strLine.readLine(); String[] strNumList = strInput.split(" ", 0); //int???????????? intW = Integer.parseInt(strNumList[0]); intH = Integer.parseInt(strNumList[1]); intx = Integer.parseInt(strNumList[2]); inty = Integer.parseInt(strNumList[3]); intr = Integer.parseInt(strNumList[4]); //??\?????°???????????§?????? if (0 < intH && intH <= 100) { if (0 < intW && intW <= 100) { if (-100 < intx && intx <= 100) { if (0 < intr && intr <= 100) { NumOk = true; } } } } if (NumOk) { if (0 <= intx - intr && intx + intr <= intW) { if (0 <= inty - intr && inty + intr <= intH) { strAnser = "Yes"; } } } if (strAnser == null) { strAnser = "No"; } System.out.println(strAnser); }catch (IOException e1) { System.out.println(e1); }catch (NumberFormatException e2) { System.out.println(e2); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 17, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 11, 1, 41, 13, 17, 2, 13, 17, 1, 40, 13, 30, 30, 41, 13, 2, 13, 4, 18, 13, 13, 41, 13, 2, 13, 4, 18, 13, 13, 14, 2, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 0, 13, 17, 3, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 121, 8 ], [ 121, 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 ], [ 11, 33 ], [ 33, 34 ], [ 33, 35 ], [ 35, 36 ], [ 36, 37 ], [ 11, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 11, 43 ], [ 43, 44 ], [ 44, 45 ], [ 45, 46 ], [ 45, 47 ], [ 43, 48 ], [ 48, 49 ], [ 48, 50 ], [ 43, 51 ], [ 51, 52 ], [ 52, 53 ], [ 43, 54 ], [ 55, 55 ], [ 55, 56 ], [ 56, 57 ], [ 56, 58 ], [ 58, 59 ], [ 58, 60 ], [ 60, 61 ], [ 61, 62 ], [ 60, 63 ], [ 55, 64 ], [ 64, 65 ], [ 64, 66 ], [ 66, 67 ], [ 66, 68 ], [ 68, 69 ], [ 69, 70 ], [ 68, 71 ], [ 55, 72 ], [ 72, 73 ], [ 75, 74 ], [ 86, 75 ], [ 75, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 76, 80 ], [ 75, 81 ], [ 81, 82 ], [ 82, 83 ], [ 82, 84 ], [ 81, 85 ], [ 86, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 86, 90 ], [ 75, 91 ], [ 91, 92 ], [ 92, 93 ], [ 92, 94 ], [ 91, 95 ], [ 72, 96 ], [ 96, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 99, 101 ], [ 97, 102 ], [ 96, 103 ], [ 103, 104 ], [ 103, 105 ], [ 96, 106 ], [ 11, 107 ], [ 107, 108 ], [ 108, 109 ], [ 108, 110 ], [ 107, 111 ], [ 111, 112 ], [ 112, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 112, 117 ], [ 9, 118 ], [ 118, 119 ], [ 0, 120 ], [ 120, 121 ], [ 120, 122 ] ]
[ "import java.util.Scanner;\nimport java.lang.Math;\npublic class Main {\n\n public static void main(String[] args) {\n Scanner a = new Scanner(System.in);\n int flag=0;\n int W = a.nextInt();\n int H = a.nextInt();\n int x = a.nextInt();\n int y = a.nextInt();\n int r = a.nextInt();\n for (double i = 0; i < 90; i++) {\n double x_r = r * Math.cos(i);\n double y_r = r * Math.sin(i);\n if (x_r + x > W || y_r + y > H || y_r+y<0 ||x_r+x<0) {\n System.out.println(\"No\");\n flag=1;\n break;\n }\n }\n if(flag==0){\n System.out.println(\"Yes\");\n }\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "import java.lang.Math;", "Math", "java.lang", "public class Main {\n\n public static void main(String[] args) {\n Scanner a = new Scanner(System.in);\n int flag=0;\n int W = a.nextInt();\n int H = a.nextInt();\n int x = a.nextInt();\n int y = a.nextInt();\n int r = a.nextInt();\n for (double i = 0; i < 90; i++) {\n double x_r = r * Math.cos(i);\n double y_r = r * Math.sin(i);\n if (x_r + x > W || y_r + y > H || y_r+y<0 ||x_r+x<0) {\n System.out.println(\"No\");\n flag=1;\n break;\n }\n }\n if(flag==0){\n System.out.println(\"Yes\");\n }\n }\n}", "Main", "public static void main(String[] args) {\n Scanner a = new Scanner(System.in);\n int flag=0;\n int W = a.nextInt();\n int H = a.nextInt();\n int x = a.nextInt();\n int y = a.nextInt();\n int r = a.nextInt();\n for (double i = 0; i < 90; i++) {\n double x_r = r * Math.cos(i);\n double y_r = r * Math.sin(i);\n if (x_r + x > W || y_r + y > H || y_r+y<0 ||x_r+x<0) {\n System.out.println(\"No\");\n flag=1;\n break;\n }\n }\n if(flag==0){\n System.out.println(\"Yes\");\n }\n }", "main", "{\n Scanner a = new Scanner(System.in);\n int flag=0;\n int W = a.nextInt();\n int H = a.nextInt();\n int x = a.nextInt();\n int y = a.nextInt();\n int r = a.nextInt();\n for (double i = 0; i < 90; i++) {\n double x_r = r * Math.cos(i);\n double y_r = r * Math.sin(i);\n if (x_r + x > W || y_r + y > H || y_r+y<0 ||x_r+x<0) {\n System.out.println(\"No\");\n flag=1;\n break;\n }\n }\n if(flag==0){\n System.out.println(\"Yes\");\n }\n }", "Scanner a = new Scanner(System.in);", "a", "new Scanner(System.in)", "int flag=0;", "flag", "0", "int W = a.nextInt();", "W", "a.nextInt()", "a.nextInt", "a", "int H = a.nextInt();", "H", "a.nextInt()", "a.nextInt", "a", "int x = a.nextInt();", "x", "a.nextInt()", "a.nextInt", "a", "int y = a.nextInt();", "y", "a.nextInt()", "a.nextInt", "a", "int r = a.nextInt();", "r", "a.nextInt()", "a.nextInt", "a", "for (double i = 0; i < 90; i++) {\n double x_r = r * Math.cos(i);\n double y_r = r * Math.sin(i);\n if (x_r + x > W || y_r + y > H || y_r+y<0 ||x_r+x<0) {\n System.out.println(\"No\");\n flag=1;\n break;\n }\n }", "double i = 0;", "double i = 0;", "i", "0", "i < 90", "i", "90", "i++", "i++", "i", "{\n double x_r = r * Math.cos(i);\n double y_r = r * Math.sin(i);\n if (x_r + x > W || y_r + y > H || y_r+y<0 ||x_r+x<0) {\n System.out.println(\"No\");\n flag=1;\n break;\n }\n }", "{\n double x_r = r * Math.cos(i);\n double y_r = r * Math.sin(i);\n if (x_r + x > W || y_r + y > H || y_r+y<0 ||x_r+x<0) {\n System.out.println(\"No\");\n flag=1;\n break;\n }\n }", "double x_r = r * Math.cos(i);", "x_r", "r * Math.cos(i)", "r", "Math.cos(i)", "Math.cos", "Math", "i", "double y_r = r * Math.sin(i);", "y_r", "r * Math.sin(i)", "r", "Math.sin(i)", "Math.sin", "Math", "i", "if (x_r + x > W || y_r + y > H || y_r+y<0 ||x_r+x<0) {\n System.out.println(\"No\");\n flag=1;\n break;\n }", "x_r + x > W || y_r + y > H || y_r+y<0 ||x_r+x<0", "y_r+y<0", "x_r + x > W || y_r + y > H || y_r+y<0 ||x_r+x<0", "x_r + x > W", "x_r + x", "x_r", "x", "W", "y_r + y > H", "y_r + y", "y_r", "y", "H", "y_r+y<0", "y_r+y", "y_r", "y", "0", "x_r+x<0", "x_r+x", "x_r", "x", "0", "{\n System.out.println(\"No\");\n flag=1;\n break;\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "flag=1", "flag", "1", "break;", "if(flag==0){\n System.out.println(\"Yes\");\n }", "flag==0", "flag", "0", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main {\n\n public static void main(String[] args) {\n Scanner a = new Scanner(System.in);\n int flag=0;\n int W = a.nextInt();\n int H = a.nextInt();\n int x = a.nextInt();\n int y = a.nextInt();\n int r = a.nextInt();\n for (double i = 0; i < 90; i++) {\n double x_r = r * Math.cos(i);\n double y_r = r * Math.sin(i);\n if (x_r + x > W || y_r + y > H || y_r+y<0 ||x_r+x<0) {\n System.out.println(\"No\");\n flag=1;\n break;\n }\n }\n if(flag==0){\n System.out.println(\"Yes\");\n }\n }\n}", "public class Main {\n\n public static void main(String[] args) {\n Scanner a = new Scanner(System.in);\n int flag=0;\n int W = a.nextInt();\n int H = a.nextInt();\n int x = a.nextInt();\n int y = a.nextInt();\n int r = a.nextInt();\n for (double i = 0; i < 90; i++) {\n double x_r = r * Math.cos(i);\n double y_r = r * Math.sin(i);\n if (x_r + x > W || y_r + y > H || y_r+y<0 ||x_r+x<0) {\n System.out.println(\"No\");\n flag=1;\n break;\n }\n }\n if(flag==0){\n System.out.println(\"Yes\");\n }\n }\n}", "Main" ]
import java.util.Scanner; import java.lang.Math; public class Main { public static void main(String[] args) { Scanner a = new Scanner(System.in); int flag=0; int W = a.nextInt(); int H = a.nextInt(); int x = a.nextInt(); int y = a.nextInt(); int r = a.nextInt(); for (double i = 0; i < 90; i++) { double x_r = r * Math.cos(i); double y_r = r * Math.sin(i); if (x_r + x > W || y_r + y > H || y_r+y<0 ||x_r+x<0) { System.out.println("No"); flag=1; break; } } if(flag==0){ System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 41, 13, 18, 13, 13, 12, 13, 30, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 13, 17, 30, 4, 18, 13, 17, 12, 13, 30, 0, 13, 20, 4, 18, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 90, 8 ], [ 90, 9 ], [ 9, 10 ], [ 90, 11 ], [ 11, 12 ], [ 11, 13 ], [ 13, 14 ], [ 13, 15 ], [ 90, 16 ], [ 16, 17 ], [ 16, 18 ], [ 18, 19 ], [ 19, 20 ], [ 19, 21 ], [ 21, 22 ], [ 22, 23 ], [ 18, 24 ], [ 24, 25 ], [ 24, 26 ], [ 26, 27 ], [ 27, 28 ], [ 18, 29 ], [ 29, 30 ], [ 29, 31 ], [ 31, 32 ], [ 32, 33 ], [ 18, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 37, 38 ], [ 18, 39 ], [ 39, 40 ], [ 39, 41 ], [ 41, 42 ], [ 42, 43 ], [ 18, 44 ], [ 44, 45 ], [ 47, 46 ], [ 58, 47 ], [ 47, 48 ], [ 48, 49 ], [ 49, 50 ], [ 49, 51 ], [ 48, 52 ], [ 47, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 53, 57 ], [ 58, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 58, 62 ], [ 47, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 44, 68 ], [ 68, 69 ], [ 69, 70 ], [ 70, 71 ], [ 69, 72 ], [ 44, 73 ], [ 73, 74 ], [ 74, 75 ], [ 75, 76 ], [ 74, 77 ], [ 90, 78 ], [ 78, 79 ], [ 78, 80 ], [ 80, 81 ], [ 81, 82 ], [ 81, 83 ], [ 80, 84 ], [ 84, 85 ], [ 85, 86 ], [ 78, 87 ], [ 87, 88 ], [ 0, 89 ], [ 89, 90 ], [ 89, 91 ] ]
[ "\nimport java.io.*;\nimport java.util.*;\n\npublic class Main {\n\n\tpublic static void solver() {\n\n\t\tint W = cin.nextInt();\n\t\tint H = cin.nextInt();\n\t\tint x = cin.nextInt();\n\t\tint y = cin.nextInt();\n\t\tint r = cin.nextInt();\n\t\t\n\t\tif ( (x-r >= 0) && (x+r <= W) && (y-r >=0) && (y+r <=H) ) {\n\t\t\tcout.println(\"Yes\");\n\t\t} else {\n\t\t\tcout.println(\"No\");\n\t\t}\n\t\t\n\t}\n\t\t\n\tpublic static void main(String[] args) throws IOException {\n\n\t\tcin = new Scanner(System.in);\n\t\tMain.solver();\n\t}\n\n\tstatic Scanner cin;\n\tstatic PrintStream cout = System.out;//標準出力\n}", "import java.io.*;", "io.*", "java", "import java.util.*;", "util.*", "java", "public class Main {\n\n\tpublic static void solver() {\n\n\t\tint W = cin.nextInt();\n\t\tint H = cin.nextInt();\n\t\tint x = cin.nextInt();\n\t\tint y = cin.nextInt();\n\t\tint r = cin.nextInt();\n\t\t\n\t\tif ( (x-r >= 0) && (x+r <= W) && (y-r >=0) && (y+r <=H) ) {\n\t\t\tcout.println(\"Yes\");\n\t\t} else {\n\t\t\tcout.println(\"No\");\n\t\t}\n\t\t\n\t}\n\t\t\n\tpublic static void main(String[] args) throws IOException {\n\n\t\tcin = new Scanner(System.in);\n\t\tMain.solver();\n\t}\n\n\tstatic Scanner cin;\n\tstatic PrintStream cout = System.out;//標準出力\n}", "Main", "static Scanner cin;", "cin", "static PrintStream cout = System.out;//標準出力", "cout", "System.out", "System", "System.out", "public static void solver() {\n\n\t\tint W = cin.nextInt();\n\t\tint H = cin.nextInt();\n\t\tint x = cin.nextInt();\n\t\tint y = cin.nextInt();\n\t\tint r = cin.nextInt();\n\t\t\n\t\tif ( (x-r >= 0) && (x+r <= W) && (y-r >=0) && (y+r <=H) ) {\n\t\t\tcout.println(\"Yes\");\n\t\t} else {\n\t\t\tcout.println(\"No\");\n\t\t}\n\t\t\n\t}", "solver", "{\n\n\t\tint W = cin.nextInt();\n\t\tint H = cin.nextInt();\n\t\tint x = cin.nextInt();\n\t\tint y = cin.nextInt();\n\t\tint r = cin.nextInt();\n\t\t\n\t\tif ( (x-r >= 0) && (x+r <= W) && (y-r >=0) && (y+r <=H) ) {\n\t\t\tcout.println(\"Yes\");\n\t\t} else {\n\t\t\tcout.println(\"No\");\n\t\t}\n\t\t\n\t}", "int W = cin.nextInt();", "W", "cin.nextInt()", "cin.nextInt", "cin", "int H = cin.nextInt();", "H", "cin.nextInt()", "cin.nextInt", "cin", "int x = cin.nextInt();", "x", "cin.nextInt()", "cin.nextInt", "cin", "int y = cin.nextInt();", "y", "cin.nextInt()", "cin.nextInt", "cin", "int r = cin.nextInt();", "r", "cin.nextInt()", "cin.nextInt", "cin", "if ( (x-r >= 0) && (x+r <= W) && (y-r >=0) && (y+r <=H) ) {\n\t\t\tcout.println(\"Yes\");\n\t\t} else {\n\t\t\tcout.println(\"No\");\n\t\t}", "(x-r >= 0) && (x+r <= W) && (y-r >=0) && (y+r <=H)", "(y-r >=0)", "(x-r >= 0) && (x+r <= W) && (y-r >=0) && (y+r <=H)", "(x-r >= 0)", "x-r", "x", "r", "0", "(x+r <= W)", "x+r", "x", "r", "W", "(y-r >=0)", "y-r", "y", "r", "0", "(y+r <=H)", "y+r", "y", "r", "H", "{\n\t\t\tcout.println(\"Yes\");\n\t\t}", "cout.println(\"Yes\")", "cout.println", "cout", "\"Yes\"", "{\n\t\t\tcout.println(\"No\");\n\t\t}", "cout.println(\"No\")", "cout.println", "cout", "\"No\"", "public static void main(String[] args) throws IOException {\n\n\t\tcin = new Scanner(System.in);\n\t\tMain.solver();\n\t}", "main", "{\n\n\t\tcin = new Scanner(System.in);\n\t\tMain.solver();\n\t}", "cin = new Scanner(System.in)", "cin", "new Scanner(System.in)", "Main.solver()", "Main.solver", "Main", "String[] args", "args", "public class Main {\n\n\tpublic static void solver() {\n\n\t\tint W = cin.nextInt();\n\t\tint H = cin.nextInt();\n\t\tint x = cin.nextInt();\n\t\tint y = cin.nextInt();\n\t\tint r = cin.nextInt();\n\t\t\n\t\tif ( (x-r >= 0) && (x+r <= W) && (y-r >=0) && (y+r <=H) ) {\n\t\t\tcout.println(\"Yes\");\n\t\t} else {\n\t\t\tcout.println(\"No\");\n\t\t}\n\t\t\n\t}\n\t\t\n\tpublic static void main(String[] args) throws IOException {\n\n\t\tcin = new Scanner(System.in);\n\t\tMain.solver();\n\t}\n\n\tstatic Scanner cin;\n\tstatic PrintStream cout = System.out;//標準出力\n}", "public class Main {\n\n\tpublic static void solver() {\n\n\t\tint W = cin.nextInt();\n\t\tint H = cin.nextInt();\n\t\tint x = cin.nextInt();\n\t\tint y = cin.nextInt();\n\t\tint r = cin.nextInt();\n\t\t\n\t\tif ( (x-r >= 0) && (x+r <= W) && (y-r >=0) && (y+r <=H) ) {\n\t\t\tcout.println(\"Yes\");\n\t\t} else {\n\t\t\tcout.println(\"No\");\n\t\t}\n\t\t\n\t}\n\t\t\n\tpublic static void main(String[] args) throws IOException {\n\n\t\tcin = new Scanner(System.in);\n\t\tMain.solver();\n\t}\n\n\tstatic Scanner cin;\n\tstatic PrintStream cout = System.out;//標準出力\n}", "Main" ]
import java.io.*; import java.util.*; public class Main { public static void solver() { int W = cin.nextInt(); int H = cin.nextInt(); int x = cin.nextInt(); int y = cin.nextInt(); int r = cin.nextInt(); if ( (x-r >= 0) && (x+r <= W) && (y-r >=0) && (y+r <=H) ) { cout.println("Yes"); } else { cout.println("No"); } } public static void main(String[] args) throws IOException { cin = new Scanner(System.in); Main.solver(); } static Scanner cin; static PrintStream cout = System.out;//標準出力 }
[ 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, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 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 ], [ 42, 43 ], [ 41, 44 ], [ 44, 45 ], [ 44, 46 ], [ 8, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 50, 51 ], [ 49, 52 ], [ 52, 53 ], [ 52, 54 ], [ 8, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 58, 59 ], [ 57, 60 ], [ 60, 61 ], [ 60, 62 ], [ 8, 63 ], [ 63, 64 ], [ 66, 65 ], [ 77, 66 ], [ 66, 67 ], [ 67, 68 ], [ 68, 69 ], [ 68, 70 ], [ 67, 71 ], [ 66, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 76 ], [ 77, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 77, 81 ], [ 66, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 82, 86 ], [ 63, 87 ], [ 87, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 88, 93 ], [ 63, 94 ], [ 94, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 97, 99 ], [ 95, 100 ], [ 6, 101 ], [ 101, 102 ] ]
[ "import java.io.*;\n\nclass Main{\n\tpublic static void main(String[] args)throws IOException{\n\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\tString str = br.readLine();\n\tString[] line = str.split(\" \");\n\n\tint a = Integer.parseInt(line[0]);\n\tint b = Integer.parseInt(line[1]);\n\tint c = Integer.parseInt(line[2]);\n\tint d = Integer.parseInt(line[3]);\n\tint e = Integer.parseInt(line[4]);\n\t\n\tif (c - e >= 0 && c + e <= a && d - e >=0 && d + e <= b){\n\tSystem.out.println(\"Yes\");\n\t}\n\n\telse{\n\tSystem.out.println(\"No\");\n\t}\n }\n}", "import java.io.*;", "io.*", "java", "class Main{\n\tpublic static void main(String[] args)throws IOException{\n\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\tString str = br.readLine();\n\tString[] line = str.split(\" \");\n\n\tint a = Integer.parseInt(line[0]);\n\tint b = Integer.parseInt(line[1]);\n\tint c = Integer.parseInt(line[2]);\n\tint d = Integer.parseInt(line[3]);\n\tint e = Integer.parseInt(line[4]);\n\t\n\tif (c - e >= 0 && c + e <= a && d - e >=0 && d + e <= b){\n\tSystem.out.println(\"Yes\");\n\t}\n\n\telse{\n\tSystem.out.println(\"No\");\n\t}\n }\n}", "Main", "public static void main(String[] args)throws IOException{\n\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\tString str = br.readLine();\n\tString[] line = str.split(\" \");\n\n\tint a = Integer.parseInt(line[0]);\n\tint b = Integer.parseInt(line[1]);\n\tint c = Integer.parseInt(line[2]);\n\tint d = Integer.parseInt(line[3]);\n\tint e = Integer.parseInt(line[4]);\n\t\n\tif (c - e >= 0 && c + e <= a && d - e >=0 && d + e <= b){\n\tSystem.out.println(\"Yes\");\n\t}\n\n\telse{\n\tSystem.out.println(\"No\");\n\t}\n }", "main", "{\n\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\tString str = br.readLine();\n\tString[] line = str.split(\" \");\n\n\tint a = Integer.parseInt(line[0]);\n\tint b = Integer.parseInt(line[1]);\n\tint c = Integer.parseInt(line[2]);\n\tint d = Integer.parseInt(line[3]);\n\tint e = Integer.parseInt(line[4]);\n\t\n\tif (c - e >= 0 && c + e <= a && d - e >=0 && d + e <= b){\n\tSystem.out.println(\"Yes\");\n\t}\n\n\telse{\n\tSystem.out.println(\"No\");\n\t}\n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String str = br.readLine();", "str", "br.readLine()", "br.readLine", "br", "String[] line = str.split(\" \");", "line", "str.split(\" \")", "str.split", "str", "\" \"", "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 c = Integer.parseInt(line[2]);", "c", "Integer.parseInt(line[2])", "Integer.parseInt", "Integer", "line[2]", "line", "2", "int d = Integer.parseInt(line[3]);", "d", "Integer.parseInt(line[3])", "Integer.parseInt", "Integer", "line[3]", "line", "3", "int e = Integer.parseInt(line[4]);", "e", "Integer.parseInt(line[4])", "Integer.parseInt", "Integer", "line[4]", "line", "4", "if (c - e >= 0 && c + e <= a && d - e >=0 && d + e <= b){\n\tSystem.out.println(\"Yes\");\n\t}\n\n\telse{\n\tSystem.out.println(\"No\");\n\t}", "c - e >= 0 && c + e <= a && d - e >=0 && d + e <= b", "d - e >=0", "c - e >= 0 && c + e <= a && d - e >=0 && d + e <= b", "c - e >= 0", "c - e", "c", "e", "0", "c + e <= a", "c + e", "c", "e", "a", "d - e >=0", "d - e", "d", "e", "0", "d + e <= b", "d + e", "d", "e", "b", "{\n\tSystem.out.println(\"Yes\");\n\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\tSystem.out.println(\"No\");\n\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "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 str = br.readLine(); String[] line = str.split(" "); int a = Integer.parseInt(line[0]); int b = Integer.parseInt(line[1]); int c = Integer.parseInt(line[2]); int d = Integer.parseInt(line[3]); int e = Integer.parseInt(line[4]); if (c - e >= 0 && c + e <= a && d - e >=0 && d + e <= b){ System.out.println("Yes"); } else{ System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 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, 18, 13, 17, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 14, 2, 2, 2, 2, 13, 13, 2, 13, 13, 2, 13, 17, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 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 ], [ 42, 43 ], [ 41, 44 ], [ 44, 45 ], [ 44, 46 ], [ 8, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 50, 51 ], [ 49, 52 ], [ 52, 53 ], [ 52, 54 ], [ 8, 55 ], [ 55, 56 ], [ 55, 57 ], [ 57, 58 ], [ 58, 59 ], [ 57, 60 ], [ 60, 61 ], [ 60, 62 ], [ 8, 63 ], [ 63, 64 ], [ 63, 65 ], [ 65, 66 ], [ 65, 67 ], [ 8, 68 ], [ 68, 69 ], [ 68, 70 ], [ 70, 71 ], [ 70, 72 ], [ 8, 73 ], [ 73, 74 ], [ 73, 75 ], [ 75, 76 ], [ 75, 77 ], [ 8, 78 ], [ 78, 79 ], [ 78, 80 ], [ 80, 81 ], [ 80, 82 ], [ 8, 83 ], [ 83, 84 ], [ 86, 85 ], [ 93, 86 ], [ 86, 87 ], [ 87, 88 ], [ 87, 89 ], [ 86, 90 ], [ 90, 91 ], [ 90, 92 ], [ 93, 93 ], [ 93, 94 ], [ 93, 95 ], [ 86, 96 ], [ 96, 97 ], [ 96, 98 ], [ 83, 99 ], [ 99, 100 ], [ 100, 101 ], [ 101, 102 ], [ 102, 103 ], [ 102, 104 ], [ 100, 105 ], [ 83, 106 ], [ 106, 107 ], [ 107, 108 ], [ 108, 109 ], [ 109, 110 ], [ 109, 111 ], [ 107, 112 ], [ 6, 113 ], [ 113, 114 ] ]
[ "\nimport java.io.*;\n\nclass Main {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString s = br.readLine();\n\t\t//String s = \"5 4 2 2 1\";\n\t\tString[] str = s.split(\" \");\n\t\tint w = Integer.parseInt(str[0]);\n\t\tint h = Integer.parseInt(str[1]);\n\t\tint x = Integer.parseInt(str[2]);\n\t\tint y = Integer.parseInt(str[3]);\n\t\tint r = Integer.parseInt(str[4]);\n\n\t\tint a = x + r;\n\t\tint b = y + r;\n\t\tint c = x - r;\n\t\tint d = y - r;\n\t\tif (a <= w && b <= h && c >= 0 && d >= 0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "import java.io.*;", "io.*", "java", "class Main {\n\tpublic static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString s = br.readLine();\n\t\t//String s = \"5 4 2 2 1\";\n\t\tString[] str = s.split(\" \");\n\t\tint w = Integer.parseInt(str[0]);\n\t\tint h = Integer.parseInt(str[1]);\n\t\tint x = Integer.parseInt(str[2]);\n\t\tint y = Integer.parseInt(str[3]);\n\t\tint r = Integer.parseInt(str[4]);\n\n\t\tint a = x + r;\n\t\tint b = y + r;\n\t\tint c = x - r;\n\t\tint d = y - r;\n\t\tif (a <= w && b <= h && c >= 0 && d >= 0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) throws IOException {\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString s = br.readLine();\n\t\t//String s = \"5 4 2 2 1\";\n\t\tString[] str = s.split(\" \");\n\t\tint w = Integer.parseInt(str[0]);\n\t\tint h = Integer.parseInt(str[1]);\n\t\tint x = Integer.parseInt(str[2]);\n\t\tint y = Integer.parseInt(str[3]);\n\t\tint r = Integer.parseInt(str[4]);\n\n\t\tint a = x + r;\n\t\tint b = y + r;\n\t\tint c = x - r;\n\t\tint d = y - r;\n\t\tif (a <= w && b <= h && c >= 0 && d >= 0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}", "main", "{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString s = br.readLine();\n\t\t//String s = \"5 4 2 2 1\";\n\t\tString[] str = s.split(\" \");\n\t\tint w = Integer.parseInt(str[0]);\n\t\tint h = Integer.parseInt(str[1]);\n\t\tint x = Integer.parseInt(str[2]);\n\t\tint y = Integer.parseInt(str[3]);\n\t\tint r = Integer.parseInt(str[4]);\n\n\t\tint a = x + r;\n\t\tint b = y + r;\n\t\tint c = x - r;\n\t\tint d = y - r;\n\t\tif (a <= w && b <= h && c >= 0 && d >= 0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\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 s = br.readLine();", "s", "br.readLine()", "br.readLine", "br", "String[] str = s.split(\" \");", "str", "s.split(\" \")", "s.split", "s", "\" \"", "int w = Integer.parseInt(str[0]);", "w", "Integer.parseInt(str[0])", "Integer.parseInt", "Integer", "str[0]", "str", "0", "int h = Integer.parseInt(str[1]);", "h", "Integer.parseInt(str[1])", "Integer.parseInt", "Integer", "str[1]", "str", "1", "int x = Integer.parseInt(str[2]);", "x", "Integer.parseInt(str[2])", "Integer.parseInt", "Integer", "str[2]", "str", "2", "int y = Integer.parseInt(str[3]);", "y", "Integer.parseInt(str[3])", "Integer.parseInt", "Integer", "str[3]", "str", "3", "int r = Integer.parseInt(str[4]);", "r", "Integer.parseInt(str[4])", "Integer.parseInt", "Integer", "str[4]", "str", "4", "int a = x + r;", "a", "x + r", "x", "r", "int b = y + r;", "b", "y + r", "y", "r", "int c = x - r;", "c", "x - r", "x", "r", "int d = y - r;", "d", "y - r", "y", "r", "if (a <= w && b <= h && c >= 0 && d >= 0) {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t} else {\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "a <= w && b <= h && c >= 0 && d >= 0", "c >= 0", "a <= w && b <= h && c >= 0 && d >= 0", "a <= w", "a", "w", "b <= h", "b", "h", "c >= 0", "c", "0", "d >= 0", "d", "0", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "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 s = br.readLine(); //String s = "5 4 2 2 1"; String[] str = s.split(" "); int w = Integer.parseInt(str[0]); int h = Integer.parseInt(str[1]); int x = Integer.parseInt(str[2]); int y = Integer.parseInt(str[3]); int r = Integer.parseInt(str[4]); int a = x + r; int b = y + r; int c = x - r; int d = y - r; if (a <= w && b <= h && c >= 0 && d >= 0) { System.out.println("Yes"); } else { System.out.println("No"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 17, 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, 41, 13, 18, 13, 17, 41, 13, 18, 13, 17, 41, 13, 18, 13, 17, 41, 13, 18, 13, 17, 41, 13, 18, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 125, 11 ], [ 125, 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 ], [ 33, 34 ], [ 33, 35 ], [ 14, 36 ], [ 36, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 36, 41 ], [ 41, 42 ], [ 41, 43 ], [ 43, 44 ], [ 43, 45 ], [ 36, 46 ], [ 46, 47 ], [ 47, 48 ], [ 36, 49 ], [ 50, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 55, 56 ], [ 56, 57 ], [ 55, 58 ], [ 58, 59 ], [ 58, 60 ], [ 14, 61 ], [ 61, 62 ], [ 61, 63 ], [ 63, 64 ], [ 63, 65 ], [ 14, 66 ], [ 66, 67 ], [ 66, 68 ], [ 68, 69 ], [ 68, 70 ], [ 14, 71 ], [ 71, 72 ], [ 71, 73 ], [ 73, 74 ], [ 73, 75 ], [ 14, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 78, 80 ], [ 14, 81 ], [ 81, 82 ], [ 81, 83 ], [ 83, 84 ], [ 83, 85 ], [ 14, 86 ], [ 86, 87 ], [ 89, 88 ], [ 100, 89 ], [ 89, 90 ], [ 90, 91 ], [ 91, 92 ], [ 91, 93 ], [ 90, 94 ], [ 89, 95 ], [ 95, 96 ], [ 96, 97 ], [ 96, 98 ], [ 95, 99 ], [ 100, 100 ], [ 100, 101 ], [ 101, 102 ], [ 101, 103 ], [ 100, 104 ], [ 89, 105 ], [ 105, 106 ], [ 106, 107 ], [ 106, 108 ], [ 105, 109 ], [ 86, 110 ], [ 110, 111 ], [ 111, 112 ], [ 112, 113 ], [ 112, 114 ], [ 110, 115 ], [ 86, 116 ], [ 116, 117 ], [ 117, 118 ], [ 118, 119 ], [ 118, 120 ], [ 116, 121 ], [ 12, 122 ], [ 122, 123 ], [ 0, 124 ], [ 124, 125 ], [ 124, 126 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\n\npublic class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString str = br.readLine();\n\t\tString strArray[] = str.split(\" \", 0);\n\t\tint num[] = new int[strArray.length];\n\n\t\tfor(int i=0; i<strArray.length; i++){\n\t\t\tnum[i] = Integer.parseInt(strArray[i]);\n\t\t}\n\n\t\tint W = num[0];\n\t\tint H = num[1];\n\t\tint x = num[2];\n\t\tint y = num[3];\n\t\tint r = num[4];\n\t\t\n\t\tif(x+r <= W && x-r >= 0 && y+r <= H && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\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\n\t\tString str = br.readLine();\n\t\tString strArray[] = str.split(\" \", 0);\n\t\tint num[] = new int[strArray.length];\n\n\t\tfor(int i=0; i<strArray.length; i++){\n\t\t\tnum[i] = Integer.parseInt(strArray[i]);\n\t\t}\n\n\t\tint W = num[0];\n\t\tint H = num[1];\n\t\tint x = num[2];\n\t\tint y = num[3];\n\t\tint r = num[4];\n\t\t\n\t\tif(x+r <= W && x-r >= 0 && y+r <= H && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n}", "Main", "public static void main(String[] args) throws IOException{\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString str = br.readLine();\n\t\tString strArray[] = str.split(\" \", 0);\n\t\tint num[] = new int[strArray.length];\n\n\t\tfor(int i=0; i<strArray.length; i++){\n\t\t\tnum[i] = Integer.parseInt(strArray[i]);\n\t\t}\n\n\t\tint W = num[0];\n\t\tint H = num[1];\n\t\tint x = num[2];\n\t\tint y = num[3];\n\t\tint r = num[4];\n\t\t\n\t\tif(x+r <= W && x-r >= 0 && y+r <= H && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}", "main", "{\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString str = br.readLine();\n\t\tString strArray[] = str.split(\" \", 0);\n\t\tint num[] = new int[strArray.length];\n\n\t\tfor(int i=0; i<strArray.length; i++){\n\t\t\tnum[i] = Integer.parseInt(strArray[i]);\n\t\t}\n\n\t\tint W = num[0];\n\t\tint H = num[1];\n\t\tint x = num[2];\n\t\tint y = num[3];\n\t\tint r = num[4];\n\t\t\n\t\tif(x+r <= W && x-r >= 0 && y+r <= H && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\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 strArray[] = str.split(\" \", 0);", "strArray", "str.split(\" \", 0)", "str.split", "str", "\" \"", "0", "int num[] = new int[strArray.length];", "num", "new int[strArray.length]", "strArray.length", "strArray", "strArray.length", "for(int i=0; i<strArray.length; i++){\n\t\t\tnum[i] = Integer.parseInt(strArray[i]);\n\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\tnum[i] = Integer.parseInt(strArray[i]);\n\t\t}", "{\n\t\t\tnum[i] = Integer.parseInt(strArray[i]);\n\t\t}", "num[i] = Integer.parseInt(strArray[i])", "num[i]", "num", "i", "Integer.parseInt(strArray[i])", "Integer.parseInt", "Integer", "strArray[i]", "strArray", "i", "int W = num[0];", "W", "num[0]", "num", "0", "int H = num[1];", "H", "num[1]", "num", "1", "int x = num[2];", "x", "num[2]", "num", "2", "int y = num[3];", "y", "num[3]", "num", "3", "int r = num[4];", "r", "num[4]", "num", "4", "if(x+r <= W && x-r >= 0 && y+r <= H && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");", "x+r <= W && x-r >= 0 && y+r <= H && y-r >= 0", "y+r <= H", "x+r <= W && x-r >= 0 && y+r <= H && y-r >= 0", "x+r <= W", "x+r", "x", "r", "W", "x-r >= 0", "x-r", "x", "r", "0", "y+r <= H", "y+r", "y", "r", "H", "y-r >= 0", "y-r", "y", "r", "0", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) throws IOException{\n\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\n\t\tString str = br.readLine();\n\t\tString strArray[] = str.split(\" \", 0);\n\t\tint num[] = new int[strArray.length];\n\n\t\tfor(int i=0; i<strArray.length; i++){\n\t\t\tnum[i] = Integer.parseInt(strArray[i]);\n\t\t}\n\n\t\tint W = num[0];\n\t\tint H = num[1];\n\t\tint x = num[2];\n\t\tint y = num[3];\n\t\tint r = num[4];\n\t\t\n\t\tif(x+r <= W && x-r >= 0 && y+r <= H && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\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\n\t\tString str = br.readLine();\n\t\tString strArray[] = str.split(\" \", 0);\n\t\tint num[] = new int[strArray.length];\n\n\t\tfor(int i=0; i<strArray.length; i++){\n\t\t\tnum[i] = Integer.parseInt(strArray[i]);\n\t\t}\n\n\t\tint W = num[0];\n\t\tint H = num[1];\n\t\tint x = num[2];\n\t\tint y = num[3];\n\t\tint r = num[4];\n\t\t\n\t\tif(x+r <= W && x-r >= 0 && y+r <= H && y-r >= 0)\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\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 strArray[] = str.split(" ", 0); int num[] = new int[strArray.length]; for(int i=0; i<strArray.length; i++){ num[i] = Integer.parseInt(strArray[i]); } int W = num[0]; int H = num[1]; int x = num[2]; int y = num[3]; int r = num[4]; if(x+r <= W && x-r >= 0 && y+r <= H && y-r >= 0) System.out.println("Yes"); else System.out.println("No"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 14, 2, 2, 2, 2, 13, 13, 2, 13, 17, 2, 13, 13, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 90, 5 ], [ 90, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 39, 41 ], [ 8, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 44, 46 ], [ 8, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 49, 51 ], [ 8, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 8, 57 ], [ 57, 58 ], [ 60, 59 ], [ 67, 60 ], [ 60, 61 ], [ 61, 62 ], [ 61, 63 ], [ 60, 64 ], [ 64, 65 ], [ 64, 66 ], [ 67, 67 ], [ 67, 68 ], [ 67, 69 ], [ 60, 70 ], [ 70, 71 ], [ 70, 72 ], [ 57, 73 ], [ 73, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 74, 79 ], [ 57, 80 ], [ 80, 81 ], [ 81, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 81, 86 ], [ 6, 87 ], [ 87, 88 ], [ 0, 89 ], [ 89, 90 ], [ 89, 91 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tScanner sc = new Scanner(System.in);\n\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tint rs=x+r;\n\t\tint ls=x-r;\n\t\tint u=y+r;\n\t\tint d=y-r;\n\t\tif(W >= rs && ls >= 0 && H >= u && d >= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tScanner sc = new Scanner(System.in);\n\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tint rs=x+r;\n\t\tint ls=x-r;\n\t\tint u=y+r;\n\t\tint d=y-r;\n\t\tif(W >= rs && ls >= 0 && H >= u && d >= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "Main", "public static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tScanner sc = new Scanner(System.in);\n\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tint rs=x+r;\n\t\tint ls=x-r;\n\t\tint u=y+r;\n\t\tint d=y-r;\n\t\tif(W >= rs && ls >= 0 && H >= u && d >= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}", "main", "{\n\t\t// TODO Auto-generated method stub\n\t\tScanner sc = new Scanner(System.in);\n\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tint rs=x+r;\n\t\tint ls=x-r;\n\t\tint u=y+r;\n\t\tint d=y-r;\n\t\tif(W >= rs && ls >= 0 && H >= u && d >= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int W = sc.nextInt();", "W", "sc.nextInt()", "sc.nextInt", "sc", "int H = sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "int rs=x+r;", "rs", "x+r", "x", "r", "int ls=x-r;", "ls", "x-r", "x", "r", "int u=y+r;", "u", "y+r", "y", "r", "int d=y-r;", "d", "y-r", "y", "r", "if(W >= rs && ls >= 0 && H >= u && d >= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "W >= rs && ls >= 0 && H >= u && d >= 0", "H >= u", "W >= rs && ls >= 0 && H >= u && d >= 0", "W >= rs", "W", "rs", "ls >= 0", "ls", "0", "H >= u", "H", "u", "d >= 0", "d", "0", "{\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tScanner sc = new Scanner(System.in);\n\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tint rs=x+r;\n\t\tint ls=x-r;\n\t\tint u=y+r;\n\t\tint d=y-r;\n\t\tif(W >= rs && ls >= 0 && H >= u && d >= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "public class Main {\n\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tScanner sc = new Scanner(System.in);\n\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\tint rs=x+r;\n\t\tint ls=x-r;\n\t\tint u=y+r;\n\t\tint d=y-r;\n\t\tif(W >= rs && ls >= 0 && H >= u && d >= 0){\n\t\t\t\tSystem.out.println(\"Yes\");\n\t\t}else{\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t}\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); int W = sc.nextInt(); int H = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int r = sc.nextInt(); int rs=x+r; int ls=x-r; int u=y+r; int d=y-r; if(W >= rs && ls >= 0 && H >= u && d >= 0){ System.out.println("Yes"); }else{ System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 13, 17, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 2, 13, 17, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 38, 39 ], [ 39, 40 ], [ 40, 41 ], [ 40, 42 ], [ 39, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 43, 47 ], [ 38, 48 ], [ 48, 49 ], [ 49, 50 ], [ 49, 51 ], [ 48, 52 ], [ 37, 53 ], [ 53, 54 ], [ 54, 55 ], [ 55, 56 ], [ 56, 57 ], [ 56, 58 ], [ 54, 59 ], [ 37, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 63, 65 ], [ 62, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 66, 70 ], [ 61, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 71, 75 ], [ 60, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 79, 81 ], [ 77, 82 ], [ 60, 83 ], [ 83, 84 ], [ 86, 85 ], [ 97, 86 ], [ 86, 87 ], [ 87, 88 ], [ 88, 89 ], [ 88, 90 ], [ 87, 91 ], [ 86, 92 ], [ 92, 93 ], [ 93, 94 ], [ 93, 95 ], [ 92, 96 ], [ 97, 97 ], [ 97, 98 ], [ 98, 99 ], [ 98, 100 ], [ 97, 101 ], [ 86, 102 ], [ 102, 103 ], [ 103, 104 ], [ 103, 105 ], [ 102, 106 ], [ 83, 107 ], [ 107, 108 ], [ 108, 109 ], [ 109, 110 ], [ 110, 111 ], [ 110, 112 ], [ 108, 113 ], [ 83, 114 ], [ 114, 115 ], [ 115, 116 ], [ 116, 117 ], [ 117, 118 ], [ 117, 119 ], [ 115, 120 ], [ 6, 121 ], [ 121, 122 ] ]
[ "import java.util.*;\n\nclass Main{\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\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\n\t\tif(x < 0 && x + r <= 0 || x + r > X){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(y < 0 && y + r <= 0 || y + r > Y){\n\t\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(x + r < 0 || x + r > X || y + r < 0 || y + r > Y){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n}", "import java.util.*;", "util.*", "java", "class Main{\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\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\n\t\tif(x < 0 && x + r <= 0 || x + r > X){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(y < 0 && y + r <= 0 || y + r > Y){\n\t\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(x + r < 0 || x + r > X || y + r < 0 || y + r > Y){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\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\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\n\t\tif(x < 0 && x + r <= 0 || x + r > X){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(y < 0 && y + r <= 0 || y + r > Y){\n\t\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(x + r < 0 || x + r > X || y + r < 0 || y + r > Y){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\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\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\n\t\tif(x < 0 && x + r <= 0 || x + r > X){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(y < 0 && y + r <= 0 || y + r > Y){\n\t\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(x + r < 0 || x + r > X || y + r < 0 || y + r > Y){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\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", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "int y = scan.nextInt();", "y", "scan.nextInt()", "scan.nextInt", "scan", "int r = scan.nextInt();", "r", "scan.nextInt()", "scan.nextInt", "scan", "if(x < 0 && x + r <= 0 || x + r > X){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(y < 0 && y + r <= 0 || y + r > Y){\n\t\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(x + r < 0 || x + r > X || y + r < 0 || y + r > Y){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "x < 0 && x + r <= 0 || x + r > X", "x < 0 && x + r <= 0", "x < 0", "x", "0", "x + r <= 0", "x + r", "x", "r", "0", "x + r > X", "x + r", "x", "r", "X", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(y < 0 && y + r <= 0 || y + r > Y){\n\t\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse if(x + r < 0 || x + r > X || y + r < 0 || y + r > Y){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "y < 0 && y + r <= 0 || y + r > Y", "y < 0 && y + r <= 0", "y < 0", "y", "0", "y + r <= 0", "y + r", "y", "r", "0", "y + r > Y", "y + r", "y", "r", "Y", "{\n\t\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(x + r < 0 || x + r > X || y + r < 0 || y + r > Y){\n\t\t\tSystem.out.println(\"No\");\n\t\t}\n\t\telse{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "x + r < 0 || x + r > X || y + r < 0 || y + r > Y", "y + r < 0", "x + r < 0 || x + r > X || y + r < 0 || y + r > Y", "x + r < 0", "x + r", "x", "r", "0", "x + r > X", "x + r", "x", "r", "X", "y + r < 0", "y + r", "y", "r", "0", "y + r > Y", "y + r", "y", "r", "Y", "{\n\t\t\tSystem.out.println(\"No\");\n\t\t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String args[]", "args" ]
import java.util.*; class Main{ public static void main(String args[]){ Scanner scan = new Scanner(System.in); int X = scan.nextInt(); int Y = scan.nextInt(); int x = scan.nextInt(); int y = scan.nextInt(); int r = scan.nextInt(); if(x < 0 && x + r <= 0 || x + r > X){ System.out.println("No"); } else if(y < 0 && y + r <= 0 || y + r > Y){ System.out.println("No"); } else if(x + r < 0 || x + r > X || y + r < 0 || y + r > Y){ System.out.println("No"); } else{ System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 4, 18, 20, 23, 13, 12, 13, 30, 4, 18, 18, 13, 13, 17, 12, 13, 30, 29, 2, 2, 13, 13, 13, 23, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 2, 2, 2, 13, 13, 17, 2, 17, 2, 13, 13, 12, 13, 30, 41, 13, 4, 18, 20, 4, 18, 18, 13, 13, 2, 2, 2, 2, 2, 13, 17, 17, 2, 2, 13, 17, 17, 17, 2, 2, 13, 17, 17, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 13, 13, 17, 8, 2, 13, 13, 17, 17, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 2, 13, 13, 2, 13, 13, 17, 17, 12, 13, 30, 41, 13, 20, 41, 13, 20, 17, 0, 18, 13, 17, 4, 18, 13, 0, 18, 13, 17, 4, 18, 13, 0, 18, 13, 17, 4, 18, 13, 11, 1, 41, 13, 17, 2, 13, 2, 18, 13, 13, 17, 1, 40, 13, 30, 30, 11, 1, 41, 13, 2, 13, 17, 2, 13, 18, 13, 13, 1, 40, 13, 30, 30, 14, 2, 18, 13, 13, 18, 13, 13, 30, 41, 13, 18, 13, 13, 0, 18, 13, 13, 18, 13, 13, 0, 18, 13, 13, 13, 4, 18, 18, 13, 13, 2, 2, 2, 2, 18, 13, 17, 17, 18, 13, 17, 17, 18, 13, 17, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 17, 17, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 340, 5 ], [ 340, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 10, 11 ], [ 6, 12 ], [ 12, 13 ], [ 340, 14 ], [ 14, 15 ], [ 14, 16 ], [ 16, 17 ], [ 17, 18 ], [ 18, 19 ], [ 19, 20 ], [ 19, 21 ], [ 17, 22 ], [ 340, 23 ], [ 23, 24 ], [ 23, 25 ], [ 25, 26 ], [ 26, 27 ], [ 28, 28 ], [ 28, 29 ], [ 28, 30 ], [ 28, 31 ], [ 23, 32 ], [ 32, 33 ], [ 340, 34 ], [ 34, 35 ], [ 34, 36 ], [ 36, 37 ], [ 37, 38 ], [ 37, 39 ], [ 36, 40 ], [ 40, 41 ], [ 40, 42 ], [ 42, 43 ], [ 43, 44 ], [ 36, 45 ], [ 45, 46 ], [ 45, 47 ], [ 47, 48 ], [ 48, 49 ], [ 36, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 50, 55 ], [ 56, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 56, 60 ], [ 56, 61 ], [ 61, 62 ], [ 61, 63 ], [ 63, 64 ], [ 63, 65 ], [ 340, 66 ], [ 66, 67 ], [ 66, 68 ], [ 68, 69 ], [ 69, 70 ], [ 69, 71 ], [ 71, 72 ], [ 72, 73 ], [ 68, 74 ], [ 74, 75 ], [ 75, 76 ], [ 76, 77 ], [ 76, 78 ], [ 74, 79 ], [ 82, 80 ], [ 80, 81 ], [ 87, 82 ], [ 82, 83 ], [ 83, 84 ], [ 83, 85 ], [ 82, 86 ], [ 87, 87 ], [ 87, 88 ], [ 88, 89 ], [ 88, 90 ], [ 87, 91 ], [ 80, 92 ], [ 82, 93 ], [ 93, 94 ], [ 94, 95 ], [ 94, 96 ], [ 93, 97 ], [ 340, 98 ], [ 98, 99 ], [ 98, 100 ], [ 100, 101 ], [ 101, 102 ], [ 101, 103 ], [ 100, 104 ], [ 104, 105 ], [ 104, 106 ], [ 106, 107 ], [ 107, 108 ], [ 100, 109 ], [ 109, 110 ], [ 109, 111 ], [ 111, 112 ], [ 112, 113 ], [ 100, 114 ], [ 114, 115 ], [ 115, 116 ], [ 116, 117 ], [ 116, 118 ], [ 114, 119 ], [ 119, 120 ], [ 120, 121 ], [ 120, 122 ], [ 119, 123 ], [ 119, 124 ], [ 124, 125 ], [ 125, 126 ], [ 125, 127 ], [ 124, 128 ], [ 124, 129 ], [ 340, 130 ], [ 130, 131 ], [ 130, 132 ], [ 132, 133 ], [ 133, 134 ], [ 133, 135 ], [ 132, 136 ], [ 136, 137 ], [ 136, 138 ], [ 138, 139 ], [ 139, 140 ], [ 132, 141 ], [ 141, 142 ], [ 141, 143 ], [ 143, 144 ], [ 144, 145 ], [ 132, 146 ], [ 146, 147 ], [ 146, 148 ], [ 148, 149 ], [ 149, 150 ], [ 132, 151 ], [ 151, 152 ], [ 152, 153 ], [ 153, 154 ], [ 153, 155 ], [ 151, 156 ], [ 156, 157 ], [ 157, 158 ], [ 158, 159 ], [ 158, 160 ], [ 157, 161 ], [ 161, 162 ], [ 161, 163 ], [ 156, 164 ], [ 156, 165 ], [ 340, 166 ], [ 166, 167 ], [ 166, 168 ], [ 168, 169 ], [ 169, 170 ], [ 169, 171 ], [ 168, 172 ], [ 172, 173 ], [ 172, 174 ], [ 168, 176 ], [ 176, 177 ], [ 177, 178 ], [ 177, 179 ], [ 176, 180 ], [ 180, 181 ], [ 181, 182 ], [ 168, 183 ], [ 183, 184 ], [ 184, 185 ], [ 184, 186 ], [ 183, 187 ], [ 187, 188 ], [ 188, 189 ], [ 168, 190 ], [ 190, 191 ], [ 191, 192 ], [ 191, 193 ], [ 190, 194 ], [ 194, 195 ], [ 195, 196 ], [ 168, 197 ], [ 197, 198 ], [ 198, 199 ], [ 199, 200 ], [ 199, 201 ], [ 197, 202 ], [ 202, 203 ], [ 202, 204 ], [ 204, 205 ], [ 205, 206 ], [ 205, 207 ], [ 204, 208 ], [ 197, 209 ], [ 209, 210 ], [ 210, 211 ], [ 197, 212 ], [ 213, 213 ], [ 213, 214 ], [ 214, 215 ], [ 215, 216 ], [ 216, 217 ], [ 216, 218 ], [ 218, 219 ], [ 218, 220 ], [ 214, 221 ], [ 221, 222 ], [ 221, 223 ], [ 223, 224 ], [ 223, 225 ], [ 214, 226 ], [ 226, 227 ], [ 227, 228 ], [ 214, 229 ], [ 230, 230 ], [ 230, 231 ], [ 231, 232 ], [ 232, 233 ], [ 233, 234 ], [ 233, 235 ], [ 232, 236 ], [ 236, 237 ], [ 236, 238 ], [ 231, 239 ], [ 239, 240 ], [ 240, 241 ], [ 240, 242 ], [ 242, 243 ], [ 242, 244 ], [ 239, 245 ], [ 245, 246 ], [ 246, 247 ], [ 246, 248 ], [ 245, 249 ], [ 249, 250 ], [ 249, 251 ], [ 239, 252 ], [ 252, 253 ], [ 253, 254 ], [ 253, 255 ], [ 252, 256 ], [ 168, 257 ], [ 257, 258 ], [ 258, 259 ], [ 259, 260 ], [ 259, 261 ], [ 257, 262 ], [ 265, 263 ], [ 263, 264 ], [ 264, 265 ], [ 265, 266 ], [ 266, 267 ], [ 266, 268 ], [ 265, 269 ], [ 264, 270 ], [ 270, 271 ], [ 270, 272 ], [ 263, 273 ], [ 265, 274 ], [ 274, 275 ], [ 274, 276 ], [ 340, 277 ], [ 277, 278 ], [ 277, 279 ], [ 279, 280 ], [ 280, 281 ], [ 280, 282 ], [ 279, 283 ], [ 283, 284 ], [ 283, 285 ], [ 285, 286 ], [ 286, 287 ], [ 279, 288 ], [ 288, 289 ], [ 288, 290 ], [ 290, 291 ], [ 291, 292 ], [ 279, 293 ], [ 293, 294 ], [ 293, 295 ], [ 295, 296 ], [ 296, 297 ], [ 279, 298 ], [ 298, 299 ], [ 298, 300 ], [ 300, 301 ], [ 301, 302 ], [ 279, 303 ], [ 303, 304 ], [ 303, 305 ], [ 305, 306 ], [ 306, 307 ], [ 279, 308 ], [ 308, 309 ], [ 309, 310 ], [ 310, 311 ], [ 310, 312 ], [ 308, 313 ], [ 313, 314 ], [ 314, 315 ], [ 327, 316 ], [ 316, 317 ], [ 317, 318 ], [ 318, 319 ], [ 318, 320 ], [ 317, 321 ], [ 316, 322 ], [ 322, 323 ], [ 323, 324 ], [ 323, 325 ], [ 322, 326 ], [ 327, 327 ], [ 327, 328 ], [ 328, 329 ], [ 328, 330 ], [ 327, 331 ], [ 314, 332 ], [ 332, 333 ], [ 333, 334 ], [ 333, 335 ], [ 332, 336 ], [ 313, 337 ], [ 313, 338 ], [ 0, 339 ], [ 339, 340 ], [ 339, 341 ] ]
[ "import java.util.*;\n\npublic class Main{\n\tpublic static void main(String[] args){\n\t\t//new Main().printHelloWorld();\n\t\t//System.out.println(new Main().ITP1_1_B(Integer.parseInt(new Scanner(System.in).next())));\n\t\t//new Main().ITP1_1_C();\n\t\t//new Main().ITP1_1_D();\n\t\t//new Main().ITP1_2_A();\n\t\t//new Main().ITP1_2_B();\n\t\t//new Main().ITP1_2_C();\n\t\tnew Main().ITP1_2_D();\n\t}\n\n\tpublic void printHelloWorld(){\n\t\tSystem.out.println(\"Hello World\");\n\t}\n\n\tpublic int ITP1_1_B(int x){\n\t\treturn x*x*x;\n\t}\n\n\tpublic void ITP1_1_C(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tSystem.out.println(a*b + \" \" + 2*(a+b));\n\t}\n\n\tpublic void ITP1_1_D(){\n\t\tint seconds = new Scanner(System.in).nextInt();\n\t\tSystem.out.println(seconds/3600 + \":\" + (seconds%3600)/60 + \":\" + (seconds%3600)%60);\n\t}\n\n\tpublic void ITP1_2_A(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tSystem.out.println((a==b)?\"a == b\":(a > b)?\"a > b\":\"a < b\");\n\t}\n\n\tpublic void ITP1_2_B(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tSystem.out.println((a < b && b < c)?\"Yes\":\"No\");\n\t}\n\n\tpublic void ITP1_2_C(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint[] a = new int[3];\n\t\ta[0] = scan.nextInt();\n\t\ta[1] = scan.nextInt();\n\t\ta[2] = scan.nextInt();\n\t\tfor(int i=0;i<a.length-1;i++){\n\t\t\tfor(int j=i+1;j<a.length;j++){\n\t\t\t\tif(a[i] > a[j]){\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tSystem.out.println(a[0] + \" \" + a[1] + \" \" + a[2]);\n\t}\n\n\tpublic void ITP1_2_D(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint w = scan.nextInt();\n\t\tint h = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\tSystem.out.println((x+r<=w && x-r>=0 && y+r<=h && y-r>=0)?\"Yes\":\"No\");\n\t}\n}", "import java.util.*;", "util.*", "java", "public class Main{\n\tpublic static void main(String[] args){\n\t\t//new Main().printHelloWorld();\n\t\t//System.out.println(new Main().ITP1_1_B(Integer.parseInt(new Scanner(System.in).next())));\n\t\t//new Main().ITP1_1_C();\n\t\t//new Main().ITP1_1_D();\n\t\t//new Main().ITP1_2_A();\n\t\t//new Main().ITP1_2_B();\n\t\t//new Main().ITP1_2_C();\n\t\tnew Main().ITP1_2_D();\n\t}\n\n\tpublic void printHelloWorld(){\n\t\tSystem.out.println(\"Hello World\");\n\t}\n\n\tpublic int ITP1_1_B(int x){\n\t\treturn x*x*x;\n\t}\n\n\tpublic void ITP1_1_C(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tSystem.out.println(a*b + \" \" + 2*(a+b));\n\t}\n\n\tpublic void ITP1_1_D(){\n\t\tint seconds = new Scanner(System.in).nextInt();\n\t\tSystem.out.println(seconds/3600 + \":\" + (seconds%3600)/60 + \":\" + (seconds%3600)%60);\n\t}\n\n\tpublic void ITP1_2_A(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tSystem.out.println((a==b)?\"a == b\":(a > b)?\"a > b\":\"a < b\");\n\t}\n\n\tpublic void ITP1_2_B(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tSystem.out.println((a < b && b < c)?\"Yes\":\"No\");\n\t}\n\n\tpublic void ITP1_2_C(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint[] a = new int[3];\n\t\ta[0] = scan.nextInt();\n\t\ta[1] = scan.nextInt();\n\t\ta[2] = scan.nextInt();\n\t\tfor(int i=0;i<a.length-1;i++){\n\t\t\tfor(int j=i+1;j<a.length;j++){\n\t\t\t\tif(a[i] > a[j]){\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tSystem.out.println(a[0] + \" \" + a[1] + \" \" + a[2]);\n\t}\n\n\tpublic void ITP1_2_D(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint w = scan.nextInt();\n\t\tint h = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\tSystem.out.println((x+r<=w && x-r>=0 && y+r<=h && y-r>=0)?\"Yes\":\"No\");\n\t}\n}", "Main", "public static void main(String[] args){\n\t\t//new Main().printHelloWorld();\n\t\t//System.out.println(new Main().ITP1_1_B(Integer.parseInt(new Scanner(System.in).next())));\n\t\t//new Main().ITP1_1_C();\n\t\t//new Main().ITP1_1_D();\n\t\t//new Main().ITP1_2_A();\n\t\t//new Main().ITP1_2_B();\n\t\t//new Main().ITP1_2_C();\n\t\tnew Main().ITP1_2_D();\n\t}", "main", "{\n\t\t//new Main().printHelloWorld();\n\t\t//System.out.println(new Main().ITP1_1_B(Integer.parseInt(new Scanner(System.in).next())));\n\t\t//new Main().ITP1_1_C();\n\t\t//new Main().ITP1_1_D();\n\t\t//new Main().ITP1_2_A();\n\t\t//new Main().ITP1_2_B();\n\t\t//new Main().ITP1_2_C();\n\t\tnew Main().ITP1_2_D();\n\t}", "new Main().ITP1_2_D()", "new Main().ITP1_2_D", "new Main()", "String[] args", "args", "public void printHelloWorld(){\n\t\tSystem.out.println(\"Hello World\");\n\t}", "printHelloWorld", "{\n\t\tSystem.out.println(\"Hello World\");\n\t}", "System.out.println(\"Hello World\")", "System.out.println", "System.out", "System", "System.out", "\"Hello World\"", "public int ITP1_1_B(int x){\n\t\treturn x*x*x;\n\t}", "ITP1_1_B", "{\n\t\treturn x*x*x;\n\t}", "return x*x*x;", "x*x*x", "x*x*x", "x", "x", "x", "int x", "x", "public void ITP1_1_C(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tSystem.out.println(a*b + \" \" + 2*(a+b));\n\t}", "ITP1_1_C", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tSystem.out.println(a*b + \" \" + 2*(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.println(a*b + \" \" + 2*(a+b))", "System.out.println", "System.out", "System", "System.out", "a*b + \" \" + 2*(a+b)", "a*b + \" \" + 2*(a+b)", "a*b", "a", "b", "\" \"", "2*(a+b)", "2", "(a+b)", "a", "b", "public void ITP1_1_D(){\n\t\tint seconds = new Scanner(System.in).nextInt();\n\t\tSystem.out.println(seconds/3600 + \":\" + (seconds%3600)/60 + \":\" + (seconds%3600)%60);\n\t}", "ITP1_1_D", "{\n\t\tint seconds = new Scanner(System.in).nextInt();\n\t\tSystem.out.println(seconds/3600 + \":\" + (seconds%3600)/60 + \":\" + (seconds%3600)%60);\n\t}", "int seconds = new Scanner(System.in).nextInt();", "seconds", "new Scanner(System.in).nextInt()", "new Scanner(System.in).nextInt", "new Scanner(System.in)", "System.out.println(seconds/3600 + \":\" + (seconds%3600)/60 + \":\" + (seconds%3600)%60)", "System.out.println", "System.out", "System", "System.out", "seconds/3600 + \":\" + (seconds%3600)/60 + \":\" + (seconds%3600)%60", "\":\"", "(seconds%3600)/60", "seconds/3600 + \":\" + (seconds%3600)/60 + \":\" + (seconds%3600)%60", "seconds/3600", "seconds", "3600", "\":\"", "(seconds%3600)/60", "(seconds%3600)", "seconds", "3600", "60", "\":\"", "(seconds%3600)%60", "(seconds%3600)", "seconds", "3600", "60", "public void ITP1_2_A(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tSystem.out.println((a==b)?\"a == b\":(a > b)?\"a > b\":\"a < b\");\n\t}", "ITP1_2_A", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tSystem.out.println((a==b)?\"a == b\":(a > b)?\"a > b\":\"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.println((a==b)?\"a == b\":(a > b)?\"a > b\":\"a < b\")", "System.out.println", "System.out", "System", "System.out", "(a==b)?\"a == b\":(a > b)?\"a > b\":\"a < b\"", "(a==b)", "a", "b", "\"a == b\"", "(a > b)?\"a > b\":\"a < b\"", "(a > b)", "a", "b", "\"a > b\"", "\"a < b\"", "public void ITP1_2_B(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tSystem.out.println((a < b && b < c)?\"Yes\":\"No\");\n\t}", "ITP1_2_B", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tSystem.out.println((a < b && b < c)?\"Yes\":\"No\");\n\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int a = scan.nextInt();", "a", "scan.nextInt()", "scan.nextInt", "scan", "int b = scan.nextInt();", "b", "scan.nextInt()", "scan.nextInt", "scan", "int c = scan.nextInt();", "c", "scan.nextInt()", "scan.nextInt", "scan", "System.out.println((a < b && b < c)?\"Yes\":\"No\")", "System.out.println", "System.out", "System", "System.out", "(a < b && b < c)?\"Yes\":\"No\"", "(a < b && b < c)", "a < b", "a", "b", "b < c", "b", "c", "\"Yes\"", "\"No\"", "public void ITP1_2_C(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint[] a = new int[3];\n\t\ta[0] = scan.nextInt();\n\t\ta[1] = scan.nextInt();\n\t\ta[2] = scan.nextInt();\n\t\tfor(int i=0;i<a.length-1;i++){\n\t\t\tfor(int j=i+1;j<a.length;j++){\n\t\t\t\tif(a[i] > a[j]){\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tSystem.out.println(a[0] + \" \" + a[1] + \" \" + a[2]);\n\t}", "ITP1_2_C", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint[] a = new int[3];\n\t\ta[0] = scan.nextInt();\n\t\ta[1] = scan.nextInt();\n\t\ta[2] = scan.nextInt();\n\t\tfor(int i=0;i<a.length-1;i++){\n\t\t\tfor(int j=i+1;j<a.length;j++){\n\t\t\t\tif(a[i] > a[j]){\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tSystem.out.println(a[0] + \" \" + a[1] + \" \" + a[2]);\n\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int[] a = new int[3];", "a", "new int[3]", "3", "a[0] = scan.nextInt()", "a[0]", "a", "0", "scan.nextInt()", "scan.nextInt", "scan", "a[1] = scan.nextInt()", "a[1]", "a", "1", "scan.nextInt()", "scan.nextInt", "scan", "a[2] = scan.nextInt()", "a[2]", "a", "2", "scan.nextInt()", "scan.nextInt", "scan", "for(int i=0;i<a.length-1;i++){\n\t\t\tfor(int j=i+1;j<a.length;j++){\n\t\t\t\tif(a[i] > a[j]){\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}\n\t\t\t}\n\t\t}", "int i=0;", "int i=0;", "i", "0", "i<a.length-1", "i", "a.length-1", "a.length", "a", "a.length", "1", "i++", "i++", "i", "{\n\t\t\tfor(int j=i+1;j<a.length;j++){\n\t\t\t\tif(a[i] > a[j]){\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}\n\t\t\t}\n\t\t}", "{\n\t\t\tfor(int j=i+1;j<a.length;j++){\n\t\t\t\tif(a[i] > a[j]){\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}\n\t\t\t}\n\t\t}", "for(int j=i+1;j<a.length;j++){\n\t\t\t\tif(a[i] > a[j]){\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}\n\t\t\t}", "int j=i+1;", "int j=i+1;", "j", "i+1", "i", "1", "j<a.length", "j", "a.length", "a", "a.length", "j++", "j++", "j", "{\n\t\t\t\tif(a[i] > a[j]){\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}\n\t\t\t}", "{\n\t\t\t\tif(a[i] > a[j]){\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}\n\t\t\t}", "if(a[i] > a[j]){\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}", "a[i] > a[j]", "a[i]", "a", "i", "a[j]", "a", "j", "{\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}", "int t=a[i];", "t", "a[i]", "a", "i", "a[i]=a[j]", "a[i]", "a", "i", "a[j]", "a", "j", "a[j]=t", "a[j]", "a", "j", "t", "System.out.println(a[0] + \" \" + a[1] + \" \" + a[2])", "System.out.println", "System.out", "System", "System.out", "a[0] + \" \" + a[1] + \" \" + a[2]", "\" \"", "a[1]", "a[0] + \" \" + a[1] + \" \" + a[2]", "a[0]", "a", "0", "\" \"", "a[1]", "a", "1", "\" \"", "a[2]", "a", "2", "public void ITP1_2_D(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint w = scan.nextInt();\n\t\tint h = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\tSystem.out.println((x+r<=w && x-r>=0 && y+r<=h && y-r>=0)?\"Yes\":\"No\");\n\t}", "ITP1_2_D", "{\n\t\tScanner scan = new Scanner(System.in);\n\t\tint w = scan.nextInt();\n\t\tint h = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\tSystem.out.println((x+r<=w && x-r>=0 && y+r<=h && y-r>=0)?\"Yes\":\"No\");\n\t}", "Scanner scan = new Scanner(System.in);", "scan", "new Scanner(System.in)", "int w = scan.nextInt();", "w", "scan.nextInt()", "scan.nextInt", "scan", "int h = scan.nextInt();", "h", "scan.nextInt()", "scan.nextInt", "scan", "int x = scan.nextInt();", "x", "scan.nextInt()", "scan.nextInt", "scan", "int y = scan.nextInt();", "y", "scan.nextInt()", "scan.nextInt", "scan", "int r = scan.nextInt();", "r", "scan.nextInt()", "scan.nextInt", "scan", "System.out.println((x+r<=w && x-r>=0 && y+r<=h && y-r>=0)?\"Yes\":\"No\")", "System.out.println", "System.out", "System", "System.out", "(x+r<=w && x-r>=0 && y+r<=h && y-r>=0)?\"Yes\":\"No\"", "(x+r<=w && x-r>=0 && y+r<=h && y-r>=0)", "y+r<=h", "x+r<=w && x-r>=0 && y+r<=h && y-r>=0", "x+r<=w", "x+r", "x", "r", "w", "x-r>=0", "x-r", "x", "r", "0", "y+r<=h", "y+r", "y", "r", "h", "y-r>=0", "y-r", "y", "r", "0", "\"Yes\"", "\"No\"", "public class Main{\n\tpublic static void main(String[] args){\n\t\t//new Main().printHelloWorld();\n\t\t//System.out.println(new Main().ITP1_1_B(Integer.parseInt(new Scanner(System.in).next())));\n\t\t//new Main().ITP1_1_C();\n\t\t//new Main().ITP1_1_D();\n\t\t//new Main().ITP1_2_A();\n\t\t//new Main().ITP1_2_B();\n\t\t//new Main().ITP1_2_C();\n\t\tnew Main().ITP1_2_D();\n\t}\n\n\tpublic void printHelloWorld(){\n\t\tSystem.out.println(\"Hello World\");\n\t}\n\n\tpublic int ITP1_1_B(int x){\n\t\treturn x*x*x;\n\t}\n\n\tpublic void ITP1_1_C(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tSystem.out.println(a*b + \" \" + 2*(a+b));\n\t}\n\n\tpublic void ITP1_1_D(){\n\t\tint seconds = new Scanner(System.in).nextInt();\n\t\tSystem.out.println(seconds/3600 + \":\" + (seconds%3600)/60 + \":\" + (seconds%3600)%60);\n\t}\n\n\tpublic void ITP1_2_A(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tSystem.out.println((a==b)?\"a == b\":(a > b)?\"a > b\":\"a < b\");\n\t}\n\n\tpublic void ITP1_2_B(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tSystem.out.println((a < b && b < c)?\"Yes\":\"No\");\n\t}\n\n\tpublic void ITP1_2_C(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint[] a = new int[3];\n\t\ta[0] = scan.nextInt();\n\t\ta[1] = scan.nextInt();\n\t\ta[2] = scan.nextInt();\n\t\tfor(int i=0;i<a.length-1;i++){\n\t\t\tfor(int j=i+1;j<a.length;j++){\n\t\t\t\tif(a[i] > a[j]){\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tSystem.out.println(a[0] + \" \" + a[1] + \" \" + a[2]);\n\t}\n\n\tpublic void ITP1_2_D(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint w = scan.nextInt();\n\t\tint h = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\tSystem.out.println((x+r<=w && x-r>=0 && y+r<=h && y-r>=0)?\"Yes\":\"No\");\n\t}\n}", "public class Main{\n\tpublic static void main(String[] args){\n\t\t//new Main().printHelloWorld();\n\t\t//System.out.println(new Main().ITP1_1_B(Integer.parseInt(new Scanner(System.in).next())));\n\t\t//new Main().ITP1_1_C();\n\t\t//new Main().ITP1_1_D();\n\t\t//new Main().ITP1_2_A();\n\t\t//new Main().ITP1_2_B();\n\t\t//new Main().ITP1_2_C();\n\t\tnew Main().ITP1_2_D();\n\t}\n\n\tpublic void printHelloWorld(){\n\t\tSystem.out.println(\"Hello World\");\n\t}\n\n\tpublic int ITP1_1_B(int x){\n\t\treturn x*x*x;\n\t}\n\n\tpublic void ITP1_1_C(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tSystem.out.println(a*b + \" \" + 2*(a+b));\n\t}\n\n\tpublic void ITP1_1_D(){\n\t\tint seconds = new Scanner(System.in).nextInt();\n\t\tSystem.out.println(seconds/3600 + \":\" + (seconds%3600)/60 + \":\" + (seconds%3600)%60);\n\t}\n\n\tpublic void ITP1_2_A(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tSystem.out.println((a==b)?\"a == b\":(a > b)?\"a > b\":\"a < b\");\n\t}\n\n\tpublic void ITP1_2_B(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint a = scan.nextInt();\n\t\tint b = scan.nextInt();\n\t\tint c = scan.nextInt();\n\t\tSystem.out.println((a < b && b < c)?\"Yes\":\"No\");\n\t}\n\n\tpublic void ITP1_2_C(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint[] a = new int[3];\n\t\ta[0] = scan.nextInt();\n\t\ta[1] = scan.nextInt();\n\t\ta[2] = scan.nextInt();\n\t\tfor(int i=0;i<a.length-1;i++){\n\t\t\tfor(int j=i+1;j<a.length;j++){\n\t\t\t\tif(a[i] > a[j]){\n\t\t\t\t\tint t=a[i];a[i]=a[j];a[j]=t;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tSystem.out.println(a[0] + \" \" + a[1] + \" \" + a[2]);\n\t}\n\n\tpublic void ITP1_2_D(){\n\t\tScanner scan = new Scanner(System.in);\n\t\tint w = scan.nextInt();\n\t\tint h = scan.nextInt();\n\t\tint x = scan.nextInt();\n\t\tint y = scan.nextInt();\n\t\tint r = scan.nextInt();\n\t\tSystem.out.println((x+r<=w && x-r>=0 && y+r<=h && y-r>=0)?\"Yes\":\"No\");\n\t}\n}", "Main" ]
import java.util.*; public class Main{ public static void main(String[] args){ //new Main().printHelloWorld(); //System.out.println(new Main().ITP1_1_B(Integer.parseInt(new Scanner(System.in).next()))); //new Main().ITP1_1_C(); //new Main().ITP1_1_D(); //new Main().ITP1_2_A(); //new Main().ITP1_2_B(); //new Main().ITP1_2_C(); new Main().ITP1_2_D(); } public void printHelloWorld(){ System.out.println("Hello World"); } public int ITP1_1_B(int x){ return x*x*x; } public void ITP1_1_C(){ Scanner scan = new Scanner(System.in); int a = scan.nextInt(); int b = scan.nextInt(); System.out.println(a*b + " " + 2*(a+b)); } public void ITP1_1_D(){ int seconds = new Scanner(System.in).nextInt(); System.out.println(seconds/3600 + ":" + (seconds%3600)/60 + ":" + (seconds%3600)%60); } public void ITP1_2_A(){ Scanner scan = new Scanner(System.in); int a = scan.nextInt(); int b = scan.nextInt(); System.out.println((a==b)?"a == b":(a > b)?"a > b":"a < b"); } public void ITP1_2_B(){ Scanner scan = new Scanner(System.in); int a = scan.nextInt(); int b = scan.nextInt(); int c = scan.nextInt(); System.out.println((a < b && b < c)?"Yes":"No"); } public void ITP1_2_C(){ Scanner scan = new Scanner(System.in); int[] a = new int[3]; a[0] = scan.nextInt(); a[1] = scan.nextInt(); a[2] = scan.nextInt(); for(int i=0;i<a.length-1;i++){ for(int j=i+1;j<a.length;j++){ if(a[i] > a[j]){ int t=a[i];a[i]=a[j];a[j]=t; } } } System.out.println(a[0] + " " + a[1] + " " + a[2]); } public void ITP1_2_D(){ Scanner scan = new Scanner(System.in); int w = scan.nextInt(); int h = scan.nextInt(); int x = scan.nextInt(); int y = scan.nextInt(); int r = scan.nextInt(); System.out.println((x+r<=w && x-r>=0 && y+r<=h && y-r>=0)?"Yes":"No"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 13, 13, 2, 13, 2, 13, 13, 2, 13, 13, 2, 13, 2, 13, 13, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 72, 5 ], [ 72, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 40, 39 ], [ 49, 40 ], [ 40, 41 ], [ 41, 42 ], [ 41, 43 ], [ 40, 44 ], [ 44, 45 ], [ 44, 46 ], [ 46, 47 ], [ 46, 48 ], [ 49, 49 ], [ 49, 50 ], [ 49, 51 ], [ 40, 52 ], [ 52, 53 ], [ 52, 54 ], [ 54, 55 ], [ 54, 56 ], [ 37, 57 ], [ 57, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 57, 62 ], [ 37, 63 ], [ 63, 64 ], [ 64, 65 ], [ 65, 66 ], [ 65, 67 ], [ 63, 68 ], [ 6, 69 ], [ 69, 70 ], [ 0, 71 ], [ 71, 72 ], [ 71, 73 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int W=sc.nextInt();\n int H=sc.nextInt();\n int x=sc.nextInt();\n int y=sc.nextInt();\n int r=sc.nextInt();\n if(r<=x&&x<=W-r&&r<=y&&y<=H-r)System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int W=sc.nextInt();\n int H=sc.nextInt();\n int x=sc.nextInt();\n int y=sc.nextInt();\n int r=sc.nextInt();\n if(r<=x&&x<=W-r&&r<=y&&y<=H-r)System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}", "Main", "public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int W=sc.nextInt();\n int H=sc.nextInt();\n int x=sc.nextInt();\n int y=sc.nextInt();\n int r=sc.nextInt();\n if(r<=x&&x<=W-r&&r<=y&&y<=H-r)System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }", "main", "{\n Scanner sc = new Scanner(System.in);\n int W=sc.nextInt();\n int H=sc.nextInt();\n int x=sc.nextInt();\n int y=sc.nextInt();\n int r=sc.nextInt();\n if(r<=x&&x<=W-r&&r<=y&&y<=H-r)System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int W=sc.nextInt();", "W", "sc.nextInt()", "sc.nextInt", "sc", "int H=sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x=sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y=sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r=sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "if(r<=x&&x<=W-r&&r<=y&&y<=H-r)System.out.println(\"Yes\");\n else System.out.println(\"No\");", "r<=x&&x<=W-r&&r<=y&&y<=H-r", "r<=y", "r<=x&&x<=W-r&&r<=y&&y<=H-r", "r<=x", "r", "x", "x<=W-r", "x", "W-r", "W", "r", "r<=y", "r", "y", "y<=H-r", "y", "H-r", "H", "r", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int W=sc.nextInt();\n int H=sc.nextInt();\n int x=sc.nextInt();\n int y=sc.nextInt();\n int r=sc.nextInt();\n if(r<=x&&x<=W-r&&r<=y&&y<=H-r)System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}", "public class Main {\n public static void main(String[] args){\n Scanner sc = new Scanner(System.in);\n int W=sc.nextInt();\n int H=sc.nextInt();\n int x=sc.nextInt();\n int y=sc.nextInt();\n int r=sc.nextInt();\n if(r<=x&&x<=W-r&&r<=y&&y<=H-r)System.out.println(\"Yes\");\n else System.out.println(\"No\");\n }\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int W=sc.nextInt(); int H=sc.nextInt(); int x=sc.nextInt(); int y=sc.nextInt(); int r=sc.nextInt(); if(r<=x&&x<=W-r&&r<=y&&y<=H-r)System.out.println("Yes"); else System.out.println("No"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 0, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 87, 5 ], [ 87, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 8, 14 ], [ 14, 15 ], [ 8, 16 ], [ 16, 17 ], [ 8, 18 ], [ 18, 19 ], [ 8, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 8, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 45, 46 ], [ 8, 47 ], [ 47, 48 ], [ 50, 49 ], [ 61, 50 ], [ 50, 51 ], [ 51, 52 ], [ 52, 53 ], [ 52, 54 ], [ 51, 55 ], [ 50, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 56, 60 ], [ 61, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 61, 65 ], [ 50, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 66, 70 ], [ 47, 71 ], [ 71, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 71, 76 ], [ 47, 77 ], [ 77, 78 ], [ 78, 79 ], [ 79, 80 ], [ 80, 81 ], [ 80, 82 ], [ 78, 83 ], [ 6, 84 ], [ 84, 85 ], [ 0, 86 ], [ 86, 87 ], [ 86, 88 ] ]
[ "import java.util.Scanner;\n\npublic class Main\n{\n\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner in =new Scanner(System.in);\n\t\tint w,h,x,y,r;\n\t\tw=in.nextInt();\n\t\th=in.nextInt();\n\t\tx=in.nextInt();\n\t\ty=in.nextInt();\n\t\tr=in.nextInt();\n\t\t\n\t\tif( ((x+r)>w) || ((x-r) < 0) || ((y+r) > h) || ((y-r)<0))\n\t\t\tSystem.out.println(\"No\");\n\t\telse {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main\n{\n\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner in =new Scanner(System.in);\n\t\tint w,h,x,y,r;\n\t\tw=in.nextInt();\n\t\th=in.nextInt();\n\t\tx=in.nextInt();\n\t\ty=in.nextInt();\n\t\tr=in.nextInt();\n\t\t\n\t\tif( ((x+r)>w) || ((x-r) < 0) || ((y+r) > h) || ((y-r)<0))\n\t\t\tSystem.out.println(\"No\");\n\t\telse {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n\n}", "Main", "public static void main(String[] args)\n\t{\n\t\tScanner in =new Scanner(System.in);\n\t\tint w,h,x,y,r;\n\t\tw=in.nextInt();\n\t\th=in.nextInt();\n\t\tx=in.nextInt();\n\t\ty=in.nextInt();\n\t\tr=in.nextInt();\n\t\t\n\t\tif( ((x+r)>w) || ((x-r) < 0) || ((y+r) > h) || ((y-r)<0))\n\t\t\tSystem.out.println(\"No\");\n\t\telse {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}", "main", "{\n\t\tScanner in =new Scanner(System.in);\n\t\tint w,h,x,y,r;\n\t\tw=in.nextInt();\n\t\th=in.nextInt();\n\t\tx=in.nextInt();\n\t\ty=in.nextInt();\n\t\tr=in.nextInt();\n\t\t\n\t\tif( ((x+r)>w) || ((x-r) < 0) || ((y+r) > h) || ((y-r)<0))\n\t\t\tSystem.out.println(\"No\");\n\t\telse {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}", "Scanner in =new Scanner(System.in);", "in", "new Scanner(System.in)", "int w", "w", "h", "h", "x", "x", "y", "y", "r;", "r", "w=in.nextInt()", "w", "in.nextInt()", "in.nextInt", "in", "h=in.nextInt()", "h", "in.nextInt()", "in.nextInt", "in", "x=in.nextInt()", "x", "in.nextInt()", "in.nextInt", "in", "y=in.nextInt()", "y", "in.nextInt()", "in.nextInt", "in", "r=in.nextInt()", "r", "in.nextInt()", "in.nextInt", "in", "if( ((x+r)>w) || ((x-r) < 0) || ((y+r) > h) || ((y-r)<0))\n\t\t\tSystem.out.println(\"No\");\n\t\telse {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "((x+r)>w) || ((x-r) < 0) || ((y+r) > h) || ((y-r)<0)", "((y+r) > h)", "((x+r)>w) || ((x-r) < 0) || ((y+r) > h) || ((y-r)<0)", "((x+r)>w)", "(x+r)", "x", "r", "w", "((x-r) < 0)", "(x-r)", "x", "r", "0", "((y+r) > h)", "(y+r)", "y", "r", "h", "((y-r)<0)", "(y-r)", "y", "r", "0", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "{\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "String[] args", "args", "public class Main\n{\n\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner in =new Scanner(System.in);\n\t\tint w,h,x,y,r;\n\t\tw=in.nextInt();\n\t\th=in.nextInt();\n\t\tx=in.nextInt();\n\t\ty=in.nextInt();\n\t\tr=in.nextInt();\n\t\t\n\t\tif( ((x+r)>w) || ((x-r) < 0) || ((y+r) > h) || ((y-r)<0))\n\t\t\tSystem.out.println(\"No\");\n\t\telse {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n\n}", "public class Main\n{\n\n\tpublic static void main(String[] args)\n\t{\n\t\tScanner in =new Scanner(System.in);\n\t\tint w,h,x,y,r;\n\t\tw=in.nextInt();\n\t\th=in.nextInt();\n\t\tx=in.nextInt();\n\t\ty=in.nextInt();\n\t\tr=in.nextInt();\n\t\t\n\t\tif( ((x+r)>w) || ((x-r) < 0) || ((y+r) > h) || ((y-r)<0))\n\t\t\tSystem.out.println(\"No\");\n\t\telse {\n\t\t\tSystem.out.println(\"Yes\");\n\t\t}\n\t}\n\n}", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in =new Scanner(System.in); int w,h,x,y,r; w=in.nextInt(); h=in.nextInt(); x=in.nextInt(); y=in.nextInt(); r=in.nextInt(); if( ((x+r)>w) || ((x-r) < 0) || ((y+r) > h) || ((y-r)<0)) System.out.println("No"); else { System.out.println("Yes"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 4, 18, 18, 13, 13, 8, 2, 2, 2, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 17, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 86, 20 ], [ 86, 21 ], [ 21, 22 ], [ 21, 23 ], [ 23, 24 ], [ 24, 25 ], [ 24, 26 ], [ 23, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 23, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 23, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 40, 41 ], [ 23, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 45, 46 ], [ 23, 47 ], [ 47, 48 ], [ 47, 49 ], [ 49, 50 ], [ 50, 51 ], [ 23, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 52, 57 ], [ 57, 58 ], [ 58, 59 ], [ 71, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 62, 64 ], [ 61, 65 ], [ 60, 66 ], [ 66, 67 ], [ 67, 68 ], [ 67, 69 ], [ 66, 70 ], [ 71, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 71, 75 ], [ 58, 76 ], [ 76, 77 ], [ 77, 78 ], [ 77, 79 ], [ 76, 80 ], [ 57, 81 ], [ 57, 82 ], [ 21, 83 ], [ 83, 84 ], [ 0, 85 ], [ 85, 86 ], [ 85, 87 ] ]
[ "import java.io.File;\nimport java.io.IOException;\nimport java.util.ArrayDeque;\nimport java.util.ArrayList;\nimport java.util.Deque;\nimport java.util.Scanner;\n \n/*\n * メモ\n * Scanner:nextは空白か改行までの単語\n * String[][] c = new String[h][w];\n * TemplateMain,\"template_input.txt\"\n * 0.5 == 1.0/2\n * Integer.valueOf(char)はダメ、(String)\n */\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\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tSystem.out.println((x - r >= 0 && x + r <= W && y - r >= 0 && y + r <= H)?\"Yes\":\"No\");\n\t}\n}", "import java.io.File;", "File", "java.io", "import java.io.IOException;", "IOException", "java.io", "import java.util.ArrayDeque;", "ArrayDeque", "java.util", "import java.util.ArrayList;", "ArrayList", "java.util", "import java.util.Deque;", "Deque", "java.util", "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\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tSystem.out.println((x - r >= 0 && x + r <= W && y - r >= 0 && y + r <= H)?\"Yes\":\"No\");\n\t}\n}", "Main", "public static void main(String[] args) throws IOException {\n\t\t\n\t\tScanner sc = new Scanner(System.in);\n\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tSystem.out.println((x - r >= 0 && x + r <= W && y - r >= 0 && y + r <= H)?\"Yes\":\"No\");\n\t}", "main", "{\n\t\t\n\t\tScanner sc = new Scanner(System.in);\n\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tSystem.out.println((x - r >= 0 && x + r <= W && y - r >= 0 && y + r <= H)?\"Yes\":\"No\");\n\t}", "Scanner sc = new Scanner(System.in);", "sc", "new Scanner(System.in)", "int W = sc.nextInt();", "W", "sc.nextInt()", "sc.nextInt", "sc", "int H = sc.nextInt();", "H", "sc.nextInt()", "sc.nextInt", "sc", "int x = sc.nextInt();", "x", "sc.nextInt()", "sc.nextInt", "sc", "int y = sc.nextInt();", "y", "sc.nextInt()", "sc.nextInt", "sc", "int r = sc.nextInt();", "r", "sc.nextInt()", "sc.nextInt", "sc", "System.out.println((x - r >= 0 && x + r <= W && y - r >= 0 && y + r <= H)?\"Yes\":\"No\")", "System.out.println", "System.out", "System", "System.out", "(x - r >= 0 && x + r <= W && y - r >= 0 && y + r <= H)?\"Yes\":\"No\"", "(x - r >= 0 && x + r <= W && y - r >= 0 && y + r <= H)", "y - r >= 0", "x - r >= 0 && x + r <= W && y - r >= 0 && y + r <= H", "x - r >= 0", "x - r", "x", "r", "0", "x + r <= W", "x + r", "x", "r", "W", "y - r >= 0", "y - r", "y", "r", "0", "y + r <= H", "y + r", "y", "r", "H", "\"Yes\"", "\"No\"", "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\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tSystem.out.println((x - r >= 0 && x + r <= W && y - r >= 0 && y + r <= H)?\"Yes\":\"No\");\n\t}\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\t\tint W = sc.nextInt();\n\t\tint H = sc.nextInt();\n\t\tint x = sc.nextInt();\n\t\tint y = sc.nextInt();\n\t\tint r = sc.nextInt();\n\t\t\n\t\tSystem.out.println((x - r >= 0 && x + r <= W && y - r >= 0 && y + r <= H)?\"Yes\":\"No\");\n\t}\n}", "Main" ]
import java.io.File; import java.io.IOException; import java.util.ArrayDeque; import java.util.ArrayList; import java.util.Deque; import java.util.Scanner; /* * メモ * Scanner:nextは空白か改行までの単語 * String[][] c = new String[h][w]; * TemplateMain,"template_input.txt" * 0.5 == 1.0/2 * Integer.valueOf(char)はダメ、(String) */ public class Main { public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); int W = sc.nextInt(); int H = sc.nextInt(); int x = sc.nextInt(); int y = sc.nextInt(); int r = sc.nextInt(); System.out.println((x - r >= 0 && x + r <= W && y - r >= 0 && y + r <= H)?"Yes":"No"); } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 14, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 13, 13, 2, 13, 13, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 17, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 37, 39 ], [ 39, 40 ], [ 39, 41 ], [ 8, 42 ], [ 42, 43 ], [ 42, 44 ], [ 44, 45 ], [ 44, 46 ], [ 8, 47 ], [ 47, 48 ], [ 56, 49 ], [ 81, 50 ], [ 78, 51 ], [ 75, 52 ], [ 72, 53 ], [ 69, 54 ], [ 66, 55 ], [ 63, 56 ], [ 56, 57 ], [ 57, 58 ], [ 57, 59 ], [ 56, 60 ], [ 60, 61 ], [ 60, 62 ], [ 63, 63 ], [ 63, 64 ], [ 63, 65 ], [ 66, 66 ], [ 66, 67 ], [ 66, 68 ], [ 69, 69 ], [ 69, 70 ], [ 69, 71 ], [ 72, 72 ], [ 72, 73 ], [ 72, 74 ], [ 75, 75 ], [ 75, 76 ], [ 75, 77 ], [ 78, 78 ], [ 78, 79 ], [ 78, 80 ], [ 81, 81 ], [ 81, 82 ], [ 81, 83 ], [ 56, 84 ], [ 84, 85 ], [ 84, 86 ], [ 47, 87 ], [ 87, 88 ], [ 88, 89 ], [ 89, 90 ], [ 90, 91 ], [ 90, 92 ], [ 88, 93 ], [ 47, 94 ], [ 94, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 97, 99 ], [ 95, 100 ], [ 6, 101 ], [ 101, 102 ] ]
[ "\nimport java.util.*;\n \nclass Main{\n public static void main(String[] args){\n \tScanner input = new Scanner(System.in);\n int w = input.nextInt();//長方形横\n\tint h = input.nextInt();//長方形たて\n\tint x = input.nextInt();//円の中心座標横軸\n\tint y = input.nextInt();//円の中心座標縦軸\n\tint r = input.nextInt();//円の半径\n \tint inputhightforcircle = (y + r);//円の範囲縦方向\n \tint inputwideforcircle = (x + r);//円の範囲横方向\n \t\n \tif(inputhightforcircle <= h &&\n \t\tinputwideforcircle <= w &&\n \t\tinputhightforcircle > 0 &&\n \t\tinputwideforcircle > 0 && \n \t\th > 0 && h <= 100 &&\n \t\tw > 0 && w <= 100 &&\n \t\tr > 0 && r <= 100){\n \t\t\t\n \tSystem.out.println(\"Yes\");\n \t}else{\n \t\tSystem.out.println(\"No\");\n \t}\n \t\n }\n}", "import java.util.*;", "util.*", "java", "class Main{\n public static void main(String[] args){\n \tScanner input = new Scanner(System.in);\n int w = input.nextInt();//長方形横\n\tint h = input.nextInt();//長方形たて\n\tint x = input.nextInt();//円の中心座標横軸\n\tint y = input.nextInt();//円の中心座標縦軸\n\tint r = input.nextInt();//円の半径\n \tint inputhightforcircle = (y + r);//円の範囲縦方向\n \tint inputwideforcircle = (x + r);//円の範囲横方向\n \t\n \tif(inputhightforcircle <= h &&\n \t\tinputwideforcircle <= w &&\n \t\tinputhightforcircle > 0 &&\n \t\tinputwideforcircle > 0 && \n \t\th > 0 && h <= 100 &&\n \t\tw > 0 && w <= 100 &&\n \t\tr > 0 && r <= 100){\n \t\t\t\n \tSystem.out.println(\"Yes\");\n \t}else{\n \t\tSystem.out.println(\"No\");\n \t}\n \t\n }\n}", "Main", "public static void main(String[] args){\n \tScanner input = new Scanner(System.in);\n int w = input.nextInt();//長方形横\n\tint h = input.nextInt();//長方形たて\n\tint x = input.nextInt();//円の中心座標横軸\n\tint y = input.nextInt();//円の中心座標縦軸\n\tint r = input.nextInt();//円の半径\n \tint inputhightforcircle = (y + r);//円の範囲縦方向\n \tint inputwideforcircle = (x + r);//円の範囲横方向\n \t\n \tif(inputhightforcircle <= h &&\n \t\tinputwideforcircle <= w &&\n \t\tinputhightforcircle > 0 &&\n \t\tinputwideforcircle > 0 && \n \t\th > 0 && h <= 100 &&\n \t\tw > 0 && w <= 100 &&\n \t\tr > 0 && r <= 100){\n \t\t\t\n \tSystem.out.println(\"Yes\");\n \t}else{\n \t\tSystem.out.println(\"No\");\n \t}\n \t\n }", "main", "{\n \tScanner input = new Scanner(System.in);\n int w = input.nextInt();//長方形横\n\tint h = input.nextInt();//長方形たて\n\tint x = input.nextInt();//円の中心座標横軸\n\tint y = input.nextInt();//円の中心座標縦軸\n\tint r = input.nextInt();//円の半径\n \tint inputhightforcircle = (y + r);//円の範囲縦方向\n \tint inputwideforcircle = (x + r);//円の範囲横方向\n \t\n \tif(inputhightforcircle <= h &&\n \t\tinputwideforcircle <= w &&\n \t\tinputhightforcircle > 0 &&\n \t\tinputwideforcircle > 0 && \n \t\th > 0 && h <= 100 &&\n \t\tw > 0 && w <= 100 &&\n \t\tr > 0 && r <= 100){\n \t\t\t\n \tSystem.out.println(\"Yes\");\n \t}else{\n \t\tSystem.out.println(\"No\");\n \t}\n \t\n }", "Scanner input = new Scanner(System.in);", "input", "new Scanner(System.in)", "int w = input.nextInt();", "w", "input.nextInt()", "input.nextInt", "input", "int h = input.nextInt();", "h", "input.nextInt()", "input.nextInt", "input", "int x = input.nextInt();", "x", "input.nextInt()", "input.nextInt", "input", "int y = input.nextInt();", "y", "input.nextInt()", "input.nextInt", "input", "int r = input.nextInt();", "r", "input.nextInt()", "input.nextInt", "input", "int inputhightforcircle = (y + r);", "inputhightforcircle", "(y + r)", "y", "r", "int inputwideforcircle = (x + r);", "inputwideforcircle", "(x + r)", "x", "r", "if(inputhightforcircle <= h &&\n \t\tinputwideforcircle <= w &&\n \t\tinputhightforcircle > 0 &&\n \t\tinputwideforcircle > 0 && \n \t\th > 0 && h <= 100 &&\n \t\tw > 0 && w <= 100 &&\n \t\tr > 0 && r <= 100){\n \t\t\t\n \tSystem.out.println(\"Yes\");\n \t}else{\n \t\tSystem.out.println(\"No\");\n \t}", "inputhightforcircle <= h &&\n \t\tinputwideforcircle <= w &&\n \t\tinputhightforcircle > 0 &&\n \t\tinputwideforcircle > 0 && \n \t\th > 0 && h <= 100 &&\n \t\tw > 0 && w <= 100 &&\n \t\tr > 0 && r <= 100", "r > 0", "w <= 100", "w > 0", "h <= 100", "h > 0", "inputwideforcircle > 0", "inputhightforcircle > 0", "inputhightforcircle <= h &&\n \t\tinputwideforcircle <= w &&\n \t\tinputhightforcircle > 0 &&\n \t\tinputwideforcircle > 0 && \n \t\th > 0 && h <= 100 &&\n \t\tw > 0 && w <= 100 &&\n \t\tr > 0 && r <= 100", "inputhightforcircle <= h", "inputhightforcircle", "h", "inputwideforcircle <= w", "inputwideforcircle", "w", "inputhightforcircle > 0", "inputhightforcircle", "0", "inputwideforcircle > 0", "inputwideforcircle", "0", "h > 0", "h", "0", "h <= 100", "h", "100", "w > 0", "w", "0", "w <= 100", "w", "100", "r > 0", "r", "0", "r <= 100", "r", "100", "{\n \t\t\t\n \tSystem.out.println(\"Yes\");\n \t}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n \t\tSystem.out.println(\"No\");\n \t}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args" ]
import java.util.*; class Main{ public static void main(String[] args){ Scanner input = new Scanner(System.in); int w = input.nextInt();//長方形横 int h = input.nextInt();//長方形たて int x = input.nextInt();//円の中心座標横軸 int y = input.nextInt();//円の中心座標縦軸 int r = input.nextInt();//円の半径 int inputhightforcircle = (y + r);//円の範囲縦方向 int inputwideforcircle = (x + r);//円の範囲横方向 if(inputhightforcircle <= h && inputwideforcircle <= w && inputhightforcircle > 0 && inputwideforcircle > 0 && h > 0 && h <= 100 && w > 0 && w <= 100 && r > 0 && r <= 100){ System.out.println("Yes"); }else{ System.out.println("No"); } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 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, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 41, 13, 4, 18, 13, 18, 13, 17, 14, 2, 2, 2, 2, 17, 13, 2, 2, 13, 13, 13, 2, 17, 13, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 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 ], [ 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 ], [ 48, 49 ], [ 49, 50 ], [ 48, 51 ], [ 51, 52 ], [ 51, 53 ], [ 14, 54 ], [ 54, 55 ], [ 54, 56 ], [ 56, 57 ], [ 57, 58 ], [ 56, 59 ], [ 59, 60 ], [ 59, 61 ], [ 14, 62 ], [ 62, 63 ], [ 62, 64 ], [ 64, 65 ], [ 65, 66 ], [ 64, 67 ], [ 67, 68 ], [ 67, 69 ], [ 14, 70 ], [ 70, 71 ], [ 73, 72 ], [ 82, 73 ], [ 73, 74 ], [ 74, 75 ], [ 74, 76 ], [ 73, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 77, 81 ], [ 82, 82 ], [ 82, 83 ], [ 82, 84 ], [ 73, 85 ], [ 85, 86 ], [ 86, 87 ], [ 86, 88 ], [ 85, 89 ], [ 70, 90 ], [ 90, 91 ], [ 91, 92 ], [ 92, 93 ], [ 93, 94 ], [ 93, 95 ], [ 91, 96 ], [ 70, 97 ], [ 97, 98 ], [ 98, 99 ], [ 99, 100 ], [ 100, 101 ], [ 100, 102 ], [ 98, 103 ], [ 12, 104 ], [ 104, 105 ], [ 0, 106 ], [ 106, 107 ], [ 106, 108 ] ]
[ "\nimport java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\npublic class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String split[] = line.split(\" \", 0);\n int W =Integer.parseInt(split[0]);\n int H =Integer.parseInt(split[1]);\n int x =Integer.parseInt(split[2]);\n int y =Integer.parseInt(split[3]);\n int r =Integer.parseInt(split[4]);\n \n if (0<=x&&x+r<=W&&0<=y&&y+r<=H) {\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\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 public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String split[] = line.split(\" \", 0);\n int W =Integer.parseInt(split[0]);\n int H =Integer.parseInt(split[1]);\n int x =Integer.parseInt(split[2]);\n int y =Integer.parseInt(split[3]);\n int r =Integer.parseInt(split[4]);\n \n if (0<=x&&x+r<=W&&0<=y&&y+r<=H) {\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n }\n}", "Main", "public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String split[] = line.split(\" \", 0);\n int W =Integer.parseInt(split[0]);\n int H =Integer.parseInt(split[1]);\n int x =Integer.parseInt(split[2]);\n int y =Integer.parseInt(split[3]);\n int r =Integer.parseInt(split[4]);\n \n if (0<=x&&x+r<=W&&0<=y&&y+r<=H) {\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n }", "main", "{\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String split[] = line.split(\" \", 0);\n int W =Integer.parseInt(split[0]);\n int H =Integer.parseInt(split[1]);\n int x =Integer.parseInt(split[2]);\n int y =Integer.parseInt(split[3]);\n int r =Integer.parseInt(split[4]);\n \n if (0<=x&&x+r<=W&&0<=y&&y+r<=H) {\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n }", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String line = br.readLine();", "line", "br.readLine()", "br.readLine", "br", "String split[] = line.split(\" \", 0);", "split", "line.split(\" \", 0)", "line.split", "line", "\" \"", "0", "int W =Integer.parseInt(split[0]);", "W", "Integer.parseInt(split[0])", "Integer.parseInt", "Integer", "split[0]", "split", "0", "int H =Integer.parseInt(split[1]);", "H", "Integer.parseInt(split[1])", "Integer.parseInt", "Integer", "split[1]", "split", "1", "int x =Integer.parseInt(split[2]);", "x", "Integer.parseInt(split[2])", "Integer.parseInt", "Integer", "split[2]", "split", "2", "int y =Integer.parseInt(split[3]);", "y", "Integer.parseInt(split[3])", "Integer.parseInt", "Integer", "split[3]", "split", "3", "int r =Integer.parseInt(split[4]);", "r", "Integer.parseInt(split[4])", "Integer.parseInt", "Integer", "split[4]", "split", "4", "if (0<=x&&x+r<=W&&0<=y&&y+r<=H) {\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }", "0<=x&&x+r<=W&&0<=y&&y+r<=H", "0<=y", "0<=x&&x+r<=W&&0<=y&&y+r<=H", "0<=x", "0", "x", "x+r<=W", "x+r", "x", "r", "W", "0<=y", "0", "y", "y+r<=H", "y+r", "y", "r", "H", "{\n System.out.println(\"Yes\");\n }", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "{\n System.out.println(\"No\");\n }", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String split[] = line.split(\" \", 0);\n int W =Integer.parseInt(split[0]);\n int H =Integer.parseInt(split[1]);\n int x =Integer.parseInt(split[2]);\n int y =Integer.parseInt(split[3]);\n int r =Integer.parseInt(split[4]);\n \n if (0<=x&&x+r<=W&&0<=y&&y+r<=H) {\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\n }\n }\n}", "public class Main {\n public static void main(String[] args) throws IOException {\n BufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n String line = br.readLine();\n String split[] = line.split(\" \", 0);\n int W =Integer.parseInt(split[0]);\n int H =Integer.parseInt(split[1]);\n int x =Integer.parseInt(split[2]);\n int y =Integer.parseInt(split[3]);\n int r =Integer.parseInt(split[4]);\n \n if (0<=x&&x+r<=W&&0<=y&&y+r<=H) {\n System.out.println(\"Yes\");\n }\n else{\n System.out.println(\"No\");\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 br = new BufferedReader(new InputStreamReader(System.in)); String line = br.readLine(); String split[] = line.split(" ", 0); int W =Integer.parseInt(split[0]); int H =Integer.parseInt(split[1]); int x =Integer.parseInt(split[2]); int y =Integer.parseInt(split[3]); int r =Integer.parseInt(split[4]); if (0<=x&&x+r<=W&&0<=y&&y+r<=H) { System.out.println("Yes"); } else{ System.out.println("No"); } } }
[ 7, 15, 13, 17, 6, 13, 41, 13, 12, 13, 30, 0, 13, 20, 4, 18, 18, 13, 13, 4, 13, 4, 18, 13, 4, 18, 13, 4, 18, 13, 4, 18, 13, 4, 18, 13, 23, 13, 12, 13, 30, 14, 40, 2, 2, 2, 2, 40, 17, 13, 2, 13, 17, 2, 17, 13, 2, 13, 17, 30, 29, 17, 14, 2, 4, 13, 13, 13, 13, 4, 13, 13, 13, 13, 30, 29, 17, 30, 29, 17, 23, 13, 23, 13, 23, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 14, 2, 2, 13, 17, 2, 13, 13, 30, 29, 17, 14, 2, 2, 13, 17, 2, 13, 13, 30, 29, 17, 30, 29, 17, 23, 13, 23, 13, 23, 13, 12, 13, 30, 41, 13, 2, 13, 13, 41, 13, 2, 13, 13, 14, 2, 2, 13, 17, 2, 13, 13, 30, 29, 17, 14, 2, 2, 13, 17, 2, 13, 13, 30, 29, 17, 30, 29, 17, 23, 13, 23, 13, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 179, 5 ], [ 179, 6 ], [ 6, 7 ], [ 179, 8 ], [ 8, 9 ], [ 8, 10 ], [ 10, 11 ], [ 11, 12 ], [ 11, 13 ], [ 10, 14 ], [ 14, 15 ], [ 15, 16 ], [ 16, 17 ], [ 16, 18 ], [ 14, 19 ], [ 19, 20 ], [ 19, 21 ], [ 21, 22 ], [ 22, 23 ], [ 19, 24 ], [ 24, 25 ], [ 25, 26 ], [ 19, 27 ], [ 27, 28 ], [ 28, 29 ], [ 19, 30 ], [ 30, 31 ], [ 31, 32 ], [ 19, 33 ], [ 33, 34 ], [ 34, 35 ], [ 8, 36 ], [ 36, 37 ], [ 179, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 42, 43 ], [ 43, 44 ], [ 53, 45 ], [ 45, 46 ], [ 46, 47 ], [ 47, 48 ], [ 46, 49 ], [ 45, 50 ], [ 50, 51 ], [ 50, 52 ], [ 53, 53 ], [ 53, 54 ], [ 53, 55 ], [ 43, 56 ], [ 56, 57 ], [ 56, 58 ], [ 41, 59 ], [ 59, 60 ], [ 60, 61 ], [ 40, 62 ], [ 62, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 64, 67 ], [ 64, 68 ], [ 63, 69 ], [ 69, 70 ], [ 69, 71 ], [ 69, 72 ], [ 69, 73 ], [ 62, 74 ], [ 74, 75 ], [ 75, 76 ], [ 62, 77 ], [ 77, 78 ], [ 78, 79 ], [ 38, 80 ], [ 80, 81 ], [ 38, 82 ], [ 82, 83 ], [ 38, 84 ], [ 84, 85 ], [ 38, 86 ], [ 86, 87 ], [ 38, 88 ], [ 88, 89 ], [ 179, 90 ], [ 90, 91 ], [ 90, 92 ], [ 92, 93 ], [ 93, 94 ], [ 93, 95 ], [ 95, 96 ], [ 95, 97 ], [ 92, 98 ], [ 98, 99 ], [ 98, 100 ], [ 100, 101 ], [ 100, 102 ], [ 92, 103 ], [ 103, 104 ], [ 104, 105 ], [ 105, 106 ], [ 105, 107 ], [ 104, 108 ], [ 108, 109 ], [ 108, 110 ], [ 103, 111 ], [ 111, 112 ], [ 112, 113 ], [ 103, 114 ], [ 114, 115 ], [ 115, 116 ], [ 116, 117 ], [ 116, 118 ], [ 115, 119 ], [ 119, 120 ], [ 119, 121 ], [ 114, 122 ], [ 122, 123 ], [ 123, 124 ], [ 114, 125 ], [ 125, 126 ], [ 126, 127 ], [ 90, 128 ], [ 128, 129 ], [ 90, 130 ], [ 130, 131 ], [ 90, 132 ], [ 132, 133 ], [ 179, 134 ], [ 134, 135 ], [ 134, 136 ], [ 136, 137 ], [ 137, 138 ], [ 137, 139 ], [ 139, 140 ], [ 139, 141 ], [ 136, 142 ], [ 142, 143 ], [ 142, 144 ], [ 144, 145 ], [ 144, 146 ], [ 136, 147 ], [ 147, 148 ], [ 148, 149 ], [ 149, 150 ], [ 149, 151 ], [ 148, 152 ], [ 152, 153 ], [ 152, 154 ], [ 147, 155 ], [ 155, 156 ], [ 156, 157 ], [ 147, 158 ], [ 158, 159 ], [ 159, 160 ], [ 160, 161 ], [ 160, 162 ], [ 159, 163 ], [ 163, 164 ], [ 163, 165 ], [ 158, 166 ], [ 166, 167 ], [ 167, 168 ], [ 158, 169 ], [ 169, 170 ], [ 170, 171 ], [ 134, 172 ], [ 172, 173 ], [ 134, 174 ], [ 174, 175 ], [ 134, 176 ], [ 176, 177 ], [ 0, 178 ], [ 178, 179 ], [ 178, 180 ] ]
[ "import java.util.Scanner;\n\npublic class Main {\n private static Scanner scan;\n\n public static void main(String[] args) {\n scan = new Scanner(System.in);\n System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(),\n scan.nextInt(), scan.nextInt()));\n }\n\n private static String comp(int w,int h,int x,int y,int r) {\n if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }\n if (circle_in_a_Rectangle_X(w,x,r) && circle_in_a_Rectangle_Y(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }\n }\n\n // 水平方向\n // x - r が0 より小さい、または、x + r がW より大きいならばNoと判定。\n // x - r が0 以上、かつ、x + r がW 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle_X(int w,int x,int r) {\n int a = x - r;\n int b = x + r;\n if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }\n }\n\n // 垂直方向\n // y - r が0 より小さい、または、y + r がH より大きいならばNoと判定。\n // y - r が0 以上、かつ、y + r がH 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle_Y(int h,int y,int r) {\n int a = y - r;\n int b = y + r;\n if (a < 0 || b > h) {\n return false;\n } else if (a >= 0 && b <= h) {\n return true;\n } else {\n return false;\n }\n }\n}", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n private static Scanner scan;\n\n public static void main(String[] args) {\n scan = new Scanner(System.in);\n System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(),\n scan.nextInt(), scan.nextInt()));\n }\n\n private static String comp(int w,int h,int x,int y,int r) {\n if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }\n if (circle_in_a_Rectangle_X(w,x,r) && circle_in_a_Rectangle_Y(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }\n }\n\n // 水平方向\n // x - r が0 より小さい、または、x + r がW より大きいならばNoと判定。\n // x - r が0 以上、かつ、x + r がW 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle_X(int w,int x,int r) {\n int a = x - r;\n int b = x + r;\n if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }\n }\n\n // 垂直方向\n // y - r が0 より小さい、または、y + r がH より大きいならばNoと判定。\n // y - r が0 以上、かつ、y + r がH 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle_Y(int h,int y,int r) {\n int a = y - r;\n int b = y + r;\n if (a < 0 || b > h) {\n return false;\n } else if (a >= 0 && b <= h) {\n return true;\n } else {\n return false;\n }\n }\n}", "Main", "private static Scanner scan;", "scan", "public static void main(String[] args) {\n scan = new Scanner(System.in);\n System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(),\n scan.nextInt(), scan.nextInt()));\n }", "main", "{\n scan = new Scanner(System.in);\n System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(),\n scan.nextInt(), scan.nextInt()));\n }", "scan = new Scanner(System.in)", "scan", "new Scanner(System.in)", "System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(),\n scan.nextInt(), scan.nextInt()))", "System.out.println", "System.out", "System", "System.out", "comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(),\n scan.nextInt(), scan.nextInt())", "comp", "scan.nextInt()", "scan.nextInt", "scan", "scan.nextInt()", "scan.nextInt", "scan", "scan.nextInt()", "scan.nextInt", "scan", "scan.nextInt()", "scan.nextInt", "scan", "scan.nextInt()", "scan.nextInt", "scan", "String[] args", "args", "private static String comp(int w,int h,int x,int y,int r) {\n if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }\n if (circle_in_a_Rectangle_X(w,x,r) && circle_in_a_Rectangle_Y(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }\n }", "comp", "{\n if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }\n if (circle_in_a_Rectangle_X(w,x,r) && circle_in_a_Rectangle_Y(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }\n }", "if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }", "!(-100 <= x || y <=100 || 0 < w || r <= 100)", "(-100 <= x || y <=100 || 0 < w || r <= 100)", "0 < w", "-100 <= x || y <=100 || 0 < w || r <= 100", "-100 <= x", "-100", "100", "x", "y <=100", "y", "100", "0 < w", "0", "w", "r <= 100", "r", "100", "{\n return \"\";\n }", "return \"\";", "\"\"", "if (circle_in_a_Rectangle_X(w,x,r) && circle_in_a_Rectangle_Y(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }", "circle_in_a_Rectangle_X(w,x,r) && circle_in_a_Rectangle_Y(h,y,r)", "circle_in_a_Rectangle_X(w,x,r)", "circle_in_a_Rectangle_X", "w", "x", "r", "circle_in_a_Rectangle_Y(h,y,r)", "circle_in_a_Rectangle_Y", "h", "y", "r", "{\n return \"Yes\";\n }", "return \"Yes\";", "\"Yes\"", "{\n return \"No\";\n }", "return \"No\";", "\"No\"", "int w", "w", "int h", "h", "int x", "x", "int y", "y", "int r", "r", "// 水平方向\n // x - r が0 より小さい、または、x + r がW より大きいならばNoと判定。\n // x - r が0 以上、かつ、x + r がW 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle_X(int w,int x,int r) {\n int a = x - r;\n int b = x + r;\n if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }\n }", "circle_in_a_Rectangle_X", "{\n int a = x - r;\n int b = x + r;\n if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }\n }", "int a = x - r;", "a", "x - r", "x", "r", "int b = x + r;", "b", "x + r", "x", "r", "if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }", "a < 0 || b > w", "a < 0", "a", "0", "b > w", "b", "w", "{\n return false;\n }", "return false;", "false", "if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }", "a >= 0 && b <= w", "a >= 0", "a", "0", "b <= w", "b", "w", "{\n return true;\n }", "return true;", "true", "{\n return false;\n }", "return false;", "false", "int w", "w", "int x", "x", "int r", "r", "// 垂直方向\n // y - r が0 より小さい、または、y + r がH より大きいならばNoと判定。\n // y - r が0 以上、かつ、y + r がH 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle_Y(int h,int y,int r) {\n int a = y - r;\n int b = y + r;\n if (a < 0 || b > h) {\n return false;\n } else if (a >= 0 && b <= h) {\n return true;\n } else {\n return false;\n }\n }", "circle_in_a_Rectangle_Y", "{\n int a = y - r;\n int b = y + r;\n if (a < 0 || b > h) {\n return false;\n } else if (a >= 0 && b <= h) {\n return true;\n } else {\n return false;\n }\n }", "int a = y - r;", "a", "y - r", "y", "r", "int b = y + r;", "b", "y + r", "y", "r", "if (a < 0 || b > h) {\n return false;\n } else if (a >= 0 && b <= h) {\n return true;\n } else {\n return false;\n }", "a < 0 || b > h", "a < 0", "a", "0", "b > h", "b", "h", "{\n return false;\n }", "return false;", "false", "if (a >= 0 && b <= h) {\n return true;\n } else {\n return false;\n }", "a >= 0 && b <= h", "a >= 0", "a", "0", "b <= h", "b", "h", "{\n return true;\n }", "return true;", "true", "{\n return false;\n }", "return false;", "false", "int h", "h", "int y", "y", "int r", "r", "public class Main {\n private static Scanner scan;\n\n public static void main(String[] args) {\n scan = new Scanner(System.in);\n System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(),\n scan.nextInt(), scan.nextInt()));\n }\n\n private static String comp(int w,int h,int x,int y,int r) {\n if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }\n if (circle_in_a_Rectangle_X(w,x,r) && circle_in_a_Rectangle_Y(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }\n }\n\n // 水平方向\n // x - r が0 より小さい、または、x + r がW より大きいならばNoと判定。\n // x - r が0 以上、かつ、x + r がW 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle_X(int w,int x,int r) {\n int a = x - r;\n int b = x + r;\n if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }\n }\n\n // 垂直方向\n // y - r が0 より小さい、または、y + r がH より大きいならばNoと判定。\n // y - r が0 以上、かつ、y + r がH 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle_Y(int h,int y,int r) {\n int a = y - r;\n int b = y + r;\n if (a < 0 || b > h) {\n return false;\n } else if (a >= 0 && b <= h) {\n return true;\n } else {\n return false;\n }\n }\n}", "public class Main {\n private static Scanner scan;\n\n public static void main(String[] args) {\n scan = new Scanner(System.in);\n System.out.println(comp(\n scan.nextInt() , scan.nextInt(), scan.nextInt(),\n scan.nextInt(), scan.nextInt()));\n }\n\n private static String comp(int w,int h,int x,int y,int r) {\n if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) {\n return \"\";\n }\n if (circle_in_a_Rectangle_X(w,x,r) && circle_in_a_Rectangle_Y(h,y,r)) {\n return \"Yes\";\n } else {\n return \"No\";\n }\n }\n\n // 水平方向\n // x - r が0 より小さい、または、x + r がW より大きいならばNoと判定。\n // x - r が0 以上、かつ、x + r がW 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle_X(int w,int x,int r) {\n int a = x - r;\n int b = x + r;\n if (a < 0 || b > w) {\n return false;\n } else if (a >= 0 && b <= w) {\n return true;\n } else {\n return false;\n }\n }\n\n // 垂直方向\n // y - r が0 より小さい、または、y + r がH より大きいならばNoと判定。\n // y - r が0 以上、かつ、y + r がH 以下ならばYesと判定。\n private static boolean circle_in_a_Rectangle_Y(int h,int y,int r) {\n int a = y - r;\n int b = y + r;\n if (a < 0 || b > h) {\n return false;\n } else if (a >= 0 && b <= h) {\n return true;\n } else {\n return false;\n }\n }\n}", "Main" ]
import java.util.Scanner; public class Main { private static Scanner scan; public static void main(String[] args) { scan = new Scanner(System.in); System.out.println(comp( scan.nextInt() , scan.nextInt(), scan.nextInt(), scan.nextInt(), scan.nextInt())); } private static String comp(int w,int h,int x,int y,int r) { if (!(-100 <= x || y <=100 || 0 < w || r <= 100)) { return ""; } if (circle_in_a_Rectangle_X(w,x,r) && circle_in_a_Rectangle_Y(h,y,r)) { return "Yes"; } else { return "No"; } } // 水平方向 // x - r が0 より小さい、または、x + r がW より大きいならばNoと判定。 // x - r が0 以上、かつ、x + r がW 以下ならばYesと判定。 private static boolean circle_in_a_Rectangle_X(int w,int x,int r) { int a = x - r; int b = x + r; if (a < 0 || b > w) { return false; } else if (a >= 0 && b <= w) { return true; } else { return false; } } // 垂直方向 // y - r が0 より小さい、または、y + r がH より大きいならばNoと判定。 // y - r が0 以上、かつ、y + r がH 以下ならばYesと判定。 private static boolean circle_in_a_Rectangle_Y(int h,int y,int r) { int a = y - r; int b = y + r; if (a < 0 || b > h) { return false; } else if (a >= 0 && b <= h) { return true; } else { return false; } } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 17, 42, 2, 2, 0, 13, 4, 18, 13, 17, 40, 4, 18, 13, 30, 41, 13, 20, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 0, 13, 4, 18, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 13, 0, 13, 4, 18, 13, 4, 18, 13, 41, 13, 17, 14, 2, 2, 13, 13, 17, 0, 13, 17, 14, 2, 2, 13, 13, 13, 0, 13, 17, 14, 2, 2, 13, 13, 17, 0, 13, 17, 14, 2, 2, 13, 13, 13, 0, 13, 17, 4, 18, 18, 13, 13, 8, 13, 17, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 142, 14 ], [ 142, 15 ], [ 15, 16 ], [ 15, 17 ], [ 17, 18 ], [ 18, 19 ], [ 18, 20 ], [ 17, 21 ], [ 21, 22 ], [ 21, 23 ], [ 17, 24 ], [ 24, 25 ], [ 25, 26 ], [ 26, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 26, 32 ], [ 25, 33 ], [ 33, 34 ], [ 34, 35 ], [ 35, 36 ], [ 24, 37 ], [ 37, 38 ], [ 38, 39 ], [ 38, 40 ], [ 37, 41 ], [ 41, 42 ], [ 37, 43 ], [ 43, 44 ], [ 37, 45 ], [ 45, 46 ], [ 37, 47 ], [ 47, 48 ], [ 37, 49 ], [ 49, 50 ], [ 37, 51 ], [ 51, 52 ], [ 51, 53 ], [ 53, 54 ], [ 54, 55 ], [ 53, 56 ], [ 56, 57 ], [ 57, 58 ], [ 37, 59 ], [ 59, 60 ], [ 59, 61 ], [ 61, 62 ], [ 62, 63 ], [ 61, 64 ], [ 64, 65 ], [ 65, 66 ], [ 37, 67 ], [ 67, 68 ], [ 67, 69 ], [ 69, 70 ], [ 70, 71 ], [ 69, 72 ], [ 72, 73 ], [ 73, 74 ], [ 37, 75 ], [ 75, 76 ], [ 75, 77 ], [ 77, 78 ], [ 78, 79 ], [ 77, 80 ], [ 80, 81 ], [ 81, 82 ], [ 37, 83 ], [ 83, 84 ], [ 83, 85 ], [ 85, 86 ], [ 86, 87 ], [ 85, 88 ], [ 88, 89 ], [ 89, 90 ], [ 37, 91 ], [ 91, 92 ], [ 91, 93 ], [ 37, 94 ], [ 94, 95 ], [ 95, 96 ], [ 96, 97 ], [ 96, 98 ], [ 95, 99 ], [ 94, 100 ], [ 100, 101 ], [ 100, 102 ], [ 37, 103 ], [ 103, 104 ], [ 104, 105 ], [ 105, 106 ], [ 105, 107 ], [ 104, 108 ], [ 103, 109 ], [ 109, 110 ], [ 109, 111 ], [ 37, 112 ], [ 112, 113 ], [ 113, 114 ], [ 114, 115 ], [ 114, 116 ], [ 113, 117 ], [ 112, 118 ], [ 118, 119 ], [ 118, 120 ], [ 37, 121 ], [ 121, 122 ], [ 122, 123 ], [ 123, 124 ], [ 123, 125 ], [ 122, 126 ], [ 121, 127 ], [ 127, 128 ], [ 127, 129 ], [ 37, 130 ], [ 130, 131 ], [ 131, 132 ], [ 132, 133 ], [ 132, 134 ], [ 130, 135 ], [ 135, 136 ], [ 135, 137 ], [ 135, 138 ], [ 15, 139 ], [ 139, 140 ], [ 0, 141 ], [ 141, 142 ], [ 141, 143 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.StringTokenizer;\n\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 line = \"\";\n\n\t\twhile ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0) res &= false;\n\t\t\tif (x + r > W) res &= false;\n\t\t\tif (y - r < 0) res &= false;\n\t\t\tif (y + r > H) res &= false;\n\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\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", "import java.util.StringTokenizer;", "StringTokenizer", "java.util", "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 line = \"\";\n\n\t\twhile ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0) res &= false;\n\t\t\tif (x + r > W) res &= false;\n\t\t\tif (y - r < 0) res &= false;\n\t\t\tif (y + r > H) res &= false;\n\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\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 line = \"\";\n\n\t\twhile ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0) res &= false;\n\t\t\tif (x + r > W) res &= false;\n\t\t\tif (y - r < 0) res &= false;\n\t\t\tif (y + r > H) res &= false;\n\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\n\t\t}\n\t}", "main", "{\n\t\tBufferedReader br = new BufferedReader(new InputStreamReader(System.in));\n\t\tString line = \"\";\n\n\t\twhile ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0) res &= false;\n\t\t\tif (x + r > W) res &= false;\n\t\t\tif (y - r < 0) res &= false;\n\t\t\tif (y + r > H) res &= false;\n\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\n\t\t}\n\t}", "BufferedReader br = new BufferedReader(new InputStreamReader(System.in));", "br", "new BufferedReader(new InputStreamReader(System.in))", "String line = \"\";", "line", "\"\"", "while ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0) res &= false;\n\t\t\tif (x + r > W) res &= false;\n\t\t\tif (y - r < 0) res &= false;\n\t\t\tif (y + r > H) res &= false;\n\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\n\t\t}", "(line = br.readLine()) != null && !line.isEmpty()", "(line = br.readLine()) != null", "(line = br.readLine())", "line", "br.readLine()", "br.readLine", "br", "null", "!line.isEmpty()", "line.isEmpty()", "line.isEmpty", "line", "{\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0) res &= false;\n\t\t\tif (x + r > W) res &= false;\n\t\t\tif (y - r < 0) res &= false;\n\t\t\tif (y + r > H) res &= false;\n\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\n\t\t}", "StringTokenizer st = new StringTokenizer(line);", "st", "new StringTokenizer(line)", "int W", "W", "H", "H", "x", "x", "y", "y", "r;", "r", "W = Integer.parseInt(st.nextToken())", "W", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "H = Integer.parseInt(st.nextToken())", "H", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "x = Integer.parseInt(st.nextToken())", "x", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "y = Integer.parseInt(st.nextToken())", "y", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "r = Integer.parseInt(st.nextToken())", "r", "Integer.parseInt(st.nextToken())", "Integer.parseInt", "Integer", "st.nextToken()", "st.nextToken", "st", "boolean res = true;", "res", "true", "if (x - r < 0) res &= false;", "x - r < 0", "x - r", "x", "r", "0", "res &= false", "res", "false", "if (x + r > W) res &= false;", "x + r > W", "x + r", "x", "r", "W", "res &= false", "res", "false", "if (y - r < 0) res &= false;", "y - r < 0", "y - r", "y", "r", "0", "res &= false", "res", "false", "if (y + r > H) res &= false;", "y + r > H", "y + r", "y", "r", "H", "res &= false", "res", "false", "System.out.println(res ? \"Yes\" : \"No\")", "System.out.println", "System.out", "System", "System.out", "res ? \"Yes\" : \"No\"", "res", "\"Yes\"", "\"No\"", "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 line = \"\";\n\n\t\twhile ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0) res &= false;\n\t\t\tif (x + r > W) res &= false;\n\t\t\tif (y - r < 0) res &= false;\n\t\t\tif (y + r > H) res &= false;\n\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\n\t\t}\n\t}\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 line = \"\";\n\n\t\twhile ((line = br.readLine()) != null && !line.isEmpty()) {\n\t\t\tStringTokenizer st = new StringTokenizer(line);\n\n\t\t\tint W, H, x, y, r;\n\t\t\tW = Integer.parseInt(st.nextToken());\n\t\t\tH = Integer.parseInt(st.nextToken());\n\t\t\tx = Integer.parseInt(st.nextToken());\n\t\t\ty = Integer.parseInt(st.nextToken());\n\t\t\tr = Integer.parseInt(st.nextToken());\n\n\t\t\tboolean res = true;\n\t\t\tif (x - r < 0) res &= false;\n\t\t\tif (x + r > W) res &= false;\n\t\t\tif (y - r < 0) res &= false;\n\t\t\tif (y + r > H) res &= false;\n\n\t\t\tSystem.out.println(res ? \"Yes\" : \"No\");\n\t\t}\n\t}\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line = ""; while ((line = br.readLine()) != null && !line.isEmpty()) { StringTokenizer st = new StringTokenizer(line); int W, H, x, y, r; W = Integer.parseInt(st.nextToken()); H = Integer.parseInt(st.nextToken()); x = Integer.parseInt(st.nextToken()); y = Integer.parseInt(st.nextToken()); r = Integer.parseInt(st.nextToken()); boolean res = true; if (x - r < 0) res &= false; if (x + r > W) res &= false; if (y - r < 0) res &= false; if (y + r > H) res &= false; System.out.println(res ? "Yes" : "No"); } } }
[ 7, 15, 13, 17, 6, 13, 12, 13, 30, 41, 13, 20, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 41, 13, 4, 18, 13, 14, 2, 2, 2, 2, 2, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 2, 13, 13, 13, 2, 2, 13, 13, 17, 2, 13, 17, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 13, 13, 13, 30, 4, 18, 18, 13, 13, 17, 14, 2, 2, 13, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 14, 2, 13, 17, 30, 4, 18, 18, 13, 13, 17, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 140, 5 ], [ 140, 6 ], [ 6, 7 ], [ 6, 8 ], [ 8, 9 ], [ 9, 10 ], [ 9, 11 ], [ 8, 12 ], [ 12, 13 ], [ 12, 14 ], [ 14, 15 ], [ 15, 16 ], [ 8, 17 ], [ 17, 18 ], [ 17, 19 ], [ 19, 20 ], [ 20, 21 ], [ 8, 22 ], [ 22, 23 ], [ 22, 24 ], [ 24, 25 ], [ 25, 26 ], [ 8, 27 ], [ 27, 28 ], [ 27, 29 ], [ 29, 30 ], [ 30, 31 ], [ 8, 32 ], [ 32, 33 ], [ 32, 34 ], [ 34, 35 ], [ 35, 36 ], [ 8, 37 ], [ 37, 38 ], [ 42, 39 ], [ 63, 40 ], [ 58, 41 ], [ 53, 42 ], [ 42, 43 ], [ 43, 44 ], [ 44, 45 ], [ 44, 46 ], [ 43, 47 ], [ 42, 48 ], [ 48, 49 ], [ 49, 50 ], [ 49, 51 ], [ 48, 52 ], [ 53, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 53, 57 ], [ 58, 58 ], [ 58, 59 ], [ 59, 60 ], [ 59, 61 ], [ 58, 62 ], [ 63, 63 ], [ 63, 64 ], [ 63, 65 ], [ 42, 66 ], [ 66, 67 ], [ 66, 68 ], [ 37, 69 ], [ 69, 70 ], [ 70, 71 ], [ 71, 72 ], [ 72, 73 ], [ 72, 74 ], [ 70, 75 ], [ 37, 76 ], [ 76, 77 ], [ 77, 78 ], [ 78, 79 ], [ 78, 80 ], [ 77, 81 ], [ 76, 82 ], [ 82, 83 ], [ 83, 84 ], [ 84, 85 ], [ 85, 86 ], [ 85, 87 ], [ 83, 88 ], [ 76, 89 ], [ 89, 90 ], [ 90, 91 ], [ 91, 92 ], [ 91, 93 ], [ 90, 94 ], [ 89, 95 ], [ 95, 96 ], [ 96, 97 ], [ 97, 98 ], [ 98, 99 ], [ 98, 100 ], [ 96, 101 ], [ 89, 102 ], [ 102, 103 ], [ 103, 104 ], [ 104, 105 ], [ 104, 106 ], [ 103, 107 ], [ 102, 108 ], [ 108, 109 ], [ 109, 110 ], [ 110, 111 ], [ 111, 112 ], [ 111, 113 ], [ 109, 114 ], [ 102, 115 ], [ 115, 116 ], [ 116, 117 ], [ 116, 118 ], [ 115, 119 ], [ 119, 120 ], [ 120, 121 ], [ 121, 122 ], [ 122, 123 ], [ 122, 124 ], [ 120, 125 ], [ 115, 126 ], [ 126, 127 ], [ 127, 128 ], [ 127, 129 ], [ 126, 130 ], [ 130, 131 ], [ 131, 132 ], [ 132, 133 ], [ 133, 134 ], [ 133, 135 ], [ 131, 136 ], [ 6, 137 ], [ 137, 138 ], [ 0, 139 ], [ 139, 140 ], [ 139, 141 ] ]
[ "import java.util.Scanner;\n\n\npublic class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int W = scanner.nextInt();\n int H = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n if(x+r<=W&&x-r>=0&&y+r<=H&&y-r>=0&&x>=0&&y>=0){System.out.println(\"Yes\");}\n else if(x+r>W){System.out.println(\"No\");}\n else if(y+r>H){System.out.println(\"No\");}\n else if(x+r<0){System.out.println(\"No\");}\n else if(y<0){System.out.println(\"No\");}\n else if(x<0){System.out.println(\"No\");}\n }\n }", "import java.util.Scanner;", "Scanner", "java.util", "public class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int W = scanner.nextInt();\n int H = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n if(x+r<=W&&x-r>=0&&y+r<=H&&y-r>=0&&x>=0&&y>=0){System.out.println(\"Yes\");}\n else if(x+r>W){System.out.println(\"No\");}\n else if(y+r>H){System.out.println(\"No\");}\n else if(x+r<0){System.out.println(\"No\");}\n else if(y<0){System.out.println(\"No\");}\n else if(x<0){System.out.println(\"No\");}\n }\n }", "Main", "public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int W = scanner.nextInt();\n int H = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n if(x+r<=W&&x-r>=0&&y+r<=H&&y-r>=0&&x>=0&&y>=0){System.out.println(\"Yes\");}\n else if(x+r>W){System.out.println(\"No\");}\n else if(y+r>H){System.out.println(\"No\");}\n else if(x+r<0){System.out.println(\"No\");}\n else if(y<0){System.out.println(\"No\");}\n else if(x<0){System.out.println(\"No\");}\n }", "main", "{\n Scanner scanner = new Scanner(System.in);\n int W = scanner.nextInt();\n int H = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n if(x+r<=W&&x-r>=0&&y+r<=H&&y-r>=0&&x>=0&&y>=0){System.out.println(\"Yes\");}\n else if(x+r>W){System.out.println(\"No\");}\n else if(y+r>H){System.out.println(\"No\");}\n else if(x+r<0){System.out.println(\"No\");}\n else if(y<0){System.out.println(\"No\");}\n else if(x<0){System.out.println(\"No\");}\n }", "Scanner scanner = new Scanner(System.in);", "scanner", "new Scanner(System.in)", "int W = scanner.nextInt();", "W", "scanner.nextInt()", "scanner.nextInt", "scanner", "int H = scanner.nextInt();", "H", "scanner.nextInt()", "scanner.nextInt", "scanner", "int x = scanner.nextInt();", "x", "scanner.nextInt()", "scanner.nextInt", "scanner", "int y = scanner.nextInt();", "y", "scanner.nextInt()", "scanner.nextInt", "scanner", "int r = scanner.nextInt();", "r", "scanner.nextInt()", "scanner.nextInt", "scanner", "if(x+r<=W&&x-r>=0&&y+r<=H&&y-r>=0&&x>=0&&y>=0){System.out.println(\"Yes\");}\n else if(x+r>W){System.out.println(\"No\");}\n else if(y+r>H){System.out.println(\"No\");}\n else if(x+r<0){System.out.println(\"No\");}\n else if(y<0){System.out.println(\"No\");}\n else if(x<0){System.out.println(\"No\");}", "x+r<=W&&x-r>=0&&y+r<=H&&y-r>=0&&x>=0&&y>=0", "x>=0", "y-r>=0", "y+r<=H", "x+r<=W&&x-r>=0&&y+r<=H&&y-r>=0&&x>=0&&y>=0", "x+r<=W", "x+r", "x", "r", "W", "x-r>=0", "x-r", "x", "r", "0", "y+r<=H", "y+r", "y", "r", "H", "y-r>=0", "y-r", "y", "r", "0", "x>=0", "x", "0", "y>=0", "y", "0", "{System.out.println(\"Yes\");}", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "if(x+r>W){System.out.println(\"No\");}\n else if(y+r>H){System.out.println(\"No\");}\n else if(x+r<0){System.out.println(\"No\");}\n else if(y<0){System.out.println(\"No\");}\n else if(x<0){System.out.println(\"No\");}", "x+r>W", "x+r", "x", "r", "W", "{System.out.println(\"No\");}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(y+r>H){System.out.println(\"No\");}\n else if(x+r<0){System.out.println(\"No\");}\n else if(y<0){System.out.println(\"No\");}\n else if(x<0){System.out.println(\"No\");}", "y+r>H", "y+r", "y", "r", "H", "{System.out.println(\"No\");}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(x+r<0){System.out.println(\"No\");}\n else if(y<0){System.out.println(\"No\");}\n else if(x<0){System.out.println(\"No\");}", "x+r<0", "x+r", "x", "r", "0", "{System.out.println(\"No\");}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(y<0){System.out.println(\"No\");}\n else if(x<0){System.out.println(\"No\");}", "y<0", "y", "0", "{System.out.println(\"No\");}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "if(x<0){System.out.println(\"No\");}", "x<0", "x", "0", "{System.out.println(\"No\");}", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "String[] args", "args", "public class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int W = scanner.nextInt();\n int H = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n if(x+r<=W&&x-r>=0&&y+r<=H&&y-r>=0&&x>=0&&y>=0){System.out.println(\"Yes\");}\n else if(x+r>W){System.out.println(\"No\");}\n else if(y+r>H){System.out.println(\"No\");}\n else if(x+r<0){System.out.println(\"No\");}\n else if(y<0){System.out.println(\"No\");}\n else if(x<0){System.out.println(\"No\");}\n }\n }", "public class Main {\n public static void main(String[] args) {\n Scanner scanner = new Scanner(System.in);\n int W = scanner.nextInt();\n int H = scanner.nextInt();\n int x = scanner.nextInt();\n int y = scanner.nextInt();\n int r = scanner.nextInt();\n if(x+r<=W&&x-r>=0&&y+r<=H&&y-r>=0&&x>=0&&y>=0){System.out.println(\"Yes\");}\n else if(x+r>W){System.out.println(\"No\");}\n else if(y+r>H){System.out.println(\"No\");}\n else if(x+r<0){System.out.println(\"No\");}\n else if(y<0){System.out.println(\"No\");}\n else if(x<0){System.out.println(\"No\");}\n }\n }", "Main" ]
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int W = scanner.nextInt(); int H = scanner.nextInt(); int x = scanner.nextInt(); int y = scanner.nextInt(); int r = scanner.nextInt(); if(x+r<=W&&x-r>=0&&y+r<=H&&y-r>=0&&x>=0&&y>=0){System.out.println("Yes");} else if(x+r>W){System.out.println("No");} else if(y+r>H){System.out.println("No");} else if(x+r<0){System.out.println("No");} else if(y<0){System.out.println("No");} else if(x<0){System.out.println("No");} } }
[ 7, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 15, 13, 17, 6, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 41, 13, 12, 13, 30, 4, 13, 14, 4, 13, 4, 18, 18, 13, 13, 17, 4, 18, 18, 13, 13, 17, 12, 13, 30, 14, 2, 2, 2, 13, 13, 2, 13, 2, 13, 13, 2, 2, 13, 13, 2, 13, 2, 13, 13, 29, 17, 29, 17, 12, 13, 30, 38, 5, 13, 30, 4, 18, 13, 30, 0, 13, 20, 0, 13, 20, 0, 13, 4, 13, 0, 13, 4, 13, 0, 13, 4, 13, 0, 13, 4, 13, 0, 13, 4, 13, 12, 13, 30, 29, 4, 18, 13, 4, 13, 12, 13, 30, 14, 2, 2, 13, 17, 40, 4, 18, 13, 0, 13, 20, 29, 4, 18, 13, 12, 13, 30, 41, 13, 20, 23, 13, 10, 6, 13 ]
[ [ 0, 1 ], [ 1, 2 ], [ 1, 3 ], [ 0, 4 ], [ 4, 5 ], [ 4, 6 ], [ 0, 7 ], [ 7, 8 ], [ 7, 9 ], [ 0, 10 ], [ 10, 11 ], [ 10, 12 ], [ 0, 13 ], [ 13, 14 ], [ 13, 15 ], [ 0, 16 ], [ 16, 17 ], [ 16, 18 ], [ 0, 19 ], [ 19, 20 ], [ 19, 21 ], [ 0, 22 ], [ 159, 23 ], [ 159, 24 ], [ 24, 25 ], [ 159, 26 ], [ 26, 27 ], [ 159, 28 ], [ 28, 29 ], [ 159, 30 ], [ 30, 31 ], [ 159, 32 ], [ 32, 33 ], [ 159, 34 ], [ 34, 35 ], [ 159, 36 ], [ 36, 37 ], [ 159, 38 ], [ 38, 39 ], [ 38, 40 ], [ 40, 41 ], [ 41, 42 ], [ 40, 43 ], [ 43, 44 ], [ 44, 45 ], [ 43, 46 ], [ 46, 47 ], [ 47, 48 ], [ 48, 49 ], [ 48, 50 ], [ 46, 51 ], [ 43, 52 ], [ 52, 53 ], [ 53, 54 ], [ 54, 55 ], [ 54, 56 ], [ 52, 57 ], [ 159, 58 ], [ 58, 59 ], [ 58, 60 ], [ 60, 61 ], [ 61, 62 ], [ 62, 63 ], [ 63, 64 ], [ 64, 65 ], [ 64, 66 ], [ 63, 67 ], [ 67, 68 ], [ 67, 69 ], [ 69, 70 ], [ 69, 71 ], [ 62, 72 ], [ 72, 73 ], [ 73, 74 ], [ 73, 75 ], [ 72, 76 ], [ 76, 77 ], [ 76, 78 ], [ 78, 79 ], [ 78, 80 ], [ 61, 81 ], [ 81, 82 ], [ 60, 83 ], [ 83, 84 ], [ 159, 85 ], [ 85, 86 ], [ 85, 87 ], [ 87, 88 ], [ 88, 89 ], [ 89, 90 ], [ 89, 91 ], [ 91, 92 ], [ 92, 93 ], [ 93, 94 ], [ 88, 95 ], [ 95, 96 ], [ 96, 97 ], [ 96, 98 ], [ 95, 99 ], [ 99, 100 ], [ 99, 101 ], [ 95, 102 ], [ 102, 103 ], [ 102, 104 ], [ 104, 105 ], [ 95, 106 ], [ 106, 107 ], [ 106, 108 ], [ 108, 109 ], [ 95, 110 ], [ 110, 111 ], [ 110, 112 ], [ 112, 113 ], [ 95, 114 ], [ 114, 115 ], [ 114, 116 ], [ 116, 117 ], [ 95, 118 ], [ 118, 119 ], [ 118, 120 ], [ 120, 121 ], [ 159, 122 ], [ 122, 123 ], [ 122, 124 ], [ 124, 125 ], [ 125, 126 ], [ 126, 127 ], [ 127, 128 ], [ 126, 129 ], [ 129, 130 ], [ 159, 131 ], [ 131, 132 ], [ 131, 133 ], [ 133, 134 ], [ 134, 135 ], [ 135, 136 ], [ 136, 137 ], [ 136, 138 ], [ 135, 139 ], [ 139, 140 ], [ 140, 141 ], [ 141, 142 ], [ 134, 143 ], [ 143, 144 ], [ 143, 145 ], [ 133, 146 ], [ 146, 147 ], [ 147, 148 ], [ 148, 149 ], [ 159, 150 ], [ 150, 151 ], [ 150, 152 ], [ 152, 153 ], [ 153, 154 ], [ 153, 155 ], [ 150, 156 ], [ 156, 157 ], [ 0, 158 ], [ 158, 159 ], [ 158, 160 ] ]
[ "import java.io.BufferedReader;\nimport java.io.IOException;\nimport java.io.InputStreamReader;\nimport java.util.ArrayList;\n\nimport java.util.Collections;\nimport java.util.List;\nimport java.util.StringTokenizer;\n\npublic class Main {\n\tprivate StringTokenizer st;\n\tprivate BufferedReader bf;\n\tprivate int w,h,x,y,r;\n\t\n\tMain() {\n\t\treadData();\n\t\t\n\t\t\n\t\tif (isRange())\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n\t\n\tprivate boolean isRange() {\n\t\t\n\t\tif (((r <= x) && (x <= w-r)) && ((r <= y) && (y <= h-r)))\n\t\t\treturn true;\n\t\t\n\t\treturn false;\n\t}\n\t\n\tprivate void readData() {\n\t\ttry {\n\t\t\tbf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\t\tw = nextInt();\n\t\t\th = nextInt();\n\t\t\tx = nextInt();\n\t\t\ty = nextInt();\n\t\t\tr = nextInt();\n\t\t\t\n\t\t} catch (Exception e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}\n\t\n\tprivate int nextInt() throws IOException {\n\t\treturn Integer.parseInt(next());\n\t}\n\t\n\tprivate String next() throws IOException {\n\t\tif (st == null || !st.hasMoreTokens())\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\treturn st.nextToken();\n\t}\n\t\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tMain m = new Main();\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.ArrayList;", "ArrayList", "java.util", "import java.util.Collections;", "Collections", "java.util", "import java.util.List;", "List", "java.util", "import java.util.StringTokenizer;", "StringTokenizer", "java.util", "public class Main {\n\tprivate StringTokenizer st;\n\tprivate BufferedReader bf;\n\tprivate int w,h,x,y,r;\n\t\n\tMain() {\n\t\treadData();\n\t\t\n\t\t\n\t\tif (isRange())\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n\t\n\tprivate boolean isRange() {\n\t\t\n\t\tif (((r <= x) && (x <= w-r)) && ((r <= y) && (y <= h-r)))\n\t\t\treturn true;\n\t\t\n\t\treturn false;\n\t}\n\t\n\tprivate void readData() {\n\t\ttry {\n\t\t\tbf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\t\tw = nextInt();\n\t\t\th = nextInt();\n\t\t\tx = nextInt();\n\t\t\ty = nextInt();\n\t\t\tr = nextInt();\n\t\t\t\n\t\t} catch (Exception e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}\n\t\n\tprivate int nextInt() throws IOException {\n\t\treturn Integer.parseInt(next());\n\t}\n\t\n\tprivate String next() throws IOException {\n\t\tif (st == null || !st.hasMoreTokens())\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\treturn st.nextToken();\n\t}\n\t\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tMain m = new Main();\n\t}\n\n}", "Main", "private StringTokenizer st;", "st", "private BufferedReader bf;", "bf", "private int w", "w", "h", "h", "x", "x", "y", "y", "r;", "r", "Main() {\n\t\treadData();\n\t\t\n\t\t\n\t\tif (isRange())\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}", "Main", "{\n\t\treadData();\n\t\t\n\t\t\n\t\tif (isRange())\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}", "readData()", "readData", "if (isRange())\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");", "isRange()", "isRange", "System.out.println(\"Yes\")", "System.out.println", "System.out", "System", "System.out", "\"Yes\"", "System.out.println(\"No\")", "System.out.println", "System.out", "System", "System.out", "\"No\"", "private boolean isRange() {\n\t\t\n\t\tif (((r <= x) && (x <= w-r)) && ((r <= y) && (y <= h-r)))\n\t\t\treturn true;\n\t\t\n\t\treturn false;\n\t}", "isRange", "{\n\t\t\n\t\tif (((r <= x) && (x <= w-r)) && ((r <= y) && (y <= h-r)))\n\t\t\treturn true;\n\t\t\n\t\treturn false;\n\t}", "if (((r <= x) && (x <= w-r)) && ((r <= y) && (y <= h-r)))\n\t\t\treturn true;", "((r <= x) && (x <= w-r)) && ((r <= y) && (y <= h-r))", "((r <= x) && (x <= w-r))", "(r <= x)", "r", "x", "(x <= w-r)", "x", "w-r", "w", "r", "((r <= y) && (y <= h-r))", "(r <= y)", "r", "y", "(y <= h-r)", "y", "h-r", "h", "r", "return true;", "true", "return false;", "false", "private void readData() {\n\t\ttry {\n\t\t\tbf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\t\tw = nextInt();\n\t\t\th = nextInt();\n\t\t\tx = nextInt();\n\t\t\ty = nextInt();\n\t\t\tr = nextInt();\n\t\t\t\n\t\t} catch (Exception e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}", "readData", "{\n\t\ttry {\n\t\t\tbf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\t\tw = nextInt();\n\t\t\th = nextInt();\n\t\t\tx = nextInt();\n\t\t\ty = nextInt();\n\t\t\tr = nextInt();\n\t\t\t\n\t\t} catch (Exception e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}", "try {\n\t\t\tbf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\t\tw = nextInt();\n\t\t\th = nextInt();\n\t\t\tx = nextInt();\n\t\t\ty = nextInt();\n\t\t\tr = nextInt();\n\t\t\t\n\t\t} catch (Exception e) {\n\t\t\te.printStackTrace();\n\t\t}", "catch (Exception e) {\n\t\t\te.printStackTrace();\n\t\t}", "Exception e", "{\n\t\t\te.printStackTrace();\n\t\t}", "e.printStackTrace()", "e.printStackTrace", "e", "{\n\t\t\tbf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\t\tw = nextInt();\n\t\t\th = nextInt();\n\t\t\tx = nextInt();\n\t\t\ty = nextInt();\n\t\t\tr = nextInt();\n\t\t\t\n\t\t}", "bf = new BufferedReader(new InputStreamReader(System.in))", "bf", "new BufferedReader(new InputStreamReader(System.in))", "st = new StringTokenizer(bf.readLine())", "st", "new StringTokenizer(bf.readLine())", "w = nextInt()", "w", "nextInt()", "nextInt", "h = nextInt()", "h", "nextInt()", "nextInt", "x = nextInt()", "x", "nextInt()", "nextInt", "y = nextInt()", "y", "nextInt()", "nextInt", "r = nextInt()", "r", "nextInt()", "nextInt", "private int nextInt() throws IOException {\n\t\treturn Integer.parseInt(next());\n\t}", "nextInt", "{\n\t\treturn Integer.parseInt(next());\n\t}", "return Integer.parseInt(next());", "Integer.parseInt(next())", "Integer.parseInt", "Integer", "next()", "next", "private String next() throws IOException {\n\t\tif (st == null || !st.hasMoreTokens())\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\treturn st.nextToken();\n\t}", "next", "{\n\t\tif (st == null || !st.hasMoreTokens())\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\treturn st.nextToken();\n\t}", "if (st == null || !st.hasMoreTokens())\n\t\t\tst = new StringTokenizer(bf.readLine());", "st == null || !st.hasMoreTokens()", "st == null", "st", "null", "!st.hasMoreTokens()", "st.hasMoreTokens()", "st.hasMoreTokens", "st", "st = new StringTokenizer(bf.readLine())", "st", "new StringTokenizer(bf.readLine())", "return st.nextToken();", "st.nextToken()", "st.nextToken", "st", "public static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tMain m = new Main();\n\t}", "main", "{\n\t\t// TODO Auto-generated method stub\n\t\tMain m = new Main();\n\t}", "Main m = new Main();", "m", "new Main()", "String[] args", "args", "public class Main {\n\tprivate StringTokenizer st;\n\tprivate BufferedReader bf;\n\tprivate int w,h,x,y,r;\n\t\n\tMain() {\n\t\treadData();\n\t\t\n\t\t\n\t\tif (isRange())\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n\t\n\tprivate boolean isRange() {\n\t\t\n\t\tif (((r <= x) && (x <= w-r)) && ((r <= y) && (y <= h-r)))\n\t\t\treturn true;\n\t\t\n\t\treturn false;\n\t}\n\t\n\tprivate void readData() {\n\t\ttry {\n\t\t\tbf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\t\tw = nextInt();\n\t\t\th = nextInt();\n\t\t\tx = nextInt();\n\t\t\ty = nextInt();\n\t\t\tr = nextInt();\n\t\t\t\n\t\t} catch (Exception e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}\n\t\n\tprivate int nextInt() throws IOException {\n\t\treturn Integer.parseInt(next());\n\t}\n\t\n\tprivate String next() throws IOException {\n\t\tif (st == null || !st.hasMoreTokens())\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\treturn st.nextToken();\n\t}\n\t\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tMain m = new Main();\n\t}\n\n}", "public class Main {\n\tprivate StringTokenizer st;\n\tprivate BufferedReader bf;\n\tprivate int w,h,x,y,r;\n\t\n\tMain() {\n\t\treadData();\n\t\t\n\t\t\n\t\tif (isRange())\n\t\t\tSystem.out.println(\"Yes\");\n\t\telse\n\t\t\tSystem.out.println(\"No\");\n\t}\n\t\n\tprivate boolean isRange() {\n\t\t\n\t\tif (((r <= x) && (x <= w-r)) && ((r <= y) && (y <= h-r)))\n\t\t\treturn true;\n\t\t\n\t\treturn false;\n\t}\n\t\n\tprivate void readData() {\n\t\ttry {\n\t\t\tbf = new BufferedReader(new InputStreamReader(System.in));\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\t\tw = nextInt();\n\t\t\th = nextInt();\n\t\t\tx = nextInt();\n\t\t\ty = nextInt();\n\t\t\tr = nextInt();\n\t\t\t\n\t\t} catch (Exception e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}\n\t\n\tprivate int nextInt() throws IOException {\n\t\treturn Integer.parseInt(next());\n\t}\n\t\n\tprivate String next() throws IOException {\n\t\tif (st == null || !st.hasMoreTokens())\n\t\t\tst = new StringTokenizer(bf.readLine());\n\t\treturn st.nextToken();\n\t}\n\t\n\tpublic static void main(String[] args) {\n\t\t// TODO Auto-generated method stub\n\t\tMain m = new Main();\n\t}\n\n}", "Main" ]
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.StringTokenizer; public class Main { private StringTokenizer st; private BufferedReader bf; private int w,h,x,y,r; Main() { readData(); if (isRange()) System.out.println("Yes"); else System.out.println("No"); } private boolean isRange() { if (((r <= x) && (x <= w-r)) && ((r <= y) && (y <= h-r))) return true; return false; } private void readData() { try { bf = new BufferedReader(new InputStreamReader(System.in)); st = new StringTokenizer(bf.readLine()); w = nextInt(); h = nextInt(); x = nextInt(); y = nextInt(); r = nextInt(); } catch (Exception e) { e.printStackTrace(); } } private int nextInt() throws IOException { return Integer.parseInt(next()); } private String next() throws IOException { if (st == null || !st.hasMoreTokens()) st = new StringTokenizer(bf.readLine()); return st.nextToken(); } public static void main(String[] args) { // TODO Auto-generated method stub Main m = new Main(); } }