結果
| 問題 |
No.1475 時計の歯車Easy
|
| ユーザー |
Yash Patel
|
| 提出日時 | 2021-04-16 14:19:58 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 119 bytes |
| コンパイル時間 | 144 ms |
| コンパイル使用メモリ | 82,324 KB |
| 実行使用メモリ | 54,624 KB |
| 最終ジャッジ日時 | 2024-07-02 14:49:14 |
| 合計ジャッジ時間 | 2,999 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 2 |
| other | WA * 42 |
ソースコード
n= int(input())
for i in range(n):
a=set(map(int,input().split()))
a=sorted(a)
a=a[::-1]
print(*a)
Yash Patel