結果

問題 No.2700 Please Hack Greedy Solution!
ユーザー Mostafa EmadMostafa Emad
提出日時 2024-06-15 09:48:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 546 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 200,464 KB
実行使用メモリ 6,812 KB
最終ジャッジ日時 2024-06-15 09:48:25
合計ジャッジ時間 3,429 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

const int N = 4e5 + 1, M = 51, K = 26, mod = 1e9 + 7;

mt19937 rnd(time(nullptr));

void solve() {
    
    int n = 1000, w = 1000;
    cout << n << " " << w << endl;
    cout << "1 1000\n";
    for (int i = 2; i <= n; ++i) {
        cout << i << " " << (i - 1) * 10001 << endl;
    }
    
}

void init() {
    
}

int main() {
    init();
    int testCases = 1;
//    cin >> testCases;
    for (int testCase = 1; testCase <= testCases; ++testCase) {
        solve();
    }
}
0