結果

問題 No.1330 Multiply or Divide
ユーザー ryuusagiryuusagi
提出日時 2021-01-08 22:42:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 220 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 215,808 KB
最終ジャッジ日時 2024-11-16 14:03:20
合計ジャッジ時間 27,649 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 92 ms
215,808 KB
testcase_02 AC 38 ms
57,088 KB
testcase_03 WA -
testcase_04 AC 419 ms
80,384 KB
testcase_05 AC 38 ms
167,936 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 129 ms
118,144 KB
testcase_09 TLE -
testcase_10 AC 130 ms
117,760 KB
testcase_11 AC 129 ms
113,408 KB
testcase_12 TLE -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 38 ms
52,224 KB
testcase_17 WA -
testcase_18 AC 128 ms
112,384 KB
testcase_19 AC 125 ms
112,512 KB
testcase_20 AC 127 ms
112,384 KB
testcase_21 AC 130 ms
112,512 KB
testcase_22 AC 129 ms
112,384 KB
testcase_23 AC 96 ms
111,488 KB
testcase_24 AC 38 ms
51,760 KB
testcase_25 AC 38 ms
52,096 KB
testcase_26 AC 37 ms
52,096 KB
testcase_27 AC 37 ms
51,712 KB
testcase_28 AC 37 ms
51,840 KB
testcase_29 AC 37 ms
51,328 KB
testcase_30 AC 38 ms
51,968 KB
testcase_31 AC 37 ms
51,968 KB
testcase_32 AC 38 ms
51,712 KB
testcase_33 AC 37 ms
51,968 KB
testcase_34 AC 108 ms
99,808 KB
testcase_35 AC 58 ms
69,120 KB
testcase_36 AC 102 ms
95,360 KB
testcase_37 AC 93 ms
90,880 KB
testcase_38 AC 72 ms
78,848 KB
testcase_39 AC 61 ms
71,168 KB
testcase_40 AC 66 ms
74,624 KB
testcase_41 AC 53 ms
66,048 KB
testcase_42 AC 93 ms
88,064 KB
testcase_43 AC 96 ms
92,160 KB
testcase_44 TLE -
testcase_45 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,p,*a=map(int,open(0).read().split())
a.sort(reverse=True)
for i in a:
    if i%p!=0 and i!=1:
        break
x=1
for j in range(10**7):
    if x*max(a)>m:
        print(j+1)
        exit(0)
    x*=i
    x%=p
print(-1)
0