結果

問題 No.358 も~っと!門松列
ユーザー NoNo
提出日時 2018-01-31 01:16:53
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 882 bytes
コンパイル時間 3,747 ms
コンパイル使用メモリ 111,284 KB
実行使用メモリ 27,436 KB
最終ジャッジ日時 2024-06-09 11:55:41
合計ジャッジ時間 2,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,072 KB
testcase_01 AC 28 ms
19,072 KB
testcase_02 AC 28 ms
19,072 KB
testcase_03 AC 28 ms
18,944 KB
testcase_04 AC 27 ms
19,072 KB
testcase_05 AC 27 ms
19,072 KB
testcase_06 AC 28 ms
19,072 KB
testcase_07 AC 29 ms
19,072 KB
testcase_08 AC 28 ms
18,944 KB
testcase_09 AC 28 ms
19,072 KB
testcase_10 AC 28 ms
19,072 KB
testcase_11 AC 28 ms
19,072 KB
testcase_12 AC 28 ms
18,816 KB
testcase_13 AC 28 ms
19,072 KB
testcase_14 AC 29 ms
18,688 KB
testcase_15 AC 29 ms
19,072 KB
testcase_16 AC 29 ms
19,072 KB
testcase_17 AC 29 ms
19,072 KB
testcase_18 AC 28 ms
18,944 KB
testcase_19 AC 27 ms
18,944 KB
testcase_20 AC 28 ms
19,072 KB
testcase_21 AC 27 ms
18,944 KB
testcase_22 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.Linq;

namespace y
{
    class Program
    {
        static void Main(string[] args)
        {
            var a = Console.ReadLine().Split().Select(x => int.Parse(x)).ToArray();
            int cnt = 0;
            if ((a[0] < a[1] && a[1] > a[2] && a[0] != a[2]) || (a[0] > a[1] && a[1] < a[2] && a[0] != a[2]))
            {
                Console.WriteLine("INF");
            }
            else
            {
                for (int i = 2; i < 1000; i++)
                {
                    int b1 = a[0] % i;
                    int b2 = a[1] % i;
                    int b3 = a[2] % i;
                    if ((b1 < b2 && b2 > b3 && b1 != b3) || (b1 > b2 && b2 < b3 && b1 != b3))
                    {
                        cnt++;
                    }
                }
                Console.WriteLine(cnt);
            }
        }
    }
}
0