結果

問題 No.836 じょうよ
ユーザー Suu0313Suu0313
提出日時 2019-06-14 21:49:28
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 279 bytes
コンパイル時間 1,518 ms
コンパイル使用メモリ 160,268 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-14 04:09:08
合計ジャッジ時間 18,763 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
10,020 KB
testcase_02 AC 1 ms
13,632 KB
testcase_03 AC 1 ms
9,892 KB
testcase_04 AC 1 ms
13,632 KB
testcase_05 AC 1 ms
10,016 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 403 ms
6,816 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 961 ms
6,816 KB
testcase_15 TLE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 6 ms
6,816 KB
testcase_22 AC 46 ms
6,820 KB
testcase_23 AC 101 ms
6,816 KB
testcase_24 AC 8 ms
6,820 KB
testcase_25 AC 35 ms
6,816 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 13 ms
6,816 KB
testcase_32 AC 11 ms
6,820 KB
testcase_33 AC 4 ms
6,820 KB
testcase_34 AC 10 ms
6,820 KB
testcase_35 AC 11 ms
6,820 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 65 ms
6,816 KB
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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