結果

問題 No.358 も~っと!門松列
ユーザー NoNo
提出日時 2018-01-31 01:17:35
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 1,000 ms
コード長 883 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 111,156 KB
実行使用メモリ 27,252 KB
最終ジャッジ日時 2024-06-09 11:56:42
合計ジャッジ時間 3,775 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
27,180 KB
testcase_01 AC 25 ms
25,140 KB
testcase_02 AC 24 ms
25,332 KB
testcase_03 AC 24 ms
26,924 KB
testcase_04 AC 25 ms
25,264 KB
testcase_05 AC 24 ms
25,396 KB
testcase_06 AC 24 ms
25,080 KB
testcase_07 AC 25 ms
27,052 KB
testcase_08 AC 24 ms
23,096 KB
testcase_09 AC 24 ms
25,136 KB
testcase_10 AC 23 ms
27,128 KB
testcase_11 AC 23 ms
25,140 KB
testcase_12 AC 24 ms
25,200 KB
testcase_13 AC 24 ms
23,088 KB
testcase_14 AC 23 ms
25,136 KB
testcase_15 AC 25 ms
27,180 KB
testcase_16 AC 26 ms
26,924 KB
testcase_17 AC 25 ms
25,524 KB
testcase_18 AC 24 ms
25,140 KB
testcase_19 AC 24 ms
25,456 KB
testcase_20 AC 24 ms
25,008 KB
testcase_21 AC 24 ms
27,252 KB
testcase_22 AC 24 ms
27,052 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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