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