結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | のぶたかひろ |
提出日時 | 2024-10-15 17:45:27 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 52 ms / 5,000 ms |
コード長 | 386 bytes |
コンパイル時間 | 7,671 ms |
コンパイル使用メモリ | 165,920 KB |
実行使用メモリ | 184,224 KB |
最終ジャッジ日時 | 2024-10-15 17:45:37 |
合計ジャッジ時間 | 8,746 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
28,928 KB |
testcase_01 | AC | 52 ms
28,928 KB |
testcase_02 | AC | 52 ms
28,800 KB |
testcase_03 | AC | 52 ms
184,224 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (99 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; public class Test{ static void Main(){ string s = Console.ReadLine(); int input = int.Parse(s); string op; for(int i = 1; i <= input; i++){ if(i % 15 == 0){ op = "FizzBuzz"; }else if(i % 3 == 0){ op = "Fizz"; }else if(i % 5 == 0){ op = "Buzz"; }else{ op = i.ToString(); } Console.WriteLine("{0}",op); } } }