結果

問題 No.944 煎っぞ!
ユーザー pluto77pluto77
提出日時 2020-07-01 11:39:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,149 ms / 3,000 ms
コード長 261 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,156 KB
最終ジャッジ日時 2024-09-13 20:54:33
合計ジャッジ時間 9,512 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 231 ms
13,008 KB
testcase_01 AC 209 ms
13,140 KB
testcase_02 AC 225 ms
13,136 KB
testcase_03 AC 210 ms
13,144 KB
testcase_04 AC 239 ms
13,152 KB
testcase_05 AC 198 ms
13,144 KB
testcase_06 AC 210 ms
13,148 KB
testcase_07 AC 216 ms
13,152 KB
testcase_08 AC 239 ms
13,144 KB
testcase_09 AC 196 ms
13,144 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 64 ms
12,032 KB
testcase_12 AC 38 ms
11,392 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 258 ms
11,904 KB
testcase_15 AC 37 ms
11,264 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 63 ms
12,032 KB
testcase_19 AC 64 ms
11,904 KB
testcase_20 AC 1,140 ms
17,112 KB
testcase_21 AC 1,149 ms
17,112 KB
testcase_22 AC 98 ms
12,496 KB
testcase_23 AC 108 ms
12,500 KB
testcase_24 AC 138 ms
12,504 KB
testcase_25 AC 105 ms
12,496 KB
testcase_26 AC 101 ms
12,496 KB
testcase_27 AC 81 ms
16,152 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 30 ms
10,624 KB
testcase_30 AC 1,148 ms
17,156 KB
testcase_31 AC 73 ms
12,628 KB
testcase_32 AC 73 ms
12,496 KB
testcase_33 AC 77 ms
14,584 KB
testcase_34 AC 78 ms
14,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki944

n=int(input())
a=list(map(int,input().split()))
s=sum(a)
i=max(a)
while i<=s:
 if s%i:
  i+=1
  continue
 cnt=0
 for j in range(n):
  if cnt<i:
   cnt+=a[j]
  elif cnt==i:
   cnt=a[j]
  else:
   cnt=0
   break
 if cnt==i:
  print(s//i)
  break
 i+=1
 
0