結果

問題 No.1935 Water Simulation
ユーザー みここみここ
提出日時 2022-05-13 21:30:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 727 bytes
コンパイル時間 717 ms
コンパイル使用メモリ 65,008 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-22 01:02:13
合計ジャッジ時間 1,679 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,948 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 3 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
typedef long long ll;

ll d[102][102][102][102];

int main()
{
    int v[4];
    for(int i = 0; i < 4; i++)
    {
        cin >> v[i];
    }
    ll n;
    cin >> n;
    int a[4]{0};
    a[0] = v[0];
    int i = 0;
    while(true)
    {
        if(d[a[0]][a[1]][a[2]][a[3]])
        {
            n %= (d[a[0]][a[1]][a[2]][a[3]] - n);
        }
        else
        {
            d[a[0]][a[1]][a[2]][a[3]] = n;
        }
        if(!n) break;
        int k = min(a[i], v[(i + 1) % 4] - a[(i + 1) % 4]);
        a[i] -= k;
        a[(i + 1) % 4] += k;
        i = (i + 1) % 4;
        n--;
    }
    for(int i = 0; i < 4; i++)
    {
        cout << a[i] << " ";
    }
    cout << endl;
}
0