結果

問題 No.1519 Diversity
ユーザー tentententen
提出日時 2022-08-05 12:52:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 1,235 bytes
コンパイル時間 2,114 ms
コンパイル使用メモリ 77,804 KB
実行使用メモリ 40,464 KB
最終ジャッジ日時 2024-09-15 08:36:47
合計ジャッジ時間 4,950 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,852 KB
testcase_01 AC 51 ms
36,976 KB
testcase_02 AC 52 ms
36,804 KB
testcase_03 AC 91 ms
38,308 KB
testcase_04 AC 106 ms
39,928 KB
testcase_05 AC 51 ms
36,464 KB
testcase_06 AC 118 ms
40,072 KB
testcase_07 AC 52 ms
36,864 KB
testcase_08 AC 85 ms
38,196 KB
testcase_09 AC 92 ms
38,616 KB
testcase_10 AC 105 ms
40,096 KB
testcase_11 AC 51 ms
36,904 KB
testcase_12 AC 122 ms
40,064 KB
testcase_13 AC 126 ms
39,944 KB
testcase_14 AC 119 ms
40,464 KB
testcase_15 AC 116 ms
40,188 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 double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0