結果
問題 | No.604 誕生日のお小遣い |
ユーザー | kazu116 |
提出日時 | 2019-05-23 09:32:04 |
言語 | Swift (5.10.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 282 bytes |
コンパイル時間 | 1,208 ms |
コンパイル使用メモリ | 128,480 KB |
実行使用メモリ | 14,592 KB |
最終ジャッジ日時 | 2024-05-07 19:06:46 |
合計ジャッジ時間 | 3,888 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
14,592 KB |
testcase_01 | AC | 7 ms
9,088 KB |
testcase_02 | AC | 8 ms
9,088 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
let input:[Int] = readLine()!.split(separator: " ").map{Int($0)!} var money:Int = 0 var age:Int = 1 while true { if age % input[0] != 0 { money += 1 } else { money += input[1] } if money >= input[2] { break } age += 1 } print(age)