結果

問題 No.604 誕生日のお小遣い
ユーザー Exp_iPiExp_iPi
提出日時 2018-01-08 15:09:59
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 104 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 24,832 KB
最終ジャッジ日時 2024-12-23 12:15:32
合計ジャッジ時間 22,663 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
17,408 KB
testcase_01 AC 81 ms
24,448 KB
testcase_02 AC 77 ms
17,280 KB
testcase_03 TLE -
testcase_04 AC 78 ms
17,280 KB
testcase_05 AC 78 ms
24,704 KB
testcase_06 AC 77 ms
17,408 KB
testcase_07 AC 81 ms
24,832 KB
testcase_08 AC 78 ms
17,536 KB
testcase_09 AC 76 ms
24,448 KB
testcase_10 AC 84 ms
17,280 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 101 ms
17,664 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 78 ms
17,536 KB
testcase_19 AC 77 ms
12,160 KB
testcase_20 AC 79 ms
12,032 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

A,B,C=gets.split.map &:to_i
Sum=0
k=1
loop{
  k%A==0 ? Sum+=B : Sum+=1
  break if Sum>=C
  k+=1
}
puts k
0