結果

問題 No.169 何分かかるの!?
ユーザー バカらっくバカらっく
提出日時 2018-03-01 15:31:14
言語 Swift
(5.10.0)
結果
AC  
実行時間 4 ms / 1,000 ms
コード長 111 bytes
コンパイル時間 871 ms
コンパイル使用メモリ 120,600 KB
実行使用メモリ 7,792 KB
最終ジャッジ日時 2023-08-20 10:22:18
合計ジャッジ時間 2,096 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,572 KB
testcase_01 AC 3 ms
7,624 KB
testcase_02 AC 3 ms
7,536 KB
testcase_03 AC 3 ms
7,712 KB
testcase_04 AC 3 ms
7,616 KB
testcase_05 AC 4 ms
7,788 KB
testcase_06 AC 3 ms
7,556 KB
testcase_07 AC 4 ms
7,556 KB
testcase_08 AC 3 ms
7,616 KB
testcase_09 AC 4 ms
7,552 KB
testcase_10 AC 4 ms
7,532 KB
testcase_11 AC 3 ms
7,700 KB
testcase_12 AC 3 ms
7,784 KB
testcase_13 AC 4 ms
7,536 KB
testcase_14 AC 3 ms
7,608 KB
testcase_15 AC 3 ms
7,788 KB
testcase_16 AC 4 ms
7,536 KB
testcase_17 AC 3 ms
7,620 KB
testcase_18 AC 4 ms
7,652 KB
testcase_19 AC 4 ms
7,696 KB
testcase_20 AC 4 ms
7,556 KB
testcase_21 AC 3 ms
7,648 KB
testcase_22 AC 3 ms
7,792 KB
testcase_23 AC 4 ms
7,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let percent = Int(readLine()!)!
let doneVal = Int(readLine()!)!

let ans = doneVal*100/(100-percent)
print(ans)
0