結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー kotatsugamekotatsugame
提出日時 2020-06-24 07:07:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 62,592 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-03 19:55:37
合計ジャッジ時間 3,777 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 104 ms
5,376 KB
testcase_03 AC 16 ms
5,376 KB
testcase_04 AC 115 ms
5,376 KB
testcase_05 AC 11 ms
5,376 KB
testcase_06 AC 142 ms
5,376 KB
testcase_07 AC 72 ms
5,376 KB
testcase_08 AC 150 ms
5,376 KB
testcase_09 AC 77 ms
5,376 KB
testcase_10 AC 93 ms
5,376 KB
testcase_11 AC 148 ms
5,376 KB
testcase_12 AC 82 ms
5,376 KB
testcase_13 AC 83 ms
5,376 KB
testcase_14 AC 133 ms
5,376 KB
testcase_15 AC 106 ms
5,376 KB
testcase_16 AC 46 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 50 ms
5,376 KB
testcase_19 AC 69 ms
5,376 KB
testcase_20 AC 61 ms
5,376 KB
testcase_21 AC 80 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 157 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    4 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int N,D;
main()
{
    cin>>N>>D;
    cout<<0;
    int S=0,P=0;
    for(int i=1;i<N;i++)
    {
        int A;cin>>A;
        S+=A;
        if(P+D<S)P=S;
        else P+=D;
        cout<<" "<<P;
    }
}
0