結果
問題 | No.26 シャッフルゲーム |
ユーザー | mondo |
提出日時 | 2019-07-29 14:51:45 |
言語 | PHP (8.3.4) |
結果 |
AC
|
実行時間 | 37 ms / 5,000 ms |
コード長 | 326 bytes |
コンパイル時間 | 74 ms |
コンパイル使用メモリ | 32,404 KB |
実行使用メモリ | 31,364 KB |
最終ジャッジ日時 | 2024-07-02 15:20:09 |
合計ジャッジ時間 | 906 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
30,716 KB |
testcase_01 | AC | 35 ms
30,720 KB |
testcase_02 | AC | 36 ms
31,156 KB |
testcase_03 | AC | 34 ms
30,832 KB |
testcase_04 | AC | 34 ms
30,896 KB |
testcase_05 | AC | 33 ms
30,844 KB |
testcase_06 | AC | 34 ms
31,364 KB |
testcase_07 | AC | 34 ms
31,128 KB |
testcase_08 | AC | 34 ms
30,924 KB |
testcase_09 | AC | 37 ms
30,996 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $cupnumber = trim(fgets(STDIN)); $count = trim(fgets(STDIN)); for($i = 0; $i < $count; $i++) { list($number1, $number2) = explode(' ', trim(fgets(STDIN))); if($number1 == $cupnumber) { $cupnumber = $number2; } else if ($number2 == $cupnumber) { $cupnumber = $number1; } } echo $cupnumber;