結果

問題 No.313 π
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-24 19:29:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 285 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-06-25 07:32:11
合計ジャッジ時間 3,545 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
75,392 KB
testcase_01 AC 61 ms
75,680 KB
testcase_02 AC 60 ms
75,392 KB
testcase_03 AC 62 ms
75,520 KB
testcase_04 AC 60 ms
75,568 KB
testcase_05 AC 61 ms
75,424 KB
testcase_06 AC 63 ms
75,916 KB
testcase_07 AC 74 ms
75,568 KB
testcase_08 AC 60 ms
75,520 KB
testcase_09 AC 60 ms
75,392 KB
testcase_10 AC 61 ms
75,480 KB
testcase_11 AC 61 ms
75,648 KB
testcase_12 AC 62 ms
75,648 KB
testcase_13 AC 64 ms
75,648 KB
testcase_14 AC 66 ms
75,648 KB
testcase_15 AC 66 ms
75,648 KB
testcase_16 AC 65 ms
75,676 KB
testcase_17 AC 61 ms
75,648 KB
testcase_18 AC 63 ms
75,656 KB
testcase_19 AC 72 ms
75,740 KB
testcase_20 AC 62 ms
75,792 KB
testcase_21 AC 60 ms
75,560 KB
testcase_22 AC 60 ms
75,520 KB
testcase_23 AC 61 ms
75,904 KB
testcase_24 AC 61 ms
75,904 KB
testcase_25 AC 61 ms
75,520 KB
testcase_26 AC 61 ms
75,632 KB
testcase_27 AC 61 ms
75,392 KB
testcase_28 AC 62 ms
75,520 KB
testcase_29 AC 61 ms
76,032 KB
testcase_30 AC 62 ms
75,648 KB
testcase_31 AC 66 ms
75,628 KB
testcase_32 AC 65 ms
75,776 KB
testcase_33 AC 66 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
b={'5': 20199, '7': 20163, '0': 20104, '1': 20063, '3': 20011, '8': 19956, '6': 19898, '2': 19892, '4': 19874, '9': 19841, '.': 1}
a=input()
d=dict(Counter(a))
x,y=0,0
for k in b:
    if d[k]>b[k]:
        x=k
    elif d[k]<b[k]:
        y=k
print(x,y)
0