結果

問題 No.836 じょうよ
ユーザー knt3110knt3110
提出日時 2019-06-23 11:11:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 534 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 64,000 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-07 23:18:28
合計ジャッジ時間 3,911 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
10,752 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 9 ms
5,376 KB
testcase_12 AC 13 ms
5,376 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 82 ms
5,376 KB
testcase_17 AC 75 ms
5,376 KB
testcase_18 AC 8 ms
5,376 KB
testcase_19 AC 16 ms
5,376 KB
testcase_20 AC 45 ms
5,376 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int main()
{
    long long r, l, n;
    cin >> r >> l >> n;
    long long r_array[n];

    for (int i = 0; i < n; i++)
    {
        r_array[i] = 0;
    }

    while (r % n != 0)
    {
        r_array[r % n]++;
        r++;
    }

    while (l % n != n - 1)
    {
        r_array[l % n]++;
        l--;
    }

    for (int i = 0; i < n; i++)
    {
        r_array[i] += (l - r + 1) / n;
    }

    for (int i = 0; i < n; i++)
    {
        cout << r_array[i] << endl;
    }

    return 0;
}
0