結果

問題 No.3192 Diameter Puzzle
ユーザー ks2m
提出日時 2025-06-27 21:26:02
言語 Java
(openjdk 23)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 77,368 KB
実行使用メモリ 44,044 KB
最終ジャッジ日時 2025-06-27 21:26:05
合計ジャッジ時間 2,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

public class Main {
	public static void main(String[] args) throws Exception {
		System.out.println(99);
		for (int i = 1; i <= 99; i++) {
			System.out.println(i + " " + (i + 1));
		}
	}
}
0