結果

問題 No.604 誕生日のお小遣い
ユーザー kazu116kazu116
提出日時 2019-05-23 09:32:04
言語 Swift
(6.0.3)
結果
TLE  
実行時間 -
コード長 282 bytes
コンパイル時間 971 ms
コンパイル使用メモリ 126,028 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-11-30 14:09:08
合計ジャッジ時間 14,057 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
16,036 KB
testcase_01 AC 7 ms
17,792 KB
testcase_02 AC 7 ms
15,908 KB
testcase_03 TLE -
testcase_04 AC 8 ms
15,904 KB
testcase_05 AC 8 ms
17,792 KB
testcase_06 AC 9 ms
15,908 KB
testcase_07 AC 8 ms
17,536 KB
testcase_08 AC 8 ms
16,036 KB
testcase_09 AC 8 ms
17,536 KB
testcase_10 AC 9 ms
15,904 KB
testcase_11 AC 101 ms
9,088 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 8 ms
9,216 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 8 ms
9,344 KB
testcase_19 AC 8 ms
9,344 KB
testcase_20 AC 8 ms
9,216 KB
testcase_21 AC 38 ms
9,216 KB
testcase_22 AC 63 ms
9,088 KB
testcase_23 AC 92 ms
17,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0