結果
| 問題 |
No.8022 縛りFizzBuzz (Easy)
|
| コンテスト | |
| ユーザー |
mban
|
| 提出日時 | 2017-04-21 04:50:07 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 21 ms / 2,000 ms |
| コード長 | 993 bytes |
| コンパイル時間 | 817 ms |
| コンパイル使用メモリ | 102,656 KB |
| 実行使用メモリ | 17,664 KB |
| 最終ジャッジ日時 | 2024-07-20 01:56:41 |
| 合計ジャッジ時間 | 1,560 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
コンパイルメッセージ
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.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());
}
}
}
}
mban