結果

問題 No.3192 Diameter Puzzle
ユーザー ゼリトキ
提出日時 2025-06-27 22:00:47
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 3,165 ms
コンパイル使用メモリ 274,500 KB
実行使用メモリ 7,840 KB
最終ジャッジ日時 2025-06-27 22:00:51
合計ジャッジ時間 3,626 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
#define ll long long
const long long mod=998244353;
const long long hmod=46216567629137;
int main(){
    cin.tie(0)->sync_with_stdio(0);
    cout.tie(0);
    cout<<100*(100-1)/2<<"\n";
    for(int i=1;i<=100;i++){
        for(int j=i+1;j<=100;j++) cout<<i<<" "<<j<<"\n";
    }
}
0