結果
| 問題 | No.1211 円環はお断り | 
| コンテスト | |
| ユーザー |  gew1fw | 
| 提出日時 | 2025-06-12 13:31:25 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 803 bytes | 
| コンパイル時間 | 415 ms | 
| コンパイル使用メモリ | 82,304 KB | 
| 実行使用メモリ | 96,128 KB | 
| 最終ジャッジ日時 | 2025-06-12 13:37:57 | 
| 合計ジャッジ時間 | 4,677 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 36 WA * 5 | 
ソースコード
def main():
    import sys
    input = sys.stdin.read().split()
    N = int(input[0])
    K = int(input[1])
    A = list(map(int, input[2:2+N]))
    
    total = sum(A)
    if K == 0:
        print(0)
        return
    if K == 1:
        print(total)
        return
    
    low = min(A)
    high = total // K
    answer = 0
    
    while low <= high:
        mid = (low + high) // 2
        current_sum = 0
        count = 0
        for num in A:
            current_sum += num
            if current_sum >= mid:
                count += 1
                current_sum = 0
                if count == K:
                    break
        if count >= K:
            answer = mid
            low = mid + 1
        else:
            high = mid - 1
    print(answer)
if __name__ == "__main__":
    main()
            
            
            
        