結果
問題 | No.683 Two Operations No.3 |
ユーザー | Daigo HIROOKA |
提出日時 | 2018-06-18 23:15:23 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 544 bytes |
コンパイル時間 | 3,911 ms |
コンパイル使用メモリ | 75,068 KB |
実行使用メモリ | 832,656 KB |
最終ジャッジ日時 | 2024-06-30 17:06:26 |
合計ジャッジ時間 | 8,071 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
41,636 KB |
testcase_01 | AC | 135 ms
41,804 KB |
testcase_02 | AC | 129 ms
41,332 KB |
testcase_03 | AC | 133 ms
41,400 KB |
testcase_04 | MLE | - |
testcase_05 | AC | 150 ms
41,780 KB |
testcase_06 | MLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
import java.util.*; public class No683{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); long A = sc.nextLong(); long B = sc.nextLong(); operate(A, B); System.out.println("No"); } private static void operate(long a, long b){ if(a == 0 && b == 0){ System.out.println("Yes"); System.exit(0); } else if(a%2 == 0 && b%2 == 0){ operate(a/2, b-1); operate(a-1, b/2); }else if(a%2 == 0 && b%2 != 0){ operate(a/2, b-1); }else if(a%2 != 0 && b%2 == 0){ operate(a-1, b/2); } } }