結果
問題 | No.311 z in FizzBuzzString |
ユーザー | takutaku |
提出日時 | 2020-09-17 13:47:34 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 725 bytes |
コンパイル時間 | 2,178 ms |
コンパイル使用メモリ | 76,152 KB |
実行使用メモリ | 65,732 KB |
最終ジャッジ日時 | 2024-09-24 22:33:57 |
合計ジャッジ時間 | 6,268 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 155 ms
54,984 KB |
testcase_01 | WA | - |
testcase_02 | AC | 155 ms
55,004 KB |
testcase_03 | AC | 156 ms
54,968 KB |
testcase_04 | AC | 151 ms
55,100 KB |
testcase_05 | AC | 146 ms
56,976 KB |
testcase_06 | AC | 160 ms
57,352 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { // 標準入力を受け取る Scanner sc = new Scanner(System.in); Long n = sc.nextLong(); String result = ""; // 変換ループ for(long l = 1; l <= n; l++) { if(l % 15 == 0) { result = result + "FizzBuzz"; }else if(l % 3 == 0) { result = result + "Fizz"; }else if(l % 5 == 0) { result = result + "Buzz"; }else { result = result + l; } } String[] s = result.split("z",0); System.out.println(s.length + 1); } }