結果

問題 No.338 アンケート機能
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-12-06 21:48:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 63,232 KB
最終ジャッジ日時 2024-12-06 21:48:37
合計ジャッジ時間 4,175 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
62,336 KB
testcase_01 AC 83 ms
62,592 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 84 ms
62,208 KB
testcase_05 WA -
testcase_06 AC 81 ms
61,952 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 85 ms
62,592 KB
testcase_11 AC 81 ms
61,440 KB
testcase_12 WA -
testcase_13 AC 81 ms
61,696 KB
testcase_14 AC 85 ms
62,848 KB
testcase_15 AC 84 ms
62,336 KB
testcase_16 AC 84 ms
62,976 KB
testcase_17 AC 84 ms
62,592 KB
testcase_18 AC 85 ms
62,848 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B=map(int,input().split())
ans=10**10
for a in range(1000):
	for b in range(1000):
		if a==b==0:
			continue
		if round(100*a/(a+b))==A and round(100*b/(a+b))==B:
			ans=min(ans,a+b)
print(ans)
0