結果
| 問題 | No.1574 Swap and Repaint |
| コンテスト | |
| ユーザー |
KoD
|
| 提出日時 | 2021-06-20 16:45:56 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 249 bytes |
| 記録 | |
| コンパイル時間 | 379 ms |
| コンパイル使用メモリ | 77,824 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-21 04:08:54 |
| 合計ジャッジ時間 | 1,793 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 33 |
ソースコード
#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);
}
}
KoD