結果
問題 | No.311 z in FizzBuzzString |
ユーザー | samplelpmas |
提出日時 | 2016-12-23 09:54:36 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 444 bytes |
コンパイル時間 | 2,376 ms |
コンパイル使用メモリ | 74,964 KB |
実行使用メモリ | 61,864 KB |
最終ジャッジ日時 | 2024-09-24 21:52:21 |
合計ジャッジ時間 | 5,961 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long N = sc.nextLong(); long zCount = 0; for (long i = 0; i < N; i++) { if (i % 3 == 0) { zCount += 2; } if (i % 5 == 0) { zCount += 2; } } System.out.println(zCount); } }