結果

問題 No.3192 Diameter Puzzle
ユーザー noya2
提出日時 2025-06-26 03:32:14
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 227 bytes
コンパイル時間 2,817 ms
コンパイル使用メモリ 275,480 KB
実行使用メモリ 7,840 KB
最終ジャッジ日時 2025-06-26 03:37:34
合計ジャッジ時間 3,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    cout << 101 << '\n';
    for (int i = 0; i < 100; i++){
        int u = i, v = (i + 1) % 100;
        cout << u+1 << ' ' << v+1 << '\n';
    }
    cout << "1 2\n";
}
0