結果

問題 No.338 アンケート機能
ユーザー tookunn_1213tookunn_1213
提出日時 2016-01-29 22:50:13
言語 Python2
(2.7.18)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 659 ms
コンパイル使用メモリ 6,632 KB
実行使用メモリ 6,176 KB
最終ジャッジ日時 2023-08-07 21:28:11
合計ジャッジ時間 2,123 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,164 KB
testcase_01 AC 11 ms
6,020 KB
testcase_02 AC 11 ms
6,024 KB
testcase_03 AC 12 ms
6,016 KB
testcase_04 AC 12 ms
6,008 KB
testcase_05 AC 12 ms
6,012 KB
testcase_06 AC 12 ms
6,008 KB
testcase_07 AC 90 ms
5,976 KB
testcase_08 AC 12 ms
6,100 KB
testcase_09 AC 89 ms
6,176 KB
testcase_10 AC 18 ms
5,928 KB
testcase_11 AC 11 ms
6,128 KB
testcase_12 AC 17 ms
6,000 KB
testcase_13 AC 12 ms
6,056 KB
testcase_14 AC 16 ms
5,976 KB
testcase_15 AC 19 ms
5,928 KB
testcase_16 AC 12 ms
6,096 KB
testcase_17 AC 15 ms
6,024 KB
testcase_18 AC 12 ms
6,064 KB
testcase_19 AC 24 ms
6,064 KB
testcase_20 AC 68 ms
6,060 KB
testcase_21 AC 12 ms
6,128 KB
testcase_22 AC 35 ms
6,016 KB
testcase_23 AC 14 ms
6,048 KB
testcase_24 AC 19 ms
5,976 KB
testcase_25 AC 70 ms
6,004 KB
testcase_26 AC 16 ms
6,064 KB
testcase_27 AC 38 ms
6,052 KB
testcase_28 AC 16 ms
5,932 KB
testcase_29 AC 12 ms
6,052 KB
testcase_30 AC 13 ms
5,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
A,B = map(int,raw_input().split())
for i in range(0,1000 + 1):
	flag = False
	for j in range(0,1000 + 1):
		if i + j <= 0:continue
		if int(i * 100.0 / (i + j) + 0.5) != A:continue
		if int(j * 100.0 / (i + j) + 0.5) != B:continue
		flag = True
		print i + j
		break
	if flag:break
0