結果

問題 No.338 アンケート機能
ユーザー
提出日時 2016-01-30 00:30:07
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 191 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 7,140 KB
実行使用メモリ 6,456 KB
最終ジャッジ日時 2023-10-21 17:38:59
合計ジャッジ時間 2,095 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
6,396 KB
testcase_01 WA -
testcase_02 RE -
testcase_03 WA -
testcase_04 AC 29 ms
6,396 KB
testcase_05 RE -
testcase_06 AC 29 ms
6,396 KB
testcase_07 RE -
testcase_08 WA -
testcase_09 RE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y=map(int,raw_input().split())
a=[]
for i in range(201):
  for j in range(201):
    t=i+j
    if t!=0:
      if round(100*i/t,0)==x and round(100*j/t,0)==y:
        a.append(t)
print min(a)
0