結果

問題 No.311 z in FizzBuzzString
ユーザー marumaru
提出日時 2016-03-23 12:39:24
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 395 bytes
コンパイル時間 3,303 ms
コンパイル使用メモリ 75,184 KB
実行使用メモリ 61,892 KB
最終ジャッジ日時 2023-10-25 02:42:49
合計ジャッジ時間 7,265 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
61,776 KB
testcase_01 AC 126 ms
57,436 KB
testcase_02 AC 127 ms
57,388 KB
testcase_03 AC 125 ms
57,492 KB
testcase_04 AC 127 ms
57,344 KB
testcase_05 AC 127 ms
57,632 KB
testcase_06 AC 128 ms
57,740 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_311 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		long n = stdIn.nextLong();
		
		long kosu = 0;
		
		for (long i = 1; i <= n; i++) {
			if ((i % 3 == 0) && (i % 5 == 0)) {
				kosu += 4;
			} else if ((i % 3 == 0) || (i % 5 == 0)) {
				kosu += 2;
			} else {
			}
		}
		System.out.print(kosu);
	}
}
0