結果
問題 |
No.3192 Diameter Puzzle
|
ユーザー |
![]() |
提出日時 | 2025-06-29 00:42:57 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 395 bytes |
コンパイル時間 | 3,087 ms |
コンパイル使用メモリ | 274,060 KB |
実行使用メモリ | 7,844 KB |
最終ジャッジ日時 | 2025-06-29 00:43:01 |
合計ジャッジ時間 | 3,815 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #else #define Debug(...) void(0) #endif #define rep(i, n) for (int i = 0; i < (n); ++i) using ll = long long; using ull = unsigned long long; int main() { cin.tie(nullptr)->sync_with_stdio(false); cout << 100 << '\n'; rep(i, 100) cout << i + 1 << ' ' << (i + 1) % 100 + 1 << '\n'; return 0; }