結果

問題 No.338 アンケート機能
ユーザー pluto77pluto77
提出日時 2016-02-20 18:57:49
言語 Python2
(2.7.18)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2024-11-08 03:04:01
合計ジャッジ時間 1,514 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,272 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 12 ms
6,144 KB
testcase_04 AC 11 ms
6,144 KB
testcase_05 AC 12 ms
6,272 KB
testcase_06 AC 11 ms
6,144 KB
testcase_07 AC 46 ms
6,272 KB
testcase_08 AC 12 ms
6,144 KB
testcase_09 AC 44 ms
6,272 KB
testcase_10 AC 14 ms
6,144 KB
testcase_11 AC 12 ms
6,272 KB
testcase_12 AC 14 ms
6,144 KB
testcase_13 AC 12 ms
6,144 KB
testcase_14 AC 12 ms
6,272 KB
testcase_15 AC 14 ms
6,144 KB
testcase_16 AC 11 ms
6,144 KB
testcase_17 AC 13 ms
6,016 KB
testcase_18 AC 11 ms
6,272 KB
testcase_19 AC 16 ms
6,144 KB
testcase_20 AC 36 ms
6,272 KB
testcase_21 AC 12 ms
6,144 KB
testcase_22 AC 21 ms
6,272 KB
testcase_23 AC 12 ms
6,272 KB
testcase_24 AC 14 ms
6,016 KB
testcase_25 AC 37 ms
6,144 KB
testcase_26 AC 13 ms
6,272 KB
testcase_27 AC 23 ms
6,272 KB
testcase_28 AC 13 ms
6,272 KB
testcase_29 AC 11 ms
6,016 KB
testcase_30 AC 12 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
#yuki_338
import sys

ep=0.000001

def myround(n1,n2):
 x1=100.0*n1/(n1+n2)
 y1=x1+0.5
 z1=int(y1+ep)
 x2=100.0*n2/(n1+n2)
 y2=x2+0.5
 z2=int(y2+ep)
 return z1,z2

s=map(int,raw_input().split())
a=s[0]
if a==0:
 print 1
 sys.exit()
b=s[1]
if b==0:
 print 1
 sys.exit()
for i in xrange(1,201):
 for j in xrange(1,201):
  z1,z2=myround(i,j)
  if z1==a and z2==b:
   print i+j
   sys.exit()
0