結果
問題 | No.2678 Minmax Independent Set (Hack) |
ユーザー |
|
提出日時 | 2024-02-13 19:49:50 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 202 bytes |
コンパイル時間 | 664 ms |
コンパイル使用メモリ | 64,256 KB |
最終ジャッジ日時 | 2025-02-19 05:59:27 |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 1 |
ソースコード
#include <iostream>using namespace std;int main() {int N = 200000;cout << N << "\n";for (int i = 1; i < N; i++) {cout << i << " " << i + 1 << "\n";}return 0;}