結果

問題 No.516 赤と青の風船
ユーザー NoaSaberNoaSaber
提出日時 2021-04-18 23:29:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 119 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 86,852 KB
実行使用メモリ 71,648 KB
最終ジャッジ日時 2023-09-17 08:06:24
合計ジャッジ時間 1,712 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
71,368 KB
testcase_01 AC 96 ms
71,524 KB
testcase_02 AC 96 ms
71,228 KB
testcase_03 AC 95 ms
71,536 KB
testcase_04 AC 97 ms
71,232 KB
testcase_05 AC 97 ms
71,648 KB
testcase_06 AC 95 ms
71,480 KB
testcase_07 AC 96 ms
71,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l=[]
for i in range(3):
    l.append(input())
from collections import Counter
l=Counter(l)
print(l.most_common()[0][0])
0