結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | shinwisteria |
提出日時 | 2017-03-31 22:47:19 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 138 ms / 2,000 ms |
コード長 | 623 bytes |
コンパイル時間 | 3,465 ms |
コンパイル使用メモリ | 74,868 KB |
実行使用メモリ | 41,280 KB |
最終ジャッジ日時 | 2024-07-07 05:03:03 |
合計ジャッジ時間 | 4,704 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
41,224 KB |
testcase_01 | AC | 134 ms
41,280 KB |
testcase_02 | AC | 132 ms
41,252 KB |
testcase_03 | AC | 138 ms
41,280 KB |
ソースコード
import java.util.Scanner; public class FizzBuzz { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner s = new Scanner(System.in); int N = s.nextInt(); s.close(); String str = "abcdef"; int t = str.indexOf("d"); int f = str.indexOf("f"); int zero = str.indexOf("a"); for(int i = str.indexOf("b");i <= N;i++){ if(i % t == zero&&i % f == zero){ System.out.println("FizzBuzz"); }else if(i%t == zero){ System.out.println("Fizz"); }else if(i % f == zero){ System.out.println("Buzz"); }else{ System.out.println(i); } } } }