結果

問題 No.313 π
ユーザー ossa_2019ossa_2019
提出日時 2021-09-27 15:16:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 527 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 67,428 KB
最終ジャッジ日時 2024-07-06 10:55:51
合計ジャッジ時間 2,814 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
65,504 KB
testcase_01 AC 42 ms
66,384 KB
testcase_02 AC 45 ms
67,428 KB
testcase_03 AC 44 ms
65,968 KB
testcase_04 AC 41 ms
65,288 KB
testcase_05 AC 41 ms
65,444 KB
testcase_06 AC 44 ms
65,832 KB
testcase_07 AC 42 ms
65,904 KB
testcase_08 AC 41 ms
65,980 KB
testcase_09 AC 41 ms
66,960 KB
testcase_10 AC 40 ms
65,568 KB
testcase_11 AC 39 ms
67,112 KB
testcase_12 AC 39 ms
66,448 KB
testcase_13 AC 41 ms
65,764 KB
testcase_14 AC 43 ms
65,524 KB
testcase_15 AC 41 ms
65,512 KB
testcase_16 AC 40 ms
65,568 KB
testcase_17 AC 42 ms
66,988 KB
testcase_18 AC 43 ms
65,436 KB
testcase_19 AC 42 ms
66,504 KB
testcase_20 AC 40 ms
67,132 KB
testcase_21 AC 40 ms
66,580 KB
testcase_22 AC 39 ms
65,720 KB
testcase_23 AC 41 ms
65,908 KB
testcase_24 AC 38 ms
66,132 KB
testcase_25 AC 40 ms
66,880 KB
testcase_26 AC 41 ms
66,472 KB
testcase_27 AC 40 ms
66,444 KB
testcase_28 AC 42 ms
65,316 KB
testcase_29 AC 41 ms
66,620 KB
testcase_30 AC 40 ms
66,248 KB
testcase_31 AC 40 ms
65,784 KB
testcase_32 AC 41 ms
66,104 KB
testcase_33 AC 41 ms
66,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin, stdout


def main(inp, inps, put):
    ANSWER = [20104, 20063, 19892, 20011, 19874, 20199, 19898, 20163, 19956, 19841]
    S = inp().rstrip().replace(".", "")
    counts = [0]*10
    for s in S:
        counts[int(s)] += 1
    
    enough, not_enough = 0, 0
    for i, c in enumerate(counts):
        if(ANSWER[i] > c):
            not_enough = i
        elif(ANSWER[i] < c):
            enough = i
    
    print(enough, not_enough)
                

main(stdin.readline, stdin.readlines, stdout.write)
0