結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | zizi4n5 |
提出日時 | 2017-07-01 14:13:14 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 23 ms / 5,000 ms |
コード長 | 498 bytes |
コンパイル時間 | 756 ms |
コンパイル使用メモリ | 104,700 KB |
実行使用メモリ | 23,836 KB |
最終ジャッジ日時 | 2024-10-05 03:33:18 |
合計ジャッジ時間 | 1,378 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
23,784 KB |
testcase_01 | AC | 21 ms
23,780 KB |
testcase_02 | AC | 21 ms
21,936 KB |
testcase_03 | AC | 23 ms
23,836 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class FizzBuzz { static void Main() { string s = Console.ReadLine(); string[] t = s.Split(' '); int n = int.Parse(t[0]); for (int i = 1; i <= n; i++) { if (i % 15 == 0) { Console.WriteLine("FizzBuzz"); } else if (i % 3 == 0) { Console.WriteLine("Fizz"); } else if (i % 5 == 0) { Console.WriteLine("Buzz"); } else { Console.WriteLine("{0}", i); } } } }