結果

問題 No.365 ジェンガソート
ユーザー CodeCreater123CodeCreater123
提出日時 2024-11-14 22:34:12
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 2,487 bytes
コンパイル時間 3,785 ms
コンパイル使用メモリ 274,964 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-14 22:34:18
合計ジャッジ時間 5,647 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

// あの花はまだどこかに咲いているに違いない
// 我们会慢慢长大成人,在不断流逝的季节之中,盛开在路旁的花儿们,也在渐渐变化,盛开在那个季节里的花朵叫什么名字呢,在风中小小摇曳,伸手触碰便被扎得疼痛,把脸凑近,就能闻到一股淡淡的青涩的太阳芳香,那股芳香渐渐消散,而我们渐渐长大,但是,那朵花一定依旧盛开在某处。
 
// Code by ttq012.
#include <bits/stdc++.h>
#define eb emplace_back
#define int long long
using namespace std;
const int N = 500100;
const int ready = 1e9 + 7;
const int base = 256;
const int inf = 0x0d000721ll << 2 | 0xAC66666;
 
namespace ttq012 {
int read() {
    int o = 1, x = 0;
    char ch;
    while (!isdigit(ch = getchar())) {
        if (ch == '-') {
            o = -o;
        }
    }
    x = ch & 15;
    while (isdigit(ch = getchar())) {
        x = (x << 3) + (x << 1) + (ch & 15);
    }
    return x * o;
}
 
int exgcd(int a, int b, int &x, int &y) {
    if (!b) {
        x = 1, y = 0;
        return a;
    }
    int g, xp, yp;
    g = exgcd(b, a % b, xp, yp);
    x = yp, y = xp - yp * (a / b);
    return g;
}
 
int ksm(int a, int b, int c) {
    a %= c;
    int ans = 1;
    while (b) {
        if (b & 1) {
            ans = ans * a % c;
        }
        a = a * a % c;
        b >>= 1;
    }
    return ans;
}
 
int Inv(int a, int ready) {
    return ksm(a, ready - 2, ready);
}
 
// calc a^(b^c)
int calcpow(int a, int b, int c) {
    int k = ksm(b, c, ready - 1);
    if (k >= ready - 1) {
        k = k % (ready - 1) + (ready - 1);
    }
    return ksm(a, k, ready);
}
 
int gcd(int a, int b) {
    return b ? gcd(b, a % b) : a;
}
 
int lcm(int a, int b) {
    return a / gcd(a, b) * b;
}
 
void swap(int &a, int &b) {
    a ^= b ^= a ^= b;
} } // using namespace ttq012;
 
namespace ttq012 {
 
struct myhash{
    static uint64_t rand(uint64_t x){
        x^=x<<13;
        x^=x>>7;
        return x^=x<<17;
    }
    size_t operator()(size_t x)const{
        static const uint64_t f_rand=chrono::steady_clock::now().time_since_epoch().count();
        return rand(x+f_rand);
    }
};

int a[N];
void run() {
    int n = read();
    for (int i = 1; i <= n; ++i) {
        a[i] = read();
    }
    int top = n;
    for (int i = n; i; --i) {
        if (a[i] == top) {
            --top;
        }
    }
    cout << top << '\n';
} }
 
 
signed main() {
    ttq012::run();
    return 0;
}
 
/*
 
 
 
*/
0