結果

問題 No.3022 縛りFizzBuzz (Easy)
ユーザー kuuso1kuuso1
提出日時 2017-03-31 22:40:10
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,339 bytes
コンパイル時間 2,441 ms
コンパイル使用メモリ 105,348 KB
実行使用メモリ 20,880 KB
最終ジャッジ日時 2023-09-21 10:59:50
合計ジャッジ時間 3,493 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
20,696 KB
testcase_01 AC 55 ms
20,880 KB
testcase_02 AC 56 ms
20,680 KB
testcase_03 AC 55 ms
20,668 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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));}
}
0