結果
問題 | No.26 シャッフルゲーム |
ユーザー | aya |
提出日時 | 2019-07-24 17:01:15 |
言語 | PHP (8.3.4) |
結果 |
OLE
|
実行時間 | - |
コード長 | 329 bytes |
コンパイル時間 | 74 ms |
コンパイル使用メモリ | 32,144 KB |
実行使用メモリ | 39,348 KB |
最終ジャッジ日時 | 2024-06-28 01:46:14 |
合計ジャッジ時間 | 12,896 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | OLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php //No.26 シャッフルゲーム //N:あたりの番号、M:入れ替える回数 $N=trim(fgets(STDIN)); $M=trim(fgets(STDIN)); for($i=1;$i<=$M;$i+2){ $line=trim(fgets(STDIN)); $lines=explode(" ",$line); if($lines[$i-1]===$N){ $N=$lines[$i]; }else if($lines[$i]===$N){ $N=$lines[$i-1]; } } echo $N; ?>