結果
問題 | No.311 z in FizzBuzzString |
ユーザー | maru |
提出日時 | 2017-09-27 15:33:46 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 966 bytes |
コンパイル時間 | 3,668 ms |
コンパイル使用メモリ | 77,208 KB |
実行使用メモリ | 54,260 KB |
最終ジャッジ日時 | 2024-09-24 22:00:07 |
合計ジャッジ時間 | 5,464 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
54,100 KB |
testcase_01 | AC | 131 ms
54,260 KB |
testcase_02 | AC | 132 ms
54,144 KB |
testcase_03 | AC | 130 ms
53,956 KB |
testcase_04 | AC | 130 ms
54,012 KB |
testcase_05 | AC | 132 ms
54,108 KB |
testcase_06 | AC | 133 ms
53,940 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
ソースコード
import java.util.Scanner; public class Fizzbuzz { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int threeAndFive = koubaisuu(5, 3); StringBuilder sb = new StringBuilder(); for (int i = 1; i <= N; i++) { if (i % threeAndFive == 0) { sb.append("FizzBuzz"); } else if (i % 3 == 0) { sb.append("Fizz"); } else if (i % 5 == 0) { sb.append("Buzz"); } } int count = 0; for (int i = 0; i < sb.length(); i++) { if (sb.charAt(i) == 'z') { count++; } } System.out.println(count); } // 最大公約数もとめてれる private static int saidai(int a, int b) { int r; while ((r = a % b) != 0) { a = b; b = r; } return b; } //最小公倍数 private static int koubaisuu(int a ,int b) { int gcd = getGCD(a, b); return a * b /gcd; } //最大公倍数 private static int getGCD(int m, int n) { return n == 0 ? m : getGCD(n, m % n); } }