結果

問題 No.1574 Swap and Repaint
ユーザー KoD
提出日時 2021-06-20 16:45:56
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 779 ms
コンパイル使用メモリ 66,768 KB
最終ジャッジ日時 2025-01-22 10:34:32
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cassert>

int main() {
    int N;
    assert(std::cin >> N);
    assert(2 <= N and N <= 100000);
    for (int i = 0; i < N; ++i) {
        int x;
        assert(std::cin >> x);
        assert(0 <= x and x <= 2);
    }
}
0