結果

問題 No.604 誕生日のお小遣い
ユーザー ----
提出日時 2023-01-01 15:41:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 245 bytes
コンパイル時間 825 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-11-27 00:05:53
合計ジャッジ時間 22,128 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,312 KB
testcase_01 AC 26 ms
20,736 KB
testcase_02 AC 26 ms
17,188 KB
testcase_03 TLE -
testcase_04 AC 27 ms
17,188 KB
testcase_05 AC 26 ms
20,864 KB
testcase_06 AC 26 ms
17,184 KB
testcase_07 AC 26 ms
17,440 KB
testcase_08 AC 27 ms
17,312 KB
testcase_09 AC 27 ms
20,736 KB
testcase_10 AC 26 ms
17,192 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 29 ms
17,188 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 26 ms
17,192 KB
testcase_19 AC 26 ms
10,496 KB
testcase_20 AC 26 ms
10,368 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c = input().split()
a = int(a)
b = int(b)
c = int(c)
#年齢
i = 1
money = 0
answer = 0
while i != 0:
  answer = i % a
  if answer == 0:
    money = money + b
  else:
    money += 1
  if money > c or money == c:
    break
  i += 1
print(i)
0