結果
問題 | No.311 z in FizzBuzzString |
ユーザー | tanukidon |
提出日時 | 2018-03-15 22:10:02 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 110 bytes |
コンパイル時間 | 449 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 19,360 KB |
最終ジャッジ日時 | 2024-09-24 22:05:36 |
合計ジャッジ時間 | 4,015 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
k = 0 gets.chomp.to_i.times do |i| if i+1 % 15 == 0 k +=4 elsif i+1 % 3 == 0 || i+1 % 5 == 0 k +=2 end end p k