結果

問題 No.313 π
ユーザー mlihua09mlihua09
提出日時 2020-09-20 11:41:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 261 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 54,724 KB
最終ジャッジ日時 2024-06-24 10:40:21
合計ジャッジ時間 2,583 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,156 KB
testcase_01 AC 40 ms
53,200 KB
testcase_02 AC 40 ms
54,404 KB
testcase_03 AC 40 ms
53,824 KB
testcase_04 AC 42 ms
54,080 KB
testcase_05 AC 40 ms
53,092 KB
testcase_06 AC 40 ms
53,564 KB
testcase_07 AC 40 ms
52,892 KB
testcase_08 AC 39 ms
54,552 KB
testcase_09 AC 40 ms
53,624 KB
testcase_10 AC 41 ms
53,272 KB
testcase_11 AC 40 ms
53,008 KB
testcase_12 AC 39 ms
53,176 KB
testcase_13 AC 39 ms
53,232 KB
testcase_14 AC 38 ms
53,140 KB
testcase_15 AC 38 ms
53,600 KB
testcase_16 AC 40 ms
54,724 KB
testcase_17 AC 39 ms
53,488 KB
testcase_18 AC 39 ms
53,140 KB
testcase_19 AC 39 ms
53,940 KB
testcase_20 AC 40 ms
53,116 KB
testcase_21 AC 38 ms
53,028 KB
testcase_22 AC 40 ms
52,952 KB
testcase_23 AC 39 ms
53,336 KB
testcase_24 AC 40 ms
53,164 KB
testcase_25 AC 40 ms
53,616 KB
testcase_26 AC 39 ms
53,268 KB
testcase_27 AC 39 ms
53,140 KB
testcase_28 AC 39 ms
53,724 KB
testcase_29 AC 39 ms
53,004 KB
testcase_30 AC 40 ms
53,612 KB
testcase_31 AC 38 ms
53,128 KB
testcase_32 AC 39 ms
53,000 KB
testcase_33 AC 38 ms
53,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

X = [S.count(i) for i in '0123456789']

x = 0
y = 0

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

for i in range(10):
    if X[i] > Y[i]:
        x = i
    elif X[i] < Y[i]:
        y = i
        
        
print(x, y)
0