結果

問題 No.2016 Countdown Divisors
ユーザー tentententen
提出日時 2024-04-30 11:59:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 1,386 bytes
コンパイル時間 2,963 ms
コンパイル使用メモリ 87,596 KB
実行使用メモリ 47,956 KB
最終ジャッジ日時 2024-11-20 06:50:58
合計ジャッジ時間 9,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
37,692 KB
testcase_01 AC 293 ms
47,320 KB
testcase_02 AC 296 ms
47,608 KB
testcase_03 AC 284 ms
47,192 KB
testcase_04 AC 269 ms
47,428 KB
testcase_05 AC 264 ms
46,648 KB
testcase_06 AC 191 ms
44,452 KB
testcase_07 AC 193 ms
44,488 KB
testcase_08 AC 292 ms
46,880 KB
testcase_09 AC 295 ms
47,280 KB
testcase_10 AC 293 ms
47,896 KB
testcase_11 AC 291 ms
47,100 KB
testcase_12 AC 295 ms
47,404 KB
testcase_13 AC 250 ms
46,516 KB
testcase_14 AC 258 ms
46,432 KB
testcase_15 AC 244 ms
46,568 KB
testcase_16 AC 274 ms
47,876 KB
testcase_17 AC 275 ms
46,824 KB
testcase_18 AC 270 ms
47,956 KB
testcase_19 AC 73 ms
38,144 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