結果

問題 No.311 z in FizzBuzzString
ユーザー bellbell
提出日時 2021-02-23 17:08:04
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 542 bytes
コンパイル時間 2,039 ms
コンパイル使用メモリ 76,192 KB
実行使用メモリ 64,996 KB
最終ジャッジ日時 2024-09-24 22:35:45
合計ジャッジ時間 6,069 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
61,036 KB
testcase_01 AC 132 ms
54,208 KB
testcase_02 AC 132 ms
54,092 KB
testcase_03 AC 130 ms
53,988 KB
testcase_04 AC 131 ms
53,952 KB
testcase_05 AC 134 ms
53,960 KB
testcase_06 AC 138 ms
54,172 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		String temp ="";
		long count = 0;
		for (int i = 1; i <= n; i++) {
			if (i % 3 == 0 && i % 5 ==0) {
				temp += "FizzBuzz";
			} else if (i % 3 == 0) {
				temp += "Fizz";
			}else if (i % 5 == 0) {
				temp +="Buzz";
			}
		}
		for (int i = 0; i < temp.length(); i++){
			if (temp.substring(i , i+1).equals("z")){
				count++;
			}
		}
		System.out.println(count);
		sc.close();
	}
}
0