結果
問題 | No.311 z in FizzBuzzString |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-05-03 08:25:32 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 676 bytes |
コンパイル時間 | 1,834 ms |
コンパイル使用メモリ | 74,468 KB |
実行使用メモリ | 58,484 KB |
最終ジャッジ日時 | 2024-09-24 21:57:29 |
合計ジャッジ時間 | 5,281 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
57,084 KB |
testcase_01 | AC | 53 ms
49,952 KB |
testcase_02 | AC | 53 ms
50,344 KB |
testcase_03 | AC | 52 ms
49,980 KB |
testcase_04 | AC | 52 ms
50,132 KB |
testcase_05 | AC | 52 ms
49,732 KB |
testcase_06 | AC | 53 ms
52,244 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import static java.lang.System.in; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(in)); long N = Long.parseLong(reader.readLine()); long counter = 0; for (long i = 3; i <= N; i++) { if (i % 15 == 0) { counter += 4; } else if (i % 5 == 0) { counter += 2; } else if (i % 3 == 0) { counter += 2; } } System.out.println(counter); } }