結果
| 問題 | No.1475 時計の歯車Easy |
| ユーザー |
toshiro_yanagi
|
| 提出日時 | 2021-05-09 06:41:32 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 99 ms / 2,000 ms |
| コード長 | 141 bytes |
| 記録 | |
| コンパイル時間 | 727 ms |
| コンパイル使用メモリ | 20,572 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-04-06 07:37:42 |
| 合計ジャッジ時間 | 6,218 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 42 |
ソースコード
n = int(input())
for i in range(n):
kl = list(map(int, input().split()))
ll = kl[1:]
ll.sort()
ll = ll[::-1]
print(*ll)
toshiro_yanagi