結果

問題 No.313 π
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-05 16:09:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-10-05 16:09:18
合計ジャッジ時間 3,806 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
75,520 KB
testcase_01 AC 60 ms
75,520 KB
testcase_02 AC 61 ms
75,616 KB
testcase_03 AC 61 ms
75,628 KB
testcase_04 AC 60 ms
75,744 KB
testcase_05 AC 60 ms
75,520 KB
testcase_06 AC 70 ms
75,520 KB
testcase_07 AC 62 ms
75,520 KB
testcase_08 AC 59 ms
75,632 KB
testcase_09 AC 59 ms
75,640 KB
testcase_10 AC 59 ms
75,580 KB
testcase_11 AC 59 ms
75,544 KB
testcase_12 AC 59 ms
75,520 KB
testcase_13 AC 58 ms
75,520 KB
testcase_14 AC 57 ms
75,904 KB
testcase_15 AC 58 ms
75,904 KB
testcase_16 AC 60 ms
75,520 KB
testcase_17 AC 59 ms
75,648 KB
testcase_18 AC 58 ms
75,508 KB
testcase_19 AC 60 ms
75,520 KB
testcase_20 AC 57 ms
75,648 KB
testcase_21 AC 57 ms
75,904 KB
testcase_22 AC 59 ms
75,572 KB
testcase_23 AC 58 ms
75,504 KB
testcase_24 AC 65 ms
75,440 KB
testcase_25 AC 59 ms
75,776 KB
testcase_26 AC 57 ms
75,648 KB
testcase_27 AC 55 ms
75,436 KB
testcase_28 AC 56 ms
75,660 KB
testcase_29 AC 58 ms
75,392 KB
testcase_30 AC 60 ms
75,776 KB
testcase_31 AC 59 ms
75,724 KB
testcase_32 AC 58 ms
75,520 KB
testcase_33 AC 57 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

cnt = {'5': 20199, '7': 20163, '0': 20104, '1': 20063, '3': 20011, '8': 19956, '6': 19898, '2': 19892, '4': 19874, '9': 19841, '.': 1}

from collections import Counter

S = input()
cnt_ = Counter(S)
a, b = None, None
for i in range(10):
    i = str(i)
    if cnt_[i] < cnt[i]:
        b = i
    elif cnt_[i] > cnt[i]:
        a = i

print(a, b)
0