結果

問題 No.836 じょうよ
ユーザー Suu0313Suu0313
提出日時 2019-06-14 21:59:47
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 369 bytes
コンパイル時間 1,362 ms
コンパイル使用メモリ 160,660 KB
実行使用メモリ 17,360 KB
最終ジャッジ日時 2024-11-14 05:46:28
合計ジャッジ時間 36,504 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1 ms
13,764 KB
testcase_02 AC 1 ms
10,016 KB
testcase_03 AC 1 ms
13,764 KB
testcase_04 AC 1 ms
9,888 KB
testcase_05 AC 2 ms
13,760 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 5 ms
6,820 KB
testcase_22 AC 45 ms
6,820 KB
testcase_23 AC 97 ms
6,820 KB
testcase_24 AC 8 ms
6,816 KB
testcase_25 AC 36 ms
6,816 KB
testcase_26 AC 3 ms
6,824 KB
testcase_27 AC 4 ms
6,816 KB
testcase_28 AC 10 ms
6,820 KB
testcase_29 AC 5 ms
6,816 KB
testcase_30 AC 4 ms
6,820 KB
testcase_31 AC 12 ms
6,816 KB
testcase_32 AC 11 ms
6,816 KB
testcase_33 AC 4 ms
6,816 KB
testcase_34 AC 10 ms
6,816 KB
testcase_35 AC 11 ms
6,816 KB
testcase_36 AC 58 ms
6,820 KB
testcase_37 AC 54 ms
6,820 KB
testcase_38 AC 78 ms
6,820 KB
testcase_39 AC 64 ms
6,816 KB
testcase_40 AC 129 ms
17,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
 
int main() {
    long l, r, n, a, b;
    cin >> l >> r >> n;
    vector<long>A(n);
/*    long d = r-l+1;
    a = d/n; b = d%n;
    
    vector<long> N(n,a);
*/
    for (long i = l; i <= r; i++) {
        A.at(i%n)++;
    }
    
    
    for (int i = 0; i < n; i++) {
        cout << A.at(i) << endl;
    }
    return 0;
}
0