結果

問題 No.313 π
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-16 02:49:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 270 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-06-29 03:10:26
合計ジャッジ時間 3,731 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
66,012 KB
testcase_01 AC 46 ms
65,536 KB
testcase_02 AC 45 ms
66,048 KB
testcase_03 AC 45 ms
65,920 KB
testcase_04 AC 46 ms
65,280 KB
testcase_05 AC 47 ms
65,920 KB
testcase_06 AC 45 ms
65,536 KB
testcase_07 AC 46 ms
65,152 KB
testcase_08 AC 49 ms
65,920 KB
testcase_09 AC 46 ms
65,664 KB
testcase_10 AC 46 ms
65,024 KB
testcase_11 AC 46 ms
65,792 KB
testcase_12 AC 47 ms
64,896 KB
testcase_13 AC 47 ms
65,536 KB
testcase_14 AC 46 ms
65,280 KB
testcase_15 AC 46 ms
65,152 KB
testcase_16 AC 47 ms
65,280 KB
testcase_17 AC 47 ms
65,664 KB
testcase_18 AC 46 ms
65,408 KB
testcase_19 AC 46 ms
65,536 KB
testcase_20 AC 45 ms
65,152 KB
testcase_21 AC 46 ms
65,664 KB
testcase_22 AC 46 ms
65,024 KB
testcase_23 AC 46 ms
65,152 KB
testcase_24 AC 46 ms
65,664 KB
testcase_25 AC 46 ms
65,152 KB
testcase_26 AC 46 ms
65,536 KB
testcase_27 AC 45 ms
65,664 KB
testcase_28 AC 48 ms
64,896 KB
testcase_29 AC 47 ms
65,920 KB
testcase_30 AC 46 ms
64,896 KB
testcase_31 AC 46 ms
65,536 KB
testcase_32 AC 46 ms
65,280 KB
testcase_33 AC 48 ms
65,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=[20104,20063,19892,20011,19874,20199,19898,20163,19956,19841]
t=str(input())
b=[0]*10
b[int(t[0])]+=1
for i in range(2,200002):
    b[int(t[i])]+=1
ans1=0
ans2=0
for i in range(10):
    if b[i]>a[i]:
        ans1=i
    if b[i]<a[i]:
        ans2=i
print(ans1,ans2,' ')
0