結果
| 問題 | No.1475 時計の歯車Easy |
| ユーザー |
TanukiPG
|
| 提出日時 | 2021-04-28 11:07:54 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 96 ms / 2,000 ms |
| コード長 | 156 bytes |
| 記録 | |
| コンパイル時間 | 333 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-03-28 20:33:53 |
| 合計ジャッジ時間 | 5,840 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 42 |
ソースコード
n = int(input())
for _ in range(n):
nums = [*map(int, input().split())]
del nums[0]
nums.sort(reverse=True)
print(' '.join(map(str, nums)))
TanukiPG