結果
| 問題 | No.3192 Diameter Puzzle |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-06-28 19:44:34 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 142µs | |
| コード長 | 194 bytes |
| 記録 | |
| コンパイル時間 | 1,922 ms |
| コンパイル使用メモリ | 332,376 KB |
| 実行使用メモリ | 7,336 KB |
| 最終ジャッジ日時 | 2026-07-12 22:55:42 |
| 合計ジャッジ時間 | 2,765 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
ソースコード
#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;
}
}