結果

問題 No.338 アンケート機能
ユーザー tabataba
提出日時 2016-04-14 21:08:14
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,755 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 148,608 KB
最終ジャッジ日時 2024-11-08 03:11:27
合計ジャッジ時間 55,472 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,711 ms
148,608 KB
testcase_01 AC 1,708 ms
148,352 KB
testcase_02 AC 1,755 ms
148,480 KB
testcase_03 AC 1,703 ms
148,480 KB
testcase_04 AC 1,698 ms
148,352 KB
testcase_05 AC 1,685 ms
148,352 KB
testcase_06 AC 1,701 ms
148,608 KB
testcase_07 AC 1,700 ms
148,480 KB
testcase_08 AC 1,682 ms
148,480 KB
testcase_09 AC 1,680 ms
148,480 KB
testcase_10 AC 1,677 ms
148,608 KB
testcase_11 AC 1,723 ms
148,480 KB
testcase_12 AC 1,693 ms
148,480 KB
testcase_13 AC 1,676 ms
148,480 KB
testcase_14 AC 1,691 ms
148,352 KB
testcase_15 AC 1,684 ms
148,608 KB
testcase_16 AC 1,685 ms
148,608 KB
testcase_17 AC 1,694 ms
148,480 KB
testcase_18 AC 1,681 ms
148,352 KB
testcase_19 AC 1,682 ms
148,480 KB
testcase_20 AC 1,690 ms
148,608 KB
testcase_21 AC 1,683 ms
148,480 KB
testcase_22 AC 1,690 ms
148,608 KB
testcase_23 AC 1,682 ms
148,608 KB
testcase_24 AC 1,683 ms
148,352 KB
testcase_25 AC 1,680 ms
148,608 KB
testcase_26 AC 1,690 ms
148,352 KB
testcase_27 AC 1,689 ms
148,352 KB
testcase_28 AC 1,683 ms
148,480 KB
testcase_29 AC 1,748 ms
148,480 KB
testcase_30 AC 1,687 ms
148,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B=map(int,raw_input().split())
t=[]
for i in range(1000):
	for j in range(1000):
		if i+j!=0:
			t+=[[int(i*100./(i+j)+0.5),int(j*100./(i+j)+0.5),i+j]]
print min(i[2]for i in t if i[0]==A and i[1]==B)
0