結果

問題 No.1808 Fullgold Alchemist
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-17 20:45:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 169 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 103,168 KB
最終ジャッジ日時 2024-05-02 19:02:58
合計ジャッジ時間 4,067 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 35 ms
51,584 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 37 ms
51,584 KB
testcase_05 AC 78 ms
96,640 KB
testcase_06 AC 88 ms
102,784 KB
testcase_07 AC 85 ms
103,168 KB
testcase_08 WA -
testcase_09 AC 102 ms
102,656 KB
testcase_10 AC 106 ms
102,400 KB
testcase_11 WA -
testcase_12 AC 96 ms
101,632 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 36 ms
51,968 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 35 ms
52,096 KB
testcase_23 AC 44 ms
61,696 KB
testcase_24 WA -
testcase_25 AC 45 ms
60,032 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m= map(int,input().split())
ns= list(map(int,input().split()))

cnt=0
ans=10*12

for i in range(n):
    cnt+=ns[i]
    ans=min(ans,cnt//(m*(i+1)))
    
print(ans)
    
0