結果

問題 No.2700 Please Hack Greedy Solution!
ユーザー GOTKAKOGOTKAKO
提出日時 2024-03-29 22:18:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 297 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 200,864 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-03-29 22:18:55
合計ジャッジ時間 2,843 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N = 1000,W = 1000;
    cout << N << " " << W << endl;
    int v = 10000;
    cout << v << " 1" << endl;
    for(int i=N; i>=2; i--) cout << v*i-1 << " " << i << endl;
}
0