結果

問題 No.313 π
ユーザー ntudantuda
提出日時 2024-10-25 22:56:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 73,060 KB
最終ジャッジ日時 2024-10-25 22:56:43
合計ジャッジ時間 3,636 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
71,992 KB
testcase_01 AC 50 ms
72,676 KB
testcase_02 AC 50 ms
72,448 KB
testcase_03 AC 50 ms
72,472 KB
testcase_04 AC 50 ms
72,780 KB
testcase_05 AC 50 ms
72,856 KB
testcase_06 AC 51 ms
72,324 KB
testcase_07 AC 55 ms
72,356 KB
testcase_08 AC 50 ms
72,368 KB
testcase_09 AC 52 ms
72,324 KB
testcase_10 AC 51 ms
72,732 KB
testcase_11 AC 49 ms
71,860 KB
testcase_12 AC 52 ms
73,060 KB
testcase_13 AC 56 ms
72,776 KB
testcase_14 AC 50 ms
72,660 KB
testcase_15 AC 50 ms
72,232 KB
testcase_16 AC 49 ms
72,468 KB
testcase_17 AC 49 ms
73,016 KB
testcase_18 AC 50 ms
72,972 KB
testcase_19 AC 51 ms
72,352 KB
testcase_20 AC 52 ms
71,908 KB
testcase_21 AC 50 ms
72,416 KB
testcase_22 AC 53 ms
71,844 KB
testcase_23 AC 50 ms
71,716 KB
testcase_24 AC 50 ms
72,728 KB
testcase_25 AC 51 ms
72,696 KB
testcase_26 AC 51 ms
72,220 KB
testcase_27 AC 54 ms
72,648 KB
testcase_28 AC 55 ms
72,732 KB
testcase_29 AC 55 ms
71,920 KB
testcase_30 AC 54 ms
72,616 KB
testcase_31 AC 55 ms
71,868 KB
testcase_32 AC 50 ms
72,904 KB
testcase_33 AC 49 ms
72,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = [20104,20063,19892,20011,19874,20199,19898,20163,19956,19841]
B = [0] * 10
S = input()
for s in S:
    if s != ".":
        B[int(s)] += 1
for i in range(10):
    if A[i] < B[i]:
        x = i
    if A[i] > B[i]:
        y = i
print(x,y)
0