結果

問題 No.3022 縛りFizzBuzz (Easy)
ユーザー mbanmban
提出日時 2017-04-21 04:50:07
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 993 bytes
コンパイル時間 2,515 ms
コンパイル使用メモリ 105,596 KB
実行使用メモリ 22,704 KB
最終ジャッジ日時 2023-09-27 07:48:29
合計ジャッジ時間 3,485 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
20,656 KB
testcase_01 AC 55 ms
22,704 KB
testcase_02 AC 55 ms
20,760 KB
testcase_03 AC 55 ms
20,872 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.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main(string[] args)
    {
        int N = int.Parse(Console.ReadLine());
        int one = -(int.MaxValue + int.MinValue);
        int three = one + one + one;
        int five = three + one + one;
        int fifteen = three * five;
        int zero = one-one;
        for (int i = one; i <= N; i++)
        {
            if (i % fifteen == zero)
            {
                Console.WriteLine("FizzBuzz");
            }
            else if (i % three == zero)
            {
                Console.WriteLine("Fizz");
            }
            else if(i%five == zero)
            {
                Console.WriteLine("Buzz");
            }
            else
            {
                Console.WriteLine(i.ToString());
            }
        }

    }
}

0