結果

問題 No.634 硬貨の枚数1
ユーザー NoNo
提出日時 2018-01-26 01:44:45
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 827 bytes
コンパイル時間 1,894 ms
コンパイル使用メモリ 106,496 KB
実行使用メモリ 28,752 KB
最終ジャッジ日時 2024-06-08 01:48:54
合計ジャッジ時間 10,905 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
18,304 KB
testcase_01 AC 24 ms
18,304 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 25 ms
18,304 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 23 ms
18,304 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 24 ms
18,560 KB
testcase_12 WA -
testcase_13 AC 24 ms
18,304 KB
testcase_14 AC 40 ms
18,560 KB
testcase_15 AC 149 ms
18,432 KB
testcase_16 AC 77 ms
18,304 KB
testcase_17 AC 93 ms
18,304 KB
testcase_18 AC 77 ms
18,432 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 166 ms
18,176 KB
testcase_22 AC 143 ms
18,304 KB
testcase_23 AC 72 ms
18,560 KB
testcase_24 AC 23 ms
18,176 KB
testcase_25 AC 25 ms
18,432 KB
testcase_26 AC 24 ms
18,176 KB
testcase_27 AC 25 ms
18,176 KB
testcase_28 AC 24 ms
18,304 KB
testcase_29 AC 25 ms
18,432 KB
testcase_30 AC 23 ms
18,560 KB
testcase_31 AC 23 ms
18,432 KB
testcase_32 AC 24 ms
18,176 KB
testcase_33 AC 24 ms
18,560 KB
testcase_34 AC 32 ms
18,432 KB
testcase_35 AC 62 ms
18,432 KB
testcase_36 AC 107 ms
18,432 KB
testcase_37 AC 80 ms
18,432 KB
testcase_38 AC 38 ms
18,176 KB
testcase_39 AC 143 ms
18,432 KB
testcase_40 AC 107 ms
18,304 KB
testcase_41 AC 97 ms
18,304 KB
testcase_42 AC 137 ms
18,304 KB
testcase_43 AC 71 ms
18,432 KB
testcase_44 AC 25 ms
18,304 KB
testcase_45 AC 27 ms
18,432 KB
testcase_46 AC 42 ms
18,432 KB
testcase_47 WA -
testcase_48 AC 23 ms
18,304 KB
testcase_49 WA -
testcase_50 AC 172 ms
18,560 KB
testcase_51 AC 38 ms
18,432 KB
testcase_52 AC 23 ms
18,176 KB
testcase_53 AC 23 ms
18,432 KB
testcase_54 AC 24 ms
18,304 KB
testcase_55 AC 165 ms
18,304 KB
testcase_56 AC 176 ms
18,560 KB
testcase_57 AC 163 ms
18,560 KB
testcase_58 AC 164 ms
18,432 KB
testcase_59 AC 164 ms
18,432 KB
testcase_60 AC 163 ms
18,432 KB
testcase_61 AC 166 ms
18,560 KB
testcase_62 AC 163 ms
18,432 KB
testcase_63 AC 163 ms
18,560 KB
testcase_64 AC 167 ms
18,560 KB
testcase_65 AC 162 ms
18,560 KB
testcase_66 AC 164 ms
18,304 KB
testcase_67 AC 162 ms
18,432 KB
testcase_68 AC 169 ms
18,688 KB
testcase_69 AC 173 ms
18,432 KB
testcase_70 AC 170 ms
18,432 KB
testcase_71 AC 167 ms
18,560 KB
testcase_72 AC 164 ms
18,304 KB
testcase_73 AC 162 ms
18,432 KB
testcase_74 AC 160 ms
18,304 KB
testcase_75 AC 161 ms
18,432 KB
testcase_76 AC 24 ms
18,176 KB
testcase_77 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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) + 1;
            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