結果

問題 No.311 z in FizzBuzzString
ユーザー rf141rf141
提出日時 2015-12-04 23:37:42
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 383 bytes
コンパイル時間 3,281 ms
コンパイル使用メモリ 74,564 KB
実行使用メモリ 62,152 KB
最終ジャッジ日時 2023-10-25 02:34:28
合計ジャッジ時間 7,290 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
61,744 KB
testcase_01 AC 129 ms
57,640 KB
testcase_02 AC 126 ms
57,212 KB
testcase_03 AC 129 ms
57,460 KB
testcase_04 AC 129 ms
57,448 KB
testcase_05 AC 128 ms
57,488 KB
testcase_06 AC 131 ms
57,500 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class FizzBuzzString{
	
	static int fi = 4;
	static int tf = 2;

	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		long n = scan.nextLong();
		long res = 0;
		for(long i = 1; i <= n; i++){
			if(i%15==0){
				res+=fi;
				continue;
			}else if(i%5 == 0 || i%3 == 0){	
				res+=tf;
			}
		}
		System.out.println(res);
	}
}
0