結果

問題 No.1808 Fullgold Alchemist
ユーザー 330Xs330Xs
提出日時 2022-02-05 12:44:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 274 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,400 KB
最終ジャッジ日時 2024-06-11 13:28:49
合計ジャッジ時間 4,333 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 34 ms
51,584 KB
testcase_05 AC 74 ms
96,384 KB
testcase_06 AC 74 ms
101,888 KB
testcase_07 AC 76 ms
101,504 KB
testcase_08 AC 90 ms
102,400 KB
testcase_09 AC 96 ms
102,400 KB
testcase_10 AC 93 ms
102,144 KB
testcase_11 AC 90 ms
102,012 KB
testcase_12 AC 76 ms
100,984 KB
testcase_13 WA -
testcase_14 AC 77 ms
100,564 KB
testcase_15 AC 75 ms
100,864 KB
testcase_16 AC 37 ms
58,752 KB
testcase_17 WA -
testcase_18 AC 44 ms
64,384 KB
testcase_19 AC 40 ms
58,496 KB
testcase_20 AC 46 ms
67,584 KB
testcase_21 WA -
testcase_22 AC 34 ms
51,712 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 40 ms
64,512 KB
testcase_27 AC 45 ms
66,816 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 48 ms
70,528 KB
testcase_31 WA -
testcase_32 AC 59 ms
81,664 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = list(map(int,input().split()))
i = 0
a_sum = 0
while(i < n - 1):
    a_sum += a[i]
    if(a[i] < a[i+1]):
        print(a_sum // (m * (i + 1)))
        break
    i += 1
if(i == n - 1):
    a_sum += a[i]
    print(a_sum // (m * n))
        
0