結果

問題 No.313 π
ユーザー 👑 rin204rin204
提出日時 2022-07-04 14:35:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 72,320 KB
最終ジャッジ日時 2024-12-14 04:09:42
合計ジャッジ時間 3,939 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
71,424 KB
testcase_01 AC 49 ms
71,680 KB
testcase_02 AC 50 ms
71,424 KB
testcase_03 AC 47 ms
71,680 KB
testcase_04 AC 47 ms
71,936 KB
testcase_05 AC 51 ms
71,168 KB
testcase_06 AC 48 ms
71,808 KB
testcase_07 AC 49 ms
71,552 KB
testcase_08 AC 48 ms
71,168 KB
testcase_09 AC 50 ms
72,192 KB
testcase_10 AC 48 ms
71,296 KB
testcase_11 AC 49 ms
71,552 KB
testcase_12 AC 49 ms
71,296 KB
testcase_13 AC 50 ms
71,916 KB
testcase_14 AC 48 ms
71,552 KB
testcase_15 AC 49 ms
71,040 KB
testcase_16 AC 49 ms
71,552 KB
testcase_17 AC 49 ms
71,424 KB
testcase_18 AC 50 ms
71,712 KB
testcase_19 AC 48 ms
72,320 KB
testcase_20 AC 49 ms
71,936 KB
testcase_21 AC 50 ms
71,680 KB
testcase_22 AC 50 ms
71,168 KB
testcase_23 AC 49 ms
71,936 KB
testcase_24 AC 49 ms
71,680 KB
testcase_25 AC 49 ms
71,168 KB
testcase_26 AC 50 ms
71,756 KB
testcase_27 AC 49 ms
71,168 KB
testcase_28 AC 48 ms
71,808 KB
testcase_29 AC 50 ms
71,424 KB
testcase_30 AC 49 ms
71,296 KB
testcase_31 AC 50 ms
71,808 KB
testcase_32 AC 50 ms
71,648 KB
testcase_33 AC 51 ms
71,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

cnt = [20104, 20063, 19892, 20011, 19874, 20199, 19898, 20163, 19956, 19841]

n = input()
cnt2 = [0] * 10
n = n.replace(".", "")
for s in n:
    cnt2[int(s)] += 1

a = -1
b = -1
for i in range(10):
    if cnt2[i] > cnt[i]:
        a = i
    elif cnt2[i] < cnt[i]:
        b = i
print(a, b)
0