結果

問題 No.1475 時計の歯車Easy
ユーザー brthyyjp
提出日時 2021-04-11 17:42:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 52,480 KB
最終ジャッジ日時 2024-06-27 12:26:32
合計ジャッジ時間 3,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 42
権限があれば一括ダウンロードができます

ソースコード

diff #

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])
0