結果

問題 No.2678 Minmax Independent Set (Hack)
ユーザー ぷらぷら
提出日時 2024-03-15 22:58:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,009 bytes
コンパイル時間 1,304 ms
コンパイル使用メモリ 135,472 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-03-15 22:58:42
合計ジャッジ時間 2,207 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <string.h>
#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <cfloat>
#include <climits>
#include <cmath>
#include <complex>
#include <ctime>
#include <deque>
#include <fstream>
#include <functional>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <list>
#include <map>
#include <memory>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << 180003 << "\n";
    cout << 1 << " " << 2 << "\n";
    cout << 1 << " " << 3 << "\n";
    cout << 2 << " " << 4 << "\n";
    cout << 2 << " " << 5 << "\n";
    cout << 2 << " " << 6 << "\n";
    cout << 3 << " " << 7 << "\n";
    cout << 3 << " " << 8 << "\n";
    cout << 3 << " " << 9 << "\n";
    for(int i = 10; i <= 180003; i++) {
        cout << i-6 << " " << i << "\n";
    }
}
0