結果

問題 No.1334 Multiply or Add
ユーザー kozykozy
提出日時 2021-01-08 21:57:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 601 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,912 KB
最終ジャッジ日時 2024-11-16 11:28:52
合計ジャッジ時間 8,882 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 108 ms
14,588 KB
testcase_05 AC 114 ms
14,468 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 117 ms
14,596 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 114 ms
14,464 KB
testcase_13 AC 109 ms
14,292 KB
testcase_14 AC 109 ms
14,596 KB
testcase_15 AC 108 ms
14,460 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 115 ms
14,596 KB
testcase_23 WA -
testcase_24 AC 112 ms
14,576 KB
testcase_25 AC 120 ms
14,336 KB
testcase_26 AC 111 ms
14,600 KB
testcase_27 AC 115 ms
14,344 KB
testcase_28 AC 114 ms
14,468 KB
testcase_29 WA -
testcase_30 AC 114 ms
14,596 KB
testcase_31 AC 114 ms
14,592 KB
testcase_32 WA -
testcase_33 AC 109 ms
14,596 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 114 ms
14,468 KB
testcase_39 AC 27 ms
10,624 KB
testcase_40 AC 63 ms
11,992 KB
testcase_41 AC 40 ms
11,136 KB
testcase_42 AC 43 ms
11,136 KB
testcase_43 AC 89 ms
12,948 KB
testcase_44 AC 66 ms
11,868 KB
testcase_45 AC 39 ms
11,136 KB
testcase_46 AC 66 ms
11,904 KB
testcase_47 AC 81 ms
12,792 KB
testcase_48 AC 66 ms
12,000 KB
testcase_49 AC 99 ms
13,788 KB
testcase_50 AC 162 ms
32,864 KB
testcase_51 AC 165 ms
32,248 KB
testcase_52 AC 158 ms
32,868 KB
testcase_53 AC 159 ms
32,744 KB
testcase_54 AC 160 ms
32,864 KB
testcase_55 AC 171 ms
32,912 KB
testcase_56 AC 28 ms
10,752 KB
testcase_57 AC 27 ms
10,496 KB
testcase_58 AC 27 ms
10,496 KB
testcase_59 WA -
testcase_60 AC 27 ms
10,496 KB
testcase_61 WA -
testcase_62 AC 26 ms
10,496 KB
testcase_63 WA -
testcase_64 AC 28 ms
10,496 KB
testcase_65 AC 26 ms
10,496 KB
testcase_66 AC 136 ms
28,212 KB
testcase_67 AC 99 ms
22,236 KB
testcase_68 AC 33 ms
11,136 KB
testcase_69 AC 152 ms
30,828 KB
testcase_70 AC 147 ms
29,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
C=sum(A)
mod=1000000007
J="mada"
ans=1
for i in range(N):
  ans*=A[i]
  if J=="mada":
    if ans>=C:
      J="OK"
  if J=="OK":
    ans%=mod
if J=="mada":
  print(C%mod)
else:
  print(ans%mod)
0