結果

問題 No.313 π
ユーザー lloyzlloyz
提出日時 2023-04-24 00:10:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 364 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-11-08 05:13:42
合計ジャッジ時間 5,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,776 KB
testcase_01 AC 79 ms
75,520 KB
testcase_02 AC 75 ms
75,520 KB
testcase_03 AC 76 ms
75,264 KB
testcase_04 AC 76 ms
75,904 KB
testcase_05 AC 76 ms
75,648 KB
testcase_06 AC 75 ms
75,648 KB
testcase_07 AC 75 ms
75,648 KB
testcase_08 AC 76 ms
75,904 KB
testcase_09 AC 76 ms
75,776 KB
testcase_10 AC 76 ms
75,392 KB
testcase_11 AC 74 ms
75,648 KB
testcase_12 AC 75 ms
75,392 KB
testcase_13 AC 76 ms
75,776 KB
testcase_14 AC 75 ms
75,648 KB
testcase_15 AC 75 ms
75,520 KB
testcase_16 AC 78 ms
75,648 KB
testcase_17 AC 76 ms
75,520 KB
testcase_18 AC 76 ms
75,648 KB
testcase_19 AC 75 ms
75,520 KB
testcase_20 AC 76 ms
75,648 KB
testcase_21 AC 76 ms
75,904 KB
testcase_22 AC 75 ms
75,520 KB
testcase_23 AC 75 ms
75,392 KB
testcase_24 AC 75 ms
75,392 KB
testcase_25 AC 76 ms
75,904 KB
testcase_26 AC 76 ms
75,520 KB
testcase_27 AC 75 ms
75,648 KB
testcase_28 AC 77 ms
75,520 KB
testcase_29 AC 76 ms
75,264 KB
testcase_30 AC 76 ms
75,904 KB
testcase_31 AC 76 ms
75,648 KB
testcase_32 AC 75 ms
75,520 KB
testcase_33 AC 76 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

s = input()
counter = Counter(s)

C = {'0': 20104, '1': 20063, '2': 19892, '3': 20011, '4': 19874, '5': 20199, '6': 19898, '7': 20163, '8': 19956, '9': 19841, '.': 1}
ANS = ['', '']
for i in range(10):
    i = str(i)
    if counter[i] == C[i] + 1:
        ANS[0] = i
    elif counter[i] == C[i] - 1:
        ANS[1] = i
print(*ANS)
0