結果

問題 No.1330 Multiply or Divide
ユーザー wolgnikwolgnik
提出日時 2021-01-08 21:38:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 282 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 101,760 KB
最終ジャッジ日時 2024-11-16 10:41:16
合計ジャッジ時間 5,276 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 90 ms
100,992 KB
testcase_02 WA -
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 103 ms
96,384 KB
testcase_07 WA -
testcase_08 AC 127 ms
99,968 KB
testcase_09 AC 128 ms
99,968 KB
testcase_10 AC 130 ms
100,028 KB
testcase_11 AC 138 ms
100,400 KB
testcase_12 AC 139 ms
100,164 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 39 ms
51,840 KB
testcase_17 WA -
testcase_18 AC 137 ms
100,096 KB
testcase_19 AC 138 ms
100,152 KB
testcase_20 AC 126 ms
100,096 KB
testcase_21 AC 129 ms
99,840 KB
testcase_22 AC 130 ms
99,712 KB
testcase_23 AC 100 ms
99,968 KB
testcase_24 AC 36 ms
51,712 KB
testcase_25 AC 35 ms
51,968 KB
testcase_26 AC 35 ms
51,968 KB
testcase_27 AC 36 ms
52,224 KB
testcase_28 AC 37 ms
52,224 KB
testcase_29 AC 36 ms
51,456 KB
testcase_30 AC 37 ms
51,840 KB
testcase_31 AC 40 ms
51,584 KB
testcase_32 AC 41 ms
51,968 KB
testcase_33 AC 41 ms
51,968 KB
testcase_34 AC 105 ms
95,744 KB
testcase_35 AC 61 ms
67,968 KB
testcase_36 AC 94 ms
91,264 KB
testcase_37 AC 95 ms
87,168 KB
testcase_38 AC 69 ms
76,160 KB
testcase_39 AC 60 ms
69,504 KB
testcase_40 AC 65 ms
72,704 KB
testcase_41 AC 53 ms
65,152 KB
testcase_42 AC 90 ms
84,864 KB
testcase_43 AC 95 ms
88,448 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M, P = map(int, input().split())
a = list(map(int, input().split()))
a.sort()
x = 1
for i in range(40):
  if x > M:
    print(i)
    break

  for j in range(N - 1, -1, -1):
    if (x * a[j]) % P:
      x *= a[j]
      break
else:
  print(-1)
0