結果

問題 No.123 カードシャッフル
ユーザー GoryudyumaGoryudyuma
提出日時 2015-03-16 16:38:01
言語 PHP
(8.3.4)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 274 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 30,952 KB
実行使用メモリ 35,852 KB
最終ジャッジ日時 2024-06-28 23:06:01
合計ジャッジ時間 2,075 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,808 KB
testcase_01 AC 43 ms
30,944 KB
testcase_02 AC 42 ms
31,116 KB
testcase_03 AC 42 ms
30,844 KB
testcase_04 AC 42 ms
31,248 KB
testcase_05 AC 42 ms
31,160 KB
testcase_06 AC 42 ms
31,052 KB
testcase_07 AC 42 ms
31,088 KB
testcase_08 AC 42 ms
31,288 KB
testcase_09 AC 43 ms
31,120 KB
testcase_10 AC 68 ms
33,296 KB
testcase_11 AC 111 ms
35,852 KB
testcase_12 AC 112 ms
35,664 KB
testcase_13 AC 112 ms
35,664 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($N,$M)=explode(' ',trim(fgets(STDIN)));
$data=explode(' ',trim(fgets(STDIN)));
$a=array();
for($i=0;$i<$N;$i++){
	array_push($a,$i+1);
}

for($i=0;$i<$M;$i++){
	array_unshift($a,$a[$data[$i]-1]);
	unset($a[$data[$i]]);
	$a=array_merge($a);
}

echo $a[0].PHP_EOL;
0