結果
| 問題 | No.1475 時計の歯車Easy |
| ユーザー |
brthyyjp
|
| 提出日時 | 2021-04-11 17:42:37 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 64 ms / 2,000 ms |
| + 384µs | |
| コード長 | 195 bytes |
| 記録 | |
| コンパイル時間 | 245 ms |
| コンパイル使用メモリ | 95,724 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-07-31 03:55:24 |
| 合計ジャッジ時間 | 5,304 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 42 |
ソースコード
n = int(input())
ans = []
for i in range(n):
temp = list(map(int, input().split()))
temp = temp[1:]
temp.sort(reverse=True)
ans.append(temp)
for i in range(n):
print(*ans[i])
brthyyjp