結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | kuuso1 |
提出日時 | 2017-03-31 22:40:10 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 19 ms / 2,000 ms |
コード長 | 1,339 bytes |
コンパイル時間 | 701 ms |
コンパイル使用メモリ | 113,152 KB |
実行使用メモリ | 25,904 KB |
最終ジャッジ日時 | 2024-07-07 04:59:26 |
合計ジャッジ時間 | 1,269 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 19 ms
23,856 KB |
testcase_01 | AC | 19 ms
25,780 KB |
testcase_02 | AC | 19 ms
23,476 KB |
testcase_03 | AC | 19 ms
25,904 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ int zero = N - N; int one = N/N; int three = one + one + one; int five = three + one + one; int fifteen = three * five; List<String> L = new List<string>(); for(int i=one;i<=N;i++){ if(i % fifteen == zero){ L.Add("FizzBuzz"); } else if (i% three == zero){ L.Add("Fizz"); } else if (i % five == zero){ L.Add("Buzz"); } else { L.Add(i.ToString()); } } Console.WriteLine(String.Join("\n",L)); } int N; public Sol(){ N = ri(); } static String rs(){return Console.ReadLine();} static int ri(){return int.Parse(Console.ReadLine());} static long rl(){return long.Parse(Console.ReadLine());} static double rd(){return double.Parse(Console.ReadLine());} static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);} static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));} static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));} static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));} }