結果

問題 No.3192 Diameter Puzzle
ユーザー elphe
提出日時 2025-07-14 17:36:28
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 908 ms
コンパイル使用メモリ 78,224 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-07-14 17:36:30
合計ジャッジ時間 1,853 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>

int main()
{
	std::cin.tie(nullptr);
	std::ios::sync_with_stdio(false);

	std::cout << "99\n";
	for (uint_fast32_t i = 2; i <= 100; ++i)
		std::cout << i - 1 << ' ' << i << '\n';

	return 0;
}
0