結果
問題 | No.240 ナイト散歩 |
ユーザー | villach |
提出日時 | 2017-10-12 09:45:29 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 142 ms / 2,000 ms |
コード長 | 731 bytes |
コンパイル時間 | 3,603 ms |
コンパイル使用メモリ | 77,020 KB |
実行使用メモリ | 54,196 KB |
最終ジャッジ日時 | 2024-11-17 10:46:54 |
合計ジャッジ時間 | 9,615 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 139 ms
53,972 KB |
testcase_01 | AC | 138 ms
53,868 KB |
testcase_02 | AC | 138 ms
53,588 KB |
testcase_03 | AC | 139 ms
53,852 KB |
testcase_04 | AC | 140 ms
53,868 KB |
testcase_05 | AC | 141 ms
53,916 KB |
testcase_06 | AC | 142 ms
54,024 KB |
testcase_07 | AC | 139 ms
53,948 KB |
testcase_08 | AC | 141 ms
53,844 KB |
testcase_09 | AC | 140 ms
53,724 KB |
testcase_10 | AC | 137 ms
53,824 KB |
testcase_11 | AC | 140 ms
53,720 KB |
testcase_12 | AC | 139 ms
54,160 KB |
testcase_13 | AC | 138 ms
54,000 KB |
testcase_14 | AC | 136 ms
54,104 KB |
testcase_15 | AC | 136 ms
54,156 KB |
testcase_16 | AC | 139 ms
53,776 KB |
testcase_17 | AC | 139 ms
53,980 KB |
testcase_18 | AC | 141 ms
54,160 KB |
testcase_19 | AC | 141 ms
53,936 KB |
testcase_20 | AC | 142 ms
54,028 KB |
testcase_21 | AC | 140 ms
54,196 KB |
testcase_22 | AC | 141 ms
54,000 KB |
testcase_23 | AC | 137 ms
53,848 KB |
testcase_24 | AC | 139 ms
53,732 KB |
testcase_25 | AC | 137 ms
53,992 KB |
testcase_26 | AC | 139 ms
53,868 KB |
testcase_27 | AC | 139 ms
53,904 KB |
testcase_28 | AC | 140 ms
54,012 KB |
testcase_29 | AC | 138 ms
53,968 KB |
testcase_30 | AC | 139 ms
54,092 KB |
testcase_31 | AC | 137 ms
54,024 KB |
testcase_32 | AC | 136 ms
53,996 KB |
testcase_33 | AC | 139 ms
53,876 KB |
ソースコード
package yukicoder; import java.util.Scanner; public class N240 { public int x, y; public static void main(String[] args){ Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); N240 hoge = new N240(x, y); } N240(int x, int y){ this.x = x; this.y = y; if(this.hoge(0, 0, 0)){ System.out.println("YES"); }else{ System.out.println("NO"); } } public boolean hoge(int x, int y, int c){ if(x == this.x && y == this.y){ return true; } if(c >= 3){ return false; } return(hoge(x-2, y-1, c+1) || hoge(x-2, y+1, c+1) || hoge(x-1, y-2, c+1) || hoge(x-1, y+2, c+1) || hoge(x+1, y-2, c+1) || hoge(x+1, y+2, c+1) || hoge(x+2, y-1, c+1) || hoge(x+2, y+1, c+1)); } }