結果

問題 No.1250 汝は倍数なりや?
ユーザー keymoonkeymoon
提出日時 2020-12-31 21:32:06
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 794 bytes
コンパイル時間 1,197 ms
コンパイル使用メモリ 110,400 KB
実行使用メモリ 45,872 KB
最終ジャッジ日時 2024-10-09 20:51:23
合計ジャッジ時間 6,684 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
27,048 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 29 ms
27,124 KB
testcase_07 AC 29 ms
22,832 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 31 ms
25,132 KB
testcase_12 WA -
testcase_13 AC 31 ms
27,124 KB
testcase_14 AC 30 ms
25,132 KB
testcase_15 AC 30 ms
24,876 KB
testcase_16 WA -
testcase_17 AC 29 ms
22,840 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 31 ms
25,092 KB
testcase_21 WA -
testcase_22 AC 30 ms
25,264 KB
testcase_23 AC 36 ms
25,520 KB
testcase_24 WA -
testcase_25 AC 35 ms
23,608 KB
testcase_26 AC 34 ms
25,468 KB
testcase_27 WA -
testcase_28 AC 35 ms
25,772 KB
testcase_29 WA -
testcase_30 AC 35 ms
25,492 KB
testcase_31 AC 35 ms
27,640 KB
testcase_32 AC 35 ms
27,564 KB
testcase_33 AC 126 ms
45,872 KB
testcase_34 AC 78 ms
32,624 KB
testcase_35 AC 115 ms
44,728 KB
testcase_36 AC 119 ms
45,108 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 88 ms
41,288 KB
testcase_41 WA -
testcase_42 AC 65 ms
31,040 KB
testcase_43 AC 118 ms
42,676 KB
testcase_44 WA -
testcase_45 AC 120 ms
43,004 KB
testcase_46 AC 58 ms
30,132 KB
testcase_47 WA -
testcase_48 AC 29 ms
25,208 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 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;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {
        var nh = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var n = nh[0];
        long h = nh[1];
        foreach (var a in Console.ReadLine().Split().Select(int.Parse)) h = GCD(h, a);
        Console.WriteLine(h == 1 ? "YES" : "NO");
    }

    static long GCD(long a, long b)
    {
        while (true)
        {
            if (b == 0) return a;
            a %= b;
            if (a == 0) return b;
            b %= a;
        }
    }
}
0