結果

問題 No.571 3人兄弟(その2)
ユーザー kept1994kept1994
提出日時 2022-05-04 23:01:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 53,356 KB
最終ジャッジ日時 2024-07-04 01:38:29
合計ジャッジ時間 1,439 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,336 KB
testcase_01 AC 37 ms
53,320 KB
testcase_02 AC 38 ms
53,268 KB
testcase_03 AC 38 ms
52,764 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
53,208 KB
testcase_06 AC 37 ms
52,616 KB
testcase_07 AC 38 ms
53,356 KB
testcase_08 AC 36 ms
52,340 KB
testcase_09 AC 37 ms
53,080 KB
testcase_10 AC 37 ms
51,876 KB
testcase_11 AC 37 ms
52,704 KB
testcase_12 AC 38 ms
52,396 KB
testcase_13 AC 37 ms
52,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    l = []
    for i in "ABC":
        a, b = map(int, input().split())
        l.append((a, -b, i))
        l.sort(reverse=True)
    for ll in l:
        print(ll[-1])
    return    

if __name__ == '__main__':
    main()
0