結果
| 問題 | No.123 カードシャッフル | 
| コンテスト | |
| ユーザー |  rocoder | 
| 提出日時 | 2017-06-17 22:15:53 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 198 bytes | 
| コンパイル時間 | 347 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 17,348 KB | 
| 最終ジャッジ日時 | 2024-10-01 11:41:28 | 
| 合計ジャッジ時間 | 1,628 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 2 RE * 2 | 
| other | WA * 2 RE * 8 | 
ソースコード
N,M=(int(i) for i in input (). split ())
A=[int (i) for i in input (). split ()]
print (A)
C=[int (i) for i in range(N)]
for i in range (M):
    R=A[i]
    C.pop(A[i])
    C.insert(0,R)
print (C[0])
            
            
            
        