結果

問題 No.1250 汝は倍数なりや?
ユーザー RuteRute
提出日時 2020-10-09 21:48:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 165 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 79,632 KB
最終ジャッジ日時 2024-07-20 10:33:00
合計ジャッジ時間 30,017 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 763 ms
43,664 KB
testcase_01 AC 447 ms
44,052 KB
testcase_02 AC 448 ms
44,172 KB
testcase_03 AC 439 ms
44,056 KB
testcase_04 AC 437 ms
43,924 KB
testcase_05 AC 441 ms
43,920 KB
testcase_06 AC 444 ms
44,432 KB
testcase_07 AC 441 ms
44,052 KB
testcase_08 AC 460 ms
43,672 KB
testcase_09 AC 450 ms
43,924 KB
testcase_10 AC 447 ms
44,044 KB
testcase_11 AC 453 ms
44,176 KB
testcase_12 AC 451 ms
43,916 KB
testcase_13 AC 440 ms
44,428 KB
testcase_14 AC 445 ms
44,040 KB
testcase_15 WA -
testcase_16 AC 459 ms
44,320 KB
testcase_17 WA -
testcase_18 AC 441 ms
44,436 KB
testcase_19 AC 463 ms
44,056 KB
testcase_20 AC 448 ms
43,704 KB
testcase_21 AC 452 ms
44,056 KB
testcase_22 AC 444 ms
44,184 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 448 ms
44,436 KB
testcase_27 WA -
testcase_28 AC 455 ms
44,048 KB
testcase_29 WA -
testcase_30 AC 446 ms
44,180 KB
testcase_31 AC 455 ms
44,184 KB
testcase_32 AC 468 ms
44,292 KB
testcase_33 WA -
testcase_34 AC 591 ms
51,320 KB
testcase_35 AC 624 ms
58,844 KB
testcase_36 AC 612 ms
59,124 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 495 ms
50,760 KB
testcase_40 AC 505 ms
51,860 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 520 ms
59,844 KB
testcase_46 WA -
testcase_47 AC 493 ms
52,716 KB
testcase_48 AC 449 ms
44,048 KB
testcase_49 AC 452 ms
44,296 KB
testcase_50 AC 453 ms
44,096 KB
testcase_51 AC 449 ms
79,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N,H = map(int,input().split())
A = list(map(int,input().split()))
d = np.array(A)
S = d.prod()
if S%H == 0:
    print("YES")
else:
    print("NO")
0