結果

問題 No.313 π
ユーザー parukiparuki
提出日時 2016-04-20 08:57:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 222 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 73,632 KB
最終ジャッジ日時 2024-10-04 14:18:47
合計ジャッジ時間 3,030 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
72,588 KB
testcase_01 AC 45 ms
72,152 KB
testcase_02 AC 50 ms
72,216 KB
testcase_03 AC 46 ms
72,960 KB
testcase_04 AC 44 ms
73,004 KB
testcase_05 AC 46 ms
72,764 KB
testcase_06 AC 46 ms
71,744 KB
testcase_07 AC 45 ms
72,180 KB
testcase_08 AC 45 ms
72,224 KB
testcase_09 AC 44 ms
71,772 KB
testcase_10 AC 45 ms
72,508 KB
testcase_11 AC 44 ms
71,896 KB
testcase_12 AC 44 ms
72,028 KB
testcase_13 AC 45 ms
72,960 KB
testcase_14 AC 45 ms
73,044 KB
testcase_15 AC 46 ms
72,464 KB
testcase_16 AC 44 ms
72,984 KB
testcase_17 AC 44 ms
71,192 KB
testcase_18 AC 46 ms
71,444 KB
testcase_19 AC 47 ms
71,936 KB
testcase_20 AC 44 ms
71,664 KB
testcase_21 AC 45 ms
72,428 KB
testcase_22 AC 45 ms
72,316 KB
testcase_23 AC 45 ms
72,880 KB
testcase_24 AC 45 ms
72,228 KB
testcase_25 AC 45 ms
72,488 KB
testcase_26 AC 44 ms
72,340 KB
testcase_27 AC 45 ms
71,980 KB
testcase_28 AC 45 ms
73,632 KB
testcase_29 AC 46 ms
71,496 KB
testcase_30 AC 45 ms
72,632 KB
testcase_31 AC 44 ms
72,756 KB
testcase_32 AC 43 ms
71,860 KB
testcase_33 AC 45 ms
73,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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