結果

問題 No.1475 時計の歯車Easy
ユーザー shobonvipshobonvip
提出日時 2023-03-17 20:23:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-09-18 10:08:26
合計ジャッジ時間 3,311 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,004 KB
testcase_01 AC 35 ms
53,688 KB
testcase_02 AC 36 ms
52,324 KB
testcase_03 AC 38 ms
52,316 KB
testcase_04 AC 33 ms
52,636 KB
testcase_05 AC 34 ms
52,624 KB
testcase_06 AC 35 ms
51,948 KB
testcase_07 AC 38 ms
51,648 KB
testcase_08 AC 34 ms
51,700 KB
testcase_09 AC 32 ms
52,892 KB
testcase_10 AC 34 ms
52,708 KB
testcase_11 AC 34 ms
52,452 KB
testcase_12 AC 33 ms
52,364 KB
testcase_13 AC 34 ms
53,264 KB
testcase_14 AC 35 ms
52,256 KB
testcase_15 AC 35 ms
53,016 KB
testcase_16 AC 36 ms
52,880 KB
testcase_17 AC 35 ms
52,752 KB
testcase_18 AC 35 ms
51,684 KB
testcase_19 AC 34 ms
53,452 KB
testcase_20 AC 33 ms
52,220 KB
testcase_21 AC 33 ms
52,596 KB
testcase_22 AC 33 ms
53,240 KB
testcase_23 AC 33 ms
51,904 KB
testcase_24 AC 33 ms
52,492 KB
testcase_25 AC 32 ms
53,104 KB
testcase_26 AC 33 ms
51,716 KB
testcase_27 AC 32 ms
53,000 KB
testcase_28 AC 34 ms
53,572 KB
testcase_29 AC 32 ms
52,328 KB
testcase_30 AC 33 ms
52,876 KB
testcase_31 AC 34 ms
53,112 KB
testcase_32 AC 34 ms
52,664 KB
testcase_33 AC 33 ms
53,652 KB
testcase_34 AC 32 ms
52,756 KB
testcase_35 AC 33 ms
53,160 KB
testcase_36 AC 32 ms
53,408 KB
testcase_37 AC 32 ms
52,276 KB
testcase_38 AC 31 ms
52,608 KB
testcase_39 AC 33 ms
52,868 KB
testcase_40 AC 33 ms
52,832 KB
testcase_41 AC 33 ms
53,416 KB
testcase_42 AC 32 ms
53,400 KB
testcase_43 AC 33 ms
52,724 KB
testcase_44 AC 33 ms
53,256 KB
testcase_45 AC 33 ms
52,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(n):
	l = list(map(int,input().split()))[1:]
	l.sort(key=lambda x:-x)
	print(*l)

0