結果

問題 No.851 テストケース
ユーザー mlihua09mlihua09
提出日時 2020-09-03 13:47:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 3,153 ms
コード長 194 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 87,148 KB
実行使用メモリ 71,532 KB
最終ジャッジ日時 2023-08-15 10:01:10
合計ジャッジ時間 2,818 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
71,444 KB
testcase_01 AC 60 ms
71,240 KB
testcase_02 AC 62 ms
71,044 KB
testcase_03 AC 63 ms
71,492 KB
testcase_04 AC 61 ms
71,272 KB
testcase_05 AC 63 ms
71,344 KB
testcase_06 AC 61 ms
71,076 KB
testcase_07 AC 62 ms
71,432 KB
testcase_08 AC 60 ms
71,072 KB
testcase_09 AC 61 ms
71,368 KB
testcase_10 AC 61 ms
71,376 KB
testcase_11 AC 61 ms
71,440 KB
testcase_12 AC 60 ms
71,216 KB
testcase_13 AC 62 ms
71,092 KB
testcase_14 AC 62 ms
71,260 KB
testcase_15 AC 61 ms
71,532 KB
testcase_16 AC 62 ms
71,372 KB
testcase_17 AC 66 ms
71,280 KB
testcase_18 AC 65 ms
71,460 KB
testcase_19 AC 64 ms
71,436 KB
testcase_20 AC 62 ms
71,340 KB
testcase_21 AC 63 ms
71,408 KB
testcase_22 AC 62 ms
71,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

_ = int(input())

try:
    A = [int(input()) for i in range(3)]
    A.sort()
    if A[0] != A[1]:
        print(A[0] + A[2])
    else:
        print(A[0] + A[1])
except:
    print('\"assert\"')
0