結果

問題 No.169 何分かかるの!?
ユーザー 310icecrystal310icecrystal
提出日時 2023-06-23 07:31:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 1,000 ms
コード長 72 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 87,088 KB
実行使用メモリ 71,616 KB
最終ジャッジ日時 2023-09-13 02:14:34
合計ジャッジ時間 3,243 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,388 KB
testcase_01 AC 67 ms
71,468 KB
testcase_02 AC 65 ms
71,288 KB
testcase_03 AC 66 ms
71,516 KB
testcase_04 AC 67 ms
71,420 KB
testcase_05 AC 67 ms
71,280 KB
testcase_06 AC 67 ms
71,268 KB
testcase_07 AC 68 ms
71,564 KB
testcase_08 AC 67 ms
71,460 KB
testcase_09 AC 67 ms
71,260 KB
testcase_10 AC 65 ms
71,596 KB
testcase_11 AC 66 ms
71,512 KB
testcase_12 AC 68 ms
71,500 KB
testcase_13 AC 68 ms
71,448 KB
testcase_14 AC 67 ms
71,424 KB
testcase_15 AC 66 ms
71,616 KB
testcase_16 AC 69 ms
71,288 KB
testcase_17 AC 67 ms
71,264 KB
testcase_18 AC 66 ms
71,556 KB
testcase_19 AC 67 ms
71,128 KB
testcase_20 AC 65 ms
71,400 KB
testcase_21 AC 63 ms
71,372 KB
testcase_22 AC 63 ms
71,132 KB
testcase_23 AC 64 ms
71,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#100:100-K=x:S
K = int(input())
S = int(input())

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