結果
| 問題 |
No.5001 排他的論理和でランニング
|
| ユーザー |
|
| 提出日時 | 2018-03-13 02:00:06 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 132 bytes |
| コンパイル時間 | 70 ms |
| 実行使用メモリ | 19,840 KB |
| スコア | 0 |
| 最終ジャッジ日時 | 2020-03-12 19:21:10 |
|
ジャッジサーバーID (参考情報) |
judge9 / |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 50 |
ソースコード
import random
N, M = map(int, input().split())
A = list(map(int, input().split()))
random.shuffle(A)
print(" ".join(map(str, A)))