結果

問題 No.169 何分かかるの!?
ユーザー mlihua09mlihua09
提出日時 2020-08-27 15:32:28
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 71 ms / 1,000 ms
コード長 65 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 87,152 KB
実行使用メモリ 71,592 KB
最終ジャッジ日時 2023-08-07 14:56:01
合計ジャッジ時間 3,325 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,212 KB
testcase_01 AC 71 ms
71,268 KB
testcase_02 AC 70 ms
71,592 KB
testcase_03 AC 69 ms
71,224 KB
testcase_04 AC 70 ms
71,428 KB
testcase_05 AC 68 ms
71,556 KB
testcase_06 AC 69 ms
71,228 KB
testcase_07 AC 69 ms
71,276 KB
testcase_08 AC 70 ms
71,228 KB
testcase_09 AC 69 ms
71,228 KB
testcase_10 AC 69 ms
71,008 KB
testcase_11 AC 69 ms
71,544 KB
testcase_12 AC 70 ms
71,340 KB
testcase_13 AC 68 ms
71,364 KB
testcase_14 AC 69 ms
71,528 KB
testcase_15 AC 69 ms
71,340 KB
testcase_16 AC 68 ms
71,268 KB
testcase_17 AC 66 ms
71,264 KB
testcase_18 AC 68 ms
71,220 KB
testcase_19 AC 68 ms
71,212 KB
testcase_20 AC 68 ms
71,548 KB
testcase_21 AC 67 ms
71,544 KB
testcase_22 AC 67 ms
71,016 KB
testcase_23 AC 68 ms
71,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


K = int(input())

S = int(input())

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