結果

問題 No.634 硬貨の枚数1
ユーザー NoNo
提出日時 2018-01-26 01:48:17
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 830 bytes
コンパイル時間 2,787 ms
コンパイル使用メモリ 105,728 KB
実行使用メモリ 24,320 KB
最終ジャッジ日時 2024-06-08 01:52:18
合計ジャッジ時間 49,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,577 ms
24,320 KB
testcase_01 AC 24 ms
18,304 KB
testcase_02 AC 24 ms
18,304 KB
testcase_03 AC 29 ms
18,304 KB
testcase_04 AC 1,617 ms
18,816 KB
testcase_05 AC 25 ms
18,304 KB
testcase_06 AC 31 ms
18,560 KB
testcase_07 AC 31 ms
18,560 KB
testcase_08 AC 1,594 ms
18,688 KB
testcase_09 AC 23 ms
18,432 KB
testcase_10 AC 28 ms
18,304 KB
testcase_11 AC 1,596 ms
18,816 KB
testcase_12 AC 26 ms
18,688 KB
testcase_13 AC 1,617 ms
18,688 KB
testcase_14 AC 1,909 ms
18,936 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 106 ms
18,176 KB
testcase_20 AC 180 ms
18,304 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,582 ms
18,816 KB
testcase_25 AC 1,572 ms
18,816 KB
testcase_26 AC 1,582 ms
18,688 KB
testcase_27 AC 1,590 ms
18,816 KB
testcase_28 AC 1,589 ms
18,560 KB
testcase_29 AC 1,611 ms
18,944 KB
testcase_30 AC 1,581 ms
18,688 KB
testcase_31 AC 1,603 ms
18,560 KB
testcase_32 AC 1,573 ms
18,688 KB
testcase_33 AC 1,571 ms
18,944 KB
testcase_34 AC 1,926 ms
19,072 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 27 ms
18,432 KB
testcase_45 AC 1,771 ms
18,688 KB
testcase_46 AC 163 ms
18,432 KB
testcase_47 AC 424 ms
18,516 KB
testcase_48 AC 24 ms
18,424 KB
testcase_49 AC 52 ms
18,432 KB
testcase_50 TLE -
testcase_51 AC 1,996 ms
18,800 KB
testcase_52 AC 24 ms
18,176 KB
testcase_53 AC 1,660 ms
18,688 KB
testcase_54 AC 1,665 ms
18,688 KB
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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) + 10000;
            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