結果
問題 | No.1475 時計の歯車Easy |
ユーザー |
|
提出日時 | 2024-04-25 10:55:24 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 164 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-11-07 21:37:47 |
合計ジャッジ時間 | 3,014 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 4 |
other | RE * 42 |
ソースコード
n = int(input()) for i in range(n): parts = map(int, input().split()) a = parts[0] del parts[0] parts.sorted() for j in parts: print(j, end=" ") print()