結果

問題 No.1250 汝は倍数なりや?
ユーザー 1644吉田英陽1644吉田英陽
提出日時 2020-11-02 22:12:22
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,049 bytes
コンパイル時間 708 ms
コンパイル使用メモリ 109,704 KB
実行使用メモリ 45,904 KB
最終ジャッジ日時 2024-07-22 08:09:10
合計ジャッジ時間 3,988 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
23,660 KB
testcase_01 AC 23 ms
26,012 KB
testcase_02 AC 23 ms
24,108 KB
testcase_03 AC 24 ms
25,872 KB
testcase_04 AC 23 ms
22,196 KB
testcase_05 AC 22 ms
23,964 KB
testcase_06 AC 22 ms
23,964 KB
testcase_07 AC 22 ms
23,656 KB
testcase_08 AC 22 ms
23,664 KB
testcase_09 AC 22 ms
23,724 KB
testcase_10 AC 22 ms
23,912 KB
testcase_11 WA -
testcase_12 AC 21 ms
22,196 KB
testcase_13 AC 22 ms
23,912 KB
testcase_14 AC 23 ms
25,700 KB
testcase_15 AC 22 ms
25,956 KB
testcase_16 AC 23 ms
24,108 KB
testcase_17 AC 23 ms
25,824 KB
testcase_18 AC 22 ms
23,960 KB
testcase_19 AC 22 ms
24,116 KB
testcase_20 AC 22 ms
23,792 KB
testcase_21 AC 22 ms
25,888 KB
testcase_22 AC 22 ms
24,092 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 26 ms
24,236 KB
testcase_27 WA -
testcase_28 AC 26 ms
24,492 KB
testcase_29 WA -
testcase_30 AC 26 ms
24,048 KB
testcase_31 AC 25 ms
26,412 KB
testcase_32 AC 26 ms
24,396 KB
testcase_33 WA -
testcase_34 AC 64 ms
31,512 KB
testcase_35 AC 96 ms
43,740 KB
testcase_36 AC 97 ms
42,260 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 62 ms
31,448 KB
testcase_40 AC 69 ms
40,436 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 97 ms
42,572 KB
testcase_46 WA -
testcase_47 AC 72 ms
40,964 KB
testcase_48 AC 24 ms
25,964 KB
testcase_49 AC 23 ms
23,920 KB
testcase_50 AC 23 ms
23,984 KB
testcase_51 AC 22 ms
23,980 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.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp84
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] str = Console.ReadLine().Split();
            int n = int.Parse(str[0]);
            int h = int.Parse(str[1]);
            int kakewa = 1;
            int[] a = new int[n];
            string[] str2 = Console.ReadLine().Split();
            for(int i = 0; i < n; i++)
            {
                a[i] = int.Parse(str2[i]);
            }
            for(int i = 0; i < n; i++)
            {
                kakewa = kakewa * a[i];
            }
            if (kakewa < 0)
            {
                kakewa *= -1;
            }
            if (kakewa % h == 0)
            {
                Console.WriteLine("YES");
                Console.ReadLine();
            }
            else
            {
                Console.WriteLine("NO");
                Console.ReadLine();
            }
        }
    }
}
0