結果

問題 No.1475 時計の歯車Easy
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-08-19 07:55:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 55,720 KB
最終ジャッジ日時 2024-10-12 05:09:06
合計ジャッジ時間 3,434 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,880 KB
testcase_01 AC 43 ms
54,228 KB
testcase_02 AC 40 ms
53,488 KB
testcase_03 AC 40 ms
54,492 KB
testcase_04 AC 41 ms
54,784 KB
testcase_05 AC 40 ms
55,312 KB
testcase_06 AC 41 ms
54,308 KB
testcase_07 AC 42 ms
53,612 KB
testcase_08 AC 41 ms
53,892 KB
testcase_09 AC 41 ms
55,520 KB
testcase_10 AC 42 ms
54,288 KB
testcase_11 AC 41 ms
53,676 KB
testcase_12 AC 41 ms
54,456 KB
testcase_13 AC 41 ms
54,540 KB
testcase_14 AC 41 ms
53,956 KB
testcase_15 AC 42 ms
54,488 KB
testcase_16 AC 40 ms
53,848 KB
testcase_17 AC 40 ms
55,188 KB
testcase_18 AC 41 ms
54,172 KB
testcase_19 AC 40 ms
53,748 KB
testcase_20 AC 41 ms
54,032 KB
testcase_21 AC 40 ms
54,856 KB
testcase_22 AC 40 ms
53,908 KB
testcase_23 AC 43 ms
53,868 KB
testcase_24 AC 43 ms
54,028 KB
testcase_25 AC 41 ms
54,720 KB
testcase_26 AC 41 ms
53,936 KB
testcase_27 AC 40 ms
53,684 KB
testcase_28 AC 40 ms
53,932 KB
testcase_29 AC 40 ms
55,720 KB
testcase_30 AC 40 ms
54,024 KB
testcase_31 AC 40 ms
54,116 KB
testcase_32 AC 41 ms
54,032 KB
testcase_33 AC 40 ms
54,536 KB
testcase_34 AC 42 ms
54,856 KB
testcase_35 AC 41 ms
53,360 KB
testcase_36 AC 41 ms
53,816 KB
testcase_37 AC 40 ms
54,924 KB
testcase_38 AC 42 ms
55,060 KB
testcase_39 AC 42 ms
54,796 KB
testcase_40 AC 40 ms
55,324 KB
testcase_41 AC 41 ms
54,148 KB
testcase_42 AC 41 ms
54,336 KB
testcase_43 AC 44 ms
53,744 KB
testcase_44 AC 41 ms
55,172 KB
testcase_45 AC 41 ms
53,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n = int(input())
for i in range(n):
    L = list(map(int,input().split()))
    L.pop(0)
    L.sort(reverse=True)
    print(" ".join([str(i) for i in L]))
0