結果
問題 |
No.1475 時計の歯車Easy
|
ユーザー |
![]() |
提出日時 | 2021-08-19 07:48:47 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 145 bytes |
コンパイル時間 | 165 ms |
コンパイル使用メモリ | 82,440 KB |
実行使用メモリ | 54,592 KB |
最終ジャッジ日時 | 2024-10-12 05:00:37 |
合計ジャッジ時間 | 3,568 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 2 |
other | WA * 42 |
ソースコード
n = int(input()) for i in range(n): L = list(set(map(int,input().split()))) L.sort(reverse=True) print(" ".join([str(i) for i in L]))