結果

問題 No.313 π
ユーザー 👑 rin204rin204
提出日時 2022-07-04 14:35:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 73,552 KB
最終ジャッジ日時 2024-05-08 03:57:04
合計ジャッジ時間 3,812 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
72,032 KB
testcase_01 AC 48 ms
72,584 KB
testcase_02 AC 48 ms
73,204 KB
testcase_03 AC 49 ms
72,780 KB
testcase_04 AC 53 ms
73,436 KB
testcase_05 AC 48 ms
72,516 KB
testcase_06 AC 48 ms
72,608 KB
testcase_07 AC 49 ms
71,840 KB
testcase_08 AC 48 ms
71,976 KB
testcase_09 AC 49 ms
72,608 KB
testcase_10 AC 48 ms
72,160 KB
testcase_11 AC 47 ms
72,480 KB
testcase_12 AC 50 ms
73,168 KB
testcase_13 AC 49 ms
72,924 KB
testcase_14 AC 48 ms
72,044 KB
testcase_15 AC 49 ms
71,800 KB
testcase_16 AC 48 ms
72,696 KB
testcase_17 AC 47 ms
72,176 KB
testcase_18 AC 48 ms
71,660 KB
testcase_19 AC 48 ms
72,048 KB
testcase_20 AC 48 ms
72,628 KB
testcase_21 AC 49 ms
71,728 KB
testcase_22 AC 48 ms
73,144 KB
testcase_23 AC 48 ms
73,200 KB
testcase_24 AC 49 ms
72,480 KB
testcase_25 AC 49 ms
72,472 KB
testcase_26 AC 47 ms
72,352 KB
testcase_27 AC 48 ms
71,984 KB
testcase_28 AC 49 ms
72,484 KB
testcase_29 AC 48 ms
73,004 KB
testcase_30 AC 49 ms
73,552 KB
testcase_31 AC 48 ms
71,668 KB
testcase_32 AC 49 ms
71,972 KB
testcase_33 AC 48 ms
72,408 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