結果

問題 No.3192 Diameter Puzzle
ユーザー Facade
提出日時 2025-06-28 19:44:34
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 3,246 ms
コンパイル使用メモリ 274,652 KB
実行使用メモリ 7,840 KB
最終ジャッジ日時 2025-06-28 19:44:38
合計ジャッジ時間 3,665 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
signed main(){
    const int n=100;
    cout<<n-1<<endl;
    for(int i=0;i<n-1;i++){
        cout<<i+1<<" "<<i+2<<endl;
    }
}
0