結果

問題 No.1475 時計の歯車Easy
ユーザー ccc
提出日時 2022-08-06 23:02:56
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 207 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-16 16:50:59
合計ジャッジ時間 2,678 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 2
other WA * 42
権限があれば一括ダウンロードができます

ソースコード

diff #

cnt = int(input())
lists = []

for i in range(cnt):
    inp = list(map(int, input().split()))
    ans = sorted(set(inp), reverse=True)
    ans1 = str(" ".join(map(str, ans)))
    print(ans1)
    inp.clear()
0