結果
問題 | No.26 シャッフルゲーム |
ユーザー | DaiKi117 |
提出日時 | 2019-09-30 14:50:21 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 151 ms / 5,000 ms |
コード長 | 720 bytes |
コンパイル時間 | 2,177 ms |
コンパイル使用メモリ | 74,540 KB |
実行使用メモリ | 54,392 KB |
最終ジャッジ日時 | 2024-10-03 05:11:54 |
合計ジャッジ時間 | 3,716 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 102 ms
53,000 KB |
testcase_01 | AC | 101 ms
52,772 KB |
testcase_02 | AC | 141 ms
54,324 KB |
testcase_03 | AC | 119 ms
54,060 KB |
testcase_04 | AC | 125 ms
54,208 KB |
testcase_05 | AC | 128 ms
54,128 KB |
testcase_06 | AC | 142 ms
53,996 KB |
testcase_07 | AC | 122 ms
54,044 KB |
testcase_08 | AC | 143 ms
54,216 KB |
testcase_09 | AC | 151 ms
54,392 KB |
ソースコード
import java.util.*; public class Main{ public static void main(String[] args){ Scanner scanner = new Scanner(System.in); boolean[] cup = {false, false, false}; int first = scanner.nextInt() - 1; int shuffle = scanner.nextInt(); int l = 0; int r = 0; cup[first] = true; for(int i = 0; i < shuffle; i++){ l = scanner.nextInt() - 1; r = scanner.nextInt() - 1; if(first == l){ cup[first] = false; cup[r] = true; first = r; }else if(first == r){ cup[first] = false; cup[l] = true; first = l; } } for(int i = 0; i < 3; i++){ if(cup[i] == true){ System.out.println(i + 1); } } } }