結果

問題 No.311 z in FizzBuzzString
ユーザー MaxMellonMaxMellon
提出日時 2015-12-21 17:11:14
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 118 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,104 KB
最終ジャッジ日時 2024-09-24 21:28:09
合計ジャッジ時間 3,766 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
19,104 KB
testcase_01 AC 86 ms
12,416 KB
testcase_02 AC 82 ms
12,416 KB
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 82 ms
12,160 KB
testcase_05 AC 81 ms
12,160 KB
testcase_06 AC 86 ms
12,288 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.chomp.to_i
count = 0;
(1..N).each do |e|
  count += 2 if e % 3 == 0
  count += 2 if e % 5 == 0
end
puts count
0