結果

問題 No.2016 Countdown Divisors
ユーザー tentententen
提出日時 2024-04-30 11:59:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,386 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 81,596 KB
実行使用メモリ 58,508 KB
最終ジャッジ日時 2024-04-30 11:59:57
合計ジャッジ時間 7,725 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,944 KB
testcase_01 AC 248 ms
58,228 KB
testcase_02 AC 263 ms
58,384 KB
testcase_03 AC 253 ms
58,168 KB
testcase_04 AC 239 ms
58,212 KB
testcase_05 AC 229 ms
58,508 KB
testcase_06 AC 170 ms
56,592 KB
testcase_07 AC 158 ms
56,164 KB
testcase_08 AC 251 ms
58,160 KB
testcase_09 AC 250 ms
58,244 KB
testcase_10 AC 249 ms
58,188 KB
testcase_11 AC 253 ms
58,232 KB
testcase_12 AC 247 ms
58,208 KB
testcase_13 AC 201 ms
58,116 KB
testcase_14 AC 216 ms
57,896 KB
testcase_15 AC 198 ms
58,168 KB
testcase_16 AC 230 ms
58,408 KB
testcase_17 AC 222 ms
58,300 KB
testcase_18 AC 230 ms
58,212 KB
testcase_19 AC 65 ms
51,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static int[] dp = new int[1001];
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int q = sc.nextInt();
        Set<Integer> singles = Set.of(1, 3, 4, 5, 7, 8);
        String result = IntStream.range(0, q).mapToObj(i -> singles.contains(sc.nextInt()) ? "1" : "2")
            .collect(Collectors.joining("\n"));
        System.out.println(result);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0