Submission #54634059


Source Code Expand

Copy
//#pragma GCC optimize("Ofast,unroll-loops")
//#pragma GCC target("sse4.2,abm,bmi,bmi2,popcnt,lzcnt,avx,avx2,fma")
#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
#include <iomanip>
#include <set>
#include <stack>
#include <map>
#include <list>
#include <string>
#include <cstring>
#include <cstdlib>
#include <cctype>
#include <fstream>
#include <ios>
#include <signal.h>
#include <queue>
#include <ctime>
#include <bitset>
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
//#pragma GCC optimize("Ofast,unroll-loops")
//#pragma GCC target("sse4.2,abm,bmi,bmi2,popcnt,lzcnt,avx,avx2,fma")
#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
#include <iomanip>
#include <set>
#include <stack>
#include <map>
#include <list>
#include <string>
#include <cstring>
#include <cstdlib>
#include <cctype>
#include <fstream>
#include <ios>
#include <signal.h>
#include <queue>
#include <ctime>
#include <bitset>
#include <unordered_map>
#include <random>
#include <unordered_set>
#include <functional>
//#include <windows.h>
//#include "Header.h"
//#define f first
//#define s second

typedef long long ll;
typedef unsigned long long ull;

using namespace std;

ll GCD(ll a, ll b) {
    if (b > a) {
        swap(a, b);
    }
    if (a < 0 || b < 0) {
        return a >= 0 ? a : b;
    }
    while (b != 0 && a != b) {
        ll t = b;
        b = a % b;
        a = t;
    }
    return a;
}

pair<ll, ll> GCDEX(ll a, ll b) {
    bool flag = true;
    if (b > a) {
        swap(a, b);
        flag = false;
    }
    ll x1 = 1, y1 = 0, x2 = 0, y2 = 1, tx, ty;
    while (b != 0 && a != b) {
        tx = x1 - (a / b) * x2, ty = y1 - (a / b) * y2;
        x1 = x2, y1 = y2, x2 = tx, y2 = ty;
        ll t = b;
        b = a % b;
        a = t;
    }
    if (!flag) {
        ll temp = x1;
        x1 = y1;
        y1 = temp;
    }
    return { x1, y1 };
}

ll bpow(ll n, ll a, const ll mod) { return n == 0 ? 1 : n & 1 ? a * (bpow(n - 1, a, mod) % mod) % mod : bpow(n >> 1, a * (a % mod) % mod, mod); }

const int SIZE = 65;

int main(int argc, char* argv[]) {
    //SetConsoleCP(1251);
    //SetConsoleOutputCP(1251);
    //freopen("input.txt", "r", stdin);
    //freopen("output.txt", "w", stdout);
    //string alf = "abcdefghijklmnopqrstuvwxyz";
    //srand(time(0));
    //const double PI = 3.1415926535897932;
    //hash<string> hasher;
    const double eps = 0.000000001;
    const long long mod = 998244353;
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    ll n, cur = 0, cnt = 0, cnt1 = 0, cnt2 = 0;
    set<tuple<ll, ll, ll> > st;
    pair<ll, ll> temp = { 19, 0 };
    vector<string> ans1, ans2;
    bool flag = true;
    cin >> n;
    vector<vector<ll> > v(n, vector<ll>(n)), vv;
    vector<pair<ll, ll> > str(n, {-1, -1});
    for (ll i = 0; i < n; ++i) {
        for (ll j = 0; j < n; ++j) {
            cin >> v[i][j];
            if (v[i][j] < 0) {
                st.insert({ -v[i][j], i, j });
            }
            else {
                if (str[i].first == -1) {
                    str[i].first = j;
                }
                str[i].second = j;
                ++cnt;
            }
        }
    }
    vv = v;
    for (ll i = 0; i < n; ++i) {
        for (ll j = (i % 2 == 0 ? 0 : n - 1); (j < n && j >= 0); j += (i % 2 == 0 ? 1 : -1)) {
            if (v[i][j] > 0) {
                cur += v[i][j];
                //cout << '+' << v[i][j] << '\n';
                ans1.push_back("+" + to_string(v[i][j]));
                v[i][j] = 0;
            }
            else if (v[i][j]) {
                if (cur >= -v[i][j]) {
                    //cout << '-' << -v[i][j] << '\n';
                    ans1.push_back("-" + to_string(-v[i][j]));
                    cur += v[i][j];
                    st.erase({ -v[i][j], i, j });
                    v[i][j] = 0;
                }
            }
            if (i % 2 == 0 && j != n - 1) {
                //cout << 'R' << '\n';
                ans1.push_back("R");
            }
            else if (i % 2 == 1 && j != 0) {
                //cout << 'L' << '\n';
                ans1.push_back("L");
            }
        }
        if (i != n - 1) {
            //cout << 'D' << '\n';
            ans1.push_back("D");
        }
    }
    while (st.size()) {
        ll mn = 1e18;
        pair<ll, ll> pt;
        set<tuple<ll, ll, ll> >::iterator it1 = st.begin(), it = st.begin();
        while (it != st.end()) {
            if (abs(get<1>(*it) - temp.first) + abs(get<2>(*it) - temp.second) < mn) {
                mn = abs(get<1>(*it) - temp.first) + abs(get<2>(*it) - temp.second);
                pt = { get<1>(*it), get<2>(*it) };
                it1 = it;
            }
            ++it;
        }
        while (pt.first > temp.first) {
            ++temp.first;
            //cout << 'D' << '\n';
            ans1.push_back("D");
        }
        while (pt.first < temp.first) {
            --temp.first;
            //cout << 'U' << '\n';
            ans1.push_back("U");
        }
        while (pt.second > temp.second) {
            ++temp.second;
            //cout << 'R' << '\n';
            ans1.push_back("R");
        }
        while (pt.second < temp.second) {
            --temp.second;
            //cout << 'L' << '\n';
            ans1.push_back("L");
        }
        if (cur >= -v[temp.first][temp.second]) {
            //cout << '-' << -v[temp.first][temp.second] << '\n';
            ans1.push_back("-" + to_string(-v[temp.first][temp.second]));
            cur += v[temp.first][temp.second];
            v[temp.first][temp.second] = 0;
        }
        st.erase(it1);
    }
    v = vv;
    temp = { 0, 19 };
    for (ll i = 0; i < n; ++i) {
        for (ll j = 0; j < n; ++j) {
            if (v[i][j] < 0) {
                st.insert({ -v[i][j], i, j });
            }
            else {
                if (str[i].first == -1) {
                    str[i].first = j;
                }
                str[i].second = j;
                ++cnt;
            }
        }
    }
    for (ll j = 0; j < n; ++j) {
        for (ll i = (j % 2 == 0 ? 0 : n - 1); (i < n && i >= 0); i += (j % 2 == 0 ? 1 : -1)) {
            if (v[i][j] > 0) {
                cur += v[i][j];
                //cout << '+' << v[i][j] << '\n';
                ans2.push_back("+" + to_string(v[i][j]));
                v[i][j] = 0;
            }
            else if (v[i][j]) {
                if (cur >= -v[i][j]) {
                    //cout << '-' << -v[i][j] << '\n';
                    ans2.push_back("-" + to_string(-v[i][j]));
                    cur += v[i][j];
                    st.erase({ -v[i][j], i, j });
                    v[i][j] = 0;
                }
            }
            if (j % 2 == 0 && i != n - 1) {
                //cout << 'R' << '\n';
                ans2.push_back("D");
            }
            else if (j % 2 == 1 && i != 0) {
                //cout << 'L' << '\n';
                ans2.push_back("U");
            }
        }
        if (j != n - 1) {
            //cout << 'D' << '\n';
            ans2.push_back("R");
        }
    }
    while (st.size()) {
        ll mn = 1e18;
        pair<ll, ll> pt;
        set<tuple<ll, ll, ll> >::iterator it1 = st.begin(), it = st.begin();
        while (it != st.end()) {
            if (abs(get<1>(*it) - temp.first) + abs(get<2>(*it) - temp.second) < mn) {
                mn = abs(get<1>(*it) - temp.first) + abs(get<2>(*it) - temp.second);
                pt = { get<1>(*it), get<2>(*it) };
                it1 = it;
            }
            ++it;
        }
        while (pt.first > temp.first) {
            ++temp.first;
            //cout << 'D' << '\n';
            ans2.push_back("D");
        }
        while (pt.first < temp.first) {
            --temp.first;
            //cout << 'U' << '\n';
            ans2.push_back("U");
        }
        while (pt.second > temp.second) {
            ++temp.second;
            //cout << 'R' << '\n';
            ans2.push_back("R");
        }
        while (pt.second < temp.second) {
            --temp.second;
            //cout << 'L' << '\n';
            ans2.push_back("L");
        }
        if (cur >= -v[temp.first][temp.second]) {
            //cout << '-' << -v[temp.first][temp.second] << '\n';
            ans2.push_back("-" + to_string(-v[temp.first][temp.second]));
            cur += v[temp.first][temp.second];
            v[temp.first][temp.second] = 0;
        }
        st.erase(it1);
    }
    if (ans1.size() < ans2.size()) {
        for (string s : ans1) {
            cout << s << '\n';
        }
    }
    else {
        for (string s : ans2) {
            cout << s << '\n';
        }
    }
    return 0;
}

/*
20
10 4 0 0 4 10 16 20 21 16 11 2 -7 -16 -23 -25 -23 -16 -7 2
16 10 6 5 7 10 13 15 14 10 4 -4 -13 -21 -29 -32 -29 -22 -13 -3
20 14 10 8 9 10 11 12 10 6 0 -7 -15 -24 -31 -33 -31 -25 -16 -8
20 15 12 10 10 10 10 11 8 5 0 -5 -12 -20 -26 -29 -28 -23 -15 -7
16 13 12 10 10 10 10 10 9 7 4 1 -4 -10 -16 -20 -20 -17 -10 -3
10 10 10 10 11 10 10 10 10 10 10 9 7 2 -3 -8 -9 -8 -3 3
4 7 9 10 10 10 10 10 11 14 16 18 17 14 9 5 1 1 4 9
0 5 8 10 10 10 10 10 12 15 20 24 25 24 19 14 9 7 9 13
0 6 10 12 11 11 9 9 10 14 20 26 29 28 24 18 13 10 10 14
4 10 14 16 13 10 7 5 6 10 16 23 26 26 23 16 10 8 6 10
11 16 20 21 16 10 4 0 0 4 10 16 21 20 16 10 4 0 1 4
16 23 26 24 18 9 1 -4 -7 -4 2 9 12 12 8 3 -3 -6 -7 -3
20 26 27 24 17 7 -3 -11 -14 -12 -7 -1 2 2 -1 -5 -10 -12 -11 -7
20 24 24 20 13 3 -8 -17 -21 -20 -16 -12 -9 -9 -11 -14 -15 -15 -12 -6
16 18 17 14 6 -3 -13 -20 -24 -25 -23 -21 -20 -19 -21 -21 -18 -15 -10 -3
10 10 8 4 -1 -8 -14 -20 -23 -25 -25 -26 -27 -28 -28 -25 -21 -14 -5 3
4 2 -1 -4 -7 -9 -12 -15 -18 -19 -23 -26 -29 -31 -31 -28 -21 -11 -1 8
0 -4 -7 -9 -9 -8 -7 -7 -8 -11 -16 -20 -26 -30 -31 -28 -20 -8 2 12
0 -6 -9 -10 -7 -3 1 3 3 -1 -7 -13 -20 -26 -29 -27 -20 -9 2 13
4 -3 -6 -6 -3 3 9 12 12 9 3 -5 -12 -20 -25 -26 -21 -12 -1 9
*/

/*//#pragma GCC optimize("Ofast,unroll-loops")
//#pragma GCC target("sse4.2,abm,bmi,bmi2,popcnt,lzcnt,avx,avx2,fma")
#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
#include <iomanip>
#include <set>
#include <stack>
#include <map>
#include <list>
#include <string>
#include <cstring>
#include <cstdlib>
#include <cctype>
#include <fstream>
#include <ios>
#include <signal.h>
#include <queue>
#include <ctime>
#include <windows.h>
//#include "Header.h"
//#define f first
//#define s second

using namespace std;

int main(int argc, char* argv[]) {
    //SetConsoleCP(1251);
    //SetConsoleOutputCP(1251);
    //freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
    //string alf = "abcdefghijklmnopqrstuvwxyz";
    //string alf = "абвгдеёжзийклмнопрстуфхцчшщъыьэюя";
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    long long cnt = 0;
    for (long long i = 1; cnt + i <= 1e9; ) {
        cnt += i;
        i *= 2;
    }
    //cout << cnt << '\n';
    long long t = 1;
    cout << t << '\n';
    srand(time(0));
    while (t--) {
        cout << 100000 << '\n';
        for (long long i = 0; i < 1e5; ++i) {
            cout << 1000000 << ' ';
        }
        cout << '\n' << 100000 << '\n';
        for (long long i = 0; i < 1e5; ++i) {
            cout << 1 << ' ' << 1 << ' ' << 100000;
        }
    }
    return 0;
}

ll t, n, m, q, a, b, c, d, x, mx, mn, k, cnt, l, r, ans, temp, id;
string s, s1, s2;
bool flag = true;
cin >> t;
while (t--) {

}*/

Submission Info

Submission Time
Task A - Leveling with a Dump Truck
User Darius17
Language C++ 20 (gcc 12.2)
Score 3168565876
Code Size 11461 Byte
Status AC
Exec Time 1 ms
Memory 3716 KB

Compile Error

Main.cpp: In function ‘int main(int, char**)’:
Main.cpp:86:18: warning: unused variable ‘eps’ [-Wunused-variable]
   86 |     const double eps = 0.000000001;
      |                  ^~~
Main.cpp:87:21: warning: unused variable ‘mod’ [-Wunused-variable]
   87 |     const long long mod = 998244353;
      |                     ^~~
Main.cpp:91:29: warning: unused variable ‘cnt1’ [-Wunused-variable]
   91 |     ll n, cur = 0, cnt = 0, cnt1 = 0, cnt2 = 0;
      |                             ^~~~
Main.cpp:91:39: warning: unused variable ‘cnt2’ [-Wunused-variable]
   91 |     ll n, cur = 0, cnt = 0, cnt1 = 0, cnt2 = 0;
      |                                       ^~~~
Main.cpp:95:10: warning: unused variable ‘flag’ [-Wunused-variable]
   95 |     bool flag = true;
      |          ^~~~
Main.cpp:77:14: warning: unused parameter ‘argc’ [-Wunused-parameter]
   77 | int main(int argc, char* argv[]) {
      |          ~~~~^~~~
Main.cpp:77:26: warning: unused parameter ‘argv’ [-Wunused-parameter]
   77 | int main(int argc, char* argv[]) {
      |                    ~~~~~~^~~~~~

Judge Result

Set Name test_ALL
Score / Max Score 3168565876 / 150000000000
Status
AC × 150
Set Name Test Cases
test_ALL test_0000.txt, test_0001.txt, test_0002.txt, test_0003.txt, test_0004.txt, test_0005.txt, test_0006.txt, test_0007.txt, test_0008.txt, test_0009.txt, test_0010.txt, test_0011.txt, test_0012.txt, test_0013.txt, test_0014.txt, test_0015.txt, test_0016.txt, test_0017.txt, test_0018.txt, test_0019.txt, test_0020.txt, test_0021.txt, test_0022.txt, test_0023.txt, test_0024.txt, test_0025.txt, test_0026.txt, test_0027.txt, test_0028.txt, test_0029.txt, test_0030.txt, test_0031.txt, test_0032.txt, test_0033.txt, test_0034.txt, test_0035.txt, test_0036.txt, test_0037.txt, test_0038.txt, test_0039.txt, test_0040.txt, test_0041.txt, test_0042.txt, test_0043.txt, test_0044.txt, test_0045.txt, test_0046.txt, test_0047.txt, test_0048.txt, test_0049.txt, test_0050.txt, test_0051.txt, test_0052.txt, test_0053.txt, test_0054.txt, test_0055.txt, test_0056.txt, test_0057.txt, test_0058.txt, test_0059.txt, test_0060.txt, test_0061.txt, test_0062.txt, test_0063.txt, test_0064.txt, test_0065.txt, test_0066.txt, test_0067.txt, test_0068.txt, test_0069.txt, test_0070.txt, test_0071.txt, test_0072.txt, test_0073.txt, test_0074.txt, test_0075.txt, test_0076.txt, test_0077.txt, test_0078.txt, test_0079.txt, test_0080.txt, test_0081.txt, test_0082.txt, test_0083.txt, test_0084.txt, test_0085.txt, test_0086.txt, test_0087.txt, test_0088.txt, test_0089.txt, test_0090.txt, test_0091.txt, test_0092.txt, test_0093.txt, test_0094.txt, test_0095.txt, test_0096.txt, test_0097.txt, test_0098.txt, test_0099.txt, test_0100.txt, test_0101.txt, test_0102.txt, test_0103.txt, test_0104.txt, test_0105.txt, test_0106.txt, test_0107.txt, test_0108.txt, test_0109.txt, test_0110.txt, test_0111.txt, test_0112.txt, test_0113.txt, test_0114.txt, test_0115.txt, test_0116.txt, test_0117.txt, test_0118.txt, test_0119.txt, test_0120.txt, test_0121.txt, test_0122.txt, test_0123.txt, test_0124.txt, test_0125.txt, test_0126.txt, test_0127.txt, test_0128.txt, test_0129.txt, test_0130.txt, test_0131.txt, test_0132.txt, test_0133.txt, test_0134.txt, test_0135.txt, test_0136.txt, test_0137.txt, test_0138.txt, test_0139.txt, test_0140.txt, test_0141.txt, test_0142.txt, test_0143.txt, test_0144.txt, test_0145.txt, test_0146.txt, test_0147.txt, test_0148.txt, test_0149.txt
Case Name Status Exec Time Memory
test_0000.txt AC 1 ms 3540 KB
test_0001.txt AC 1 ms 3444 KB
test_0002.txt AC 1 ms 3584 KB
test_0003.txt AC 1 ms 3644 KB
test_0004.txt AC 1 ms 3624 KB
test_0005.txt AC 1 ms 3504 KB
test_0006.txt AC 1 ms 3524 KB
test_0007.txt AC 1 ms 3576 KB
test_0008.txt AC 1 ms 3576 KB
test_0009.txt AC 1 ms 3568 KB
test_0010.txt AC 1 ms 3528 KB
test_0011.txt AC 1 ms 3580 KB
test_0012.txt AC 1 ms 3512 KB
test_0013.txt AC 1 ms 3568 KB
test_0014.txt AC 1 ms 3524 KB
test_0015.txt AC 1 ms 3564 KB
test_0016.txt AC 1 ms 3588 KB
test_0017.txt AC 1 ms 3528 KB
test_0018.txt AC 1 ms 3432 KB
test_0019.txt AC 1 ms 3484 KB
test_0020.txt AC 1 ms 3644 KB
test_0021.txt AC 1 ms 3652 KB
test_0022.txt AC 1 ms 3580 KB
test_0023.txt AC 1 ms 3488 KB
test_0024.txt AC 1 ms 3572 KB
test_0025.txt AC 1 ms 3476 KB
test_0026.txt AC 1 ms 3520 KB
test_0027.txt AC 1 ms 3572 KB
test_0028.txt AC 1 ms 3632 KB
test_0029.txt AC 1 ms 3588 KB
test_0030.txt AC 1 ms 3484 KB
test_0031.txt AC 1 ms 3544 KB
test_0032.txt AC 1 ms 3632 KB
test_0033.txt AC 1 ms 3428 KB
test_0034.txt AC 1 ms 3704 KB
test_0035.txt AC 1 ms 3644 KB
test_0036.txt AC 1 ms 3488 KB
test_0037.txt AC 1 ms 3704 KB
test_0038.txt AC 1 ms 3584 KB
test_0039.txt AC 1 ms 3484 KB
test_0040.txt AC 1 ms 3708 KB
test_0041.txt AC 1 ms 3440 KB
test_0042.txt AC 1 ms 3428 KB
test_0043.txt AC 1 ms 3700 KB
test_0044.txt AC 1 ms 3712 KB
test_0045.txt AC 1 ms 3572 KB
test_0046.txt AC 1 ms 3428 KB
test_0047.txt AC 1 ms 3584 KB
test_0048.txt AC 1 ms 3584 KB
test_0049.txt AC 1 ms 3588 KB
test_0050.txt AC 1 ms 3532 KB
test_0051.txt AC 1 ms 3564 KB
test_0052.txt AC 1 ms 3580 KB
test_0053.txt AC 1 ms 3528 KB
test_0054.txt AC 1 ms 3572 KB
test_0055.txt AC 1 ms 3536 KB
test_0056.txt AC 1 ms 3648 KB
test_0057.txt AC 1 ms 3716 KB
test_0058.txt AC 1 ms 3428 KB
test_0059.txt AC 1 ms 3532 KB
test_0060.txt AC 1 ms 3536 KB
test_0061.txt AC 1 ms 3580 KB
test_0062.txt AC 1 ms 3596 KB
test_0063.txt AC 1 ms 3576 KB
test_0064.txt AC 1 ms 3576 KB
test_0065.txt AC 1 ms 3436 KB
test_0066.txt AC 1 ms 3584 KB
test_0067.txt AC 1 ms 3588 KB
test_0068.txt AC 1 ms 3584 KB
test_0069.txt AC 1 ms 3528 KB
test_0070.txt AC 1 ms 3580 KB
test_0071.txt AC 1 ms 3584 KB
test_0072.txt AC 1 ms 3572 KB
test_0073.txt AC 1 ms 3536 KB
test_0074.txt AC 1 ms 3628 KB
test_0075.txt AC 1 ms 3576 KB
test_0076.txt AC 1 ms 3528 KB
test_0077.txt AC 1 ms 3592 KB
test_0078.txt AC 1 ms 3576 KB
test_0079.txt AC 1 ms 3480 KB
test_0080.txt AC 1 ms 3548 KB
test_0081.txt AC 1 ms 3436 KB
test_0082.txt AC 1 ms 3592 KB
test_0083.txt AC 1 ms 3580 KB
test_0084.txt AC 1 ms 3532 KB
test_0085.txt AC 1 ms 3568 KB
test_0086.txt AC 1 ms 3572 KB
test_0087.txt AC 1 ms 3532 KB
test_0088.txt AC 1 ms 3428 KB
test_0089.txt AC 1 ms 3648 KB
test_0090.txt AC 1 ms 3572 KB
test_0091.txt AC 1 ms 3708 KB
test_0092.txt AC 1 ms 3572 KB
test_0093.txt AC 1 ms 3580 KB
test_0094.txt AC 1 ms 3536 KB
test_0095.txt AC 1 ms 3644 KB
test_0096.txt AC 1 ms 3588 KB
test_0097.txt AC 1 ms 3572 KB
test_0098.txt AC 1 ms 3580 KB
test_0099.txt AC 1 ms 3532 KB
test_0100.txt AC 1 ms 3532 KB
test_0101.txt AC 1 ms 3580 KB
test_0102.txt AC 1 ms 3644 KB
test_0103.txt AC 1 ms 3528 KB
test_0104.txt AC 1 ms 3432 KB
test_0105.txt AC 1 ms 3496 KB
test_0106.txt AC 1 ms 3580 KB
test_0107.txt AC 1 ms 3580 KB
test_0108.txt AC 1 ms 3480 KB
test_0109.txt AC 1 ms 3536 KB
test_0110.txt AC 1 ms 3548 KB
test_0111.txt AC 1 ms 3532 KB
test_0112.txt AC 1 ms 3636 KB
test_0113.txt AC 1 ms 3484 KB
test_0114.txt AC 1 ms 3488 KB
test_0115.txt AC 1 ms 3580 KB
test_0116.txt AC 1 ms 3636 KB
test_0117.txt AC 1 ms 3588 KB
test_0118.txt AC 1 ms 3476 KB
test_0119.txt AC 1 ms 3532 KB
test_0120.txt AC 1 ms 3580 KB
test_0121.txt AC 1 ms 3480 KB
test_0122.txt AC 1 ms 3584 KB
test_0123.txt AC 1 ms 3600 KB
test_0124.txt AC 1 ms 3652 KB
test_0125.txt AC 1 ms 3568 KB
test_0126.txt AC 1 ms 3480 KB
test_0127.txt AC 1 ms 3536 KB
test_0128.txt AC 1 ms 3584 KB
test_0129.txt AC 1 ms 3584 KB
test_0130.txt AC 1 ms 3568 KB
test_0131.txt AC 1 ms 3524 KB
test_0132.txt AC 1 ms 3572 KB
test_0133.txt AC 1 ms 3528 KB
test_0134.txt AC 1 ms 3484 KB
test_0135.txt AC 1 ms 3428 KB
test_0136.txt AC 1 ms 3532 KB
test_0137.txt AC 1 ms 3592 KB
test_0138.txt AC 1 ms 3428 KB
test_0139.txt AC 1 ms 3480 KB
test_0140.txt AC 1 ms 3568 KB
test_0141.txt AC 1 ms 3588 KB
test_0142.txt AC 1 ms 3528 KB
test_0143.txt AC 1 ms 3648 KB
test_0144.txt AC 1 ms 3584 KB
test_0145.txt AC 1 ms 3580 KB
test_0146.txt AC 1 ms 3536 KB
test_0147.txt AC 1 ms 3644 KB
test_0148.txt AC 1 ms 3584 KB
test_0149.txt AC 1 ms 3476 KB


2025-03-09 (Sun)
18:32:14 +00:00