結果

問題 No.1519 Diversity
ユーザー tentententen
提出日時 2021-06-01 11:26:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 1,127 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 78,084 KB
実行使用メモリ 40,432 KB
最終ジャッジ日時 2024-11-09 00:10:17
合計ジャッジ時間 4,830 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,216 KB
testcase_01 AC 54 ms
37,152 KB
testcase_02 AC 54 ms
37,148 KB
testcase_03 AC 84 ms
38,408 KB
testcase_04 AC 110 ms
39,964 KB
testcase_05 AC 55 ms
36,668 KB
testcase_06 AC 125 ms
40,432 KB
testcase_07 AC 54 ms
36,956 KB
testcase_08 AC 82 ms
37,956 KB
testcase_09 AC 96 ms
39,020 KB
testcase_10 AC 111 ms
39,796 KB
testcase_11 AC 54 ms
36,828 KB
testcase_12 AC 119 ms
40,108 KB
testcase_13 AC 119 ms
40,096 KB
testcase_14 AC 124 ms
40,408 KB
testcase_15 AC 123 ms
40,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        int count = 0;
        for (int i = 1; i < n - i + 1; i++) {
            for (int j = i + 1; j <= n - i + 1; j++) {
                sb.append(i).append(" ").append(j).append("\n");
                count++;
            }
        }
        System.out.println(count);
        System.out.print(sb);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0