結果

問題 No.634 硬貨の枚数1
ユーザー No
提出日時 2018-01-26 01:49:45
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 829 bytes
コンパイル時間 1,207 ms
コンパイル使用メモリ 107,392 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-12-26 16:02:26
合計ジャッジ時間 17,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 72 WA * 3
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Generic;
using System.Linq;

namespace y
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            var li = new List<int>();

            int y = (int)Math.Sqrt(n) + 1000;
            for (int i = 1; i <= y; i++)
            {
                li.Add(i * (i + 1) / 2);
            }

            for (int i = 0; i < li.Count; i++)
            {
                if (n == li[i])
                {
                    Console.WriteLine(1);
                    return;
                }
                if (li.Count(x => x + li[i] == n) > 0)
                {
                    Console.WriteLine(2);
                    return;
                }
            }

            Console.WriteLine(3);
        }
    }
}
0