結果

問題 No.169 何分かかるの!?
ユーザー yuki2006yuki2006
提出日時 2015-03-22 20:21:11
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 76 ms / 1,000 ms
コード長 143 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-06-29 00:05:14
合計ジャッジ時間 3,221 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,136 KB
testcase_01 AC 74 ms
75,392 KB
testcase_02 AC 73 ms
75,160 KB
testcase_03 AC 75 ms
75,392 KB
testcase_04 AC 76 ms
75,136 KB
testcase_05 AC 74 ms
75,284 KB
testcase_06 AC 74 ms
75,520 KB
testcase_07 AC 74 ms
75,412 KB
testcase_08 AC 74 ms
75,648 KB
testcase_09 AC 75 ms
75,580 KB
testcase_10 AC 75 ms
75,136 KB
testcase_11 AC 74 ms
75,276 KB
testcase_12 AC 75 ms
75,512 KB
testcase_13 AC 73 ms
75,264 KB
testcase_14 AC 73 ms
75,144 KB
testcase_15 AC 74 ms
75,520 KB
testcase_16 AC 75 ms
75,136 KB
testcase_17 AC 74 ms
75,648 KB
testcase_18 AC 75 ms
75,520 KB
testcase_19 AC 74 ms
75,564 KB
testcase_20 AC 75 ms
75,648 KB
testcase_21 AC 75 ms
75,392 KB
testcase_22 AC 74 ms
75,392 KB
testcase_23 AC 75 ms
75,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

K = int(raw_input())
S = int(raw_input())

assert 1 <= K <= 99
assert 1 <= S <= 10 ** 6

print (100 * S) // (100 - K)
0