結果

問題 No.2016 Countdown Divisors
ユーザー tentententen
提出日時 2022-07-25 14:55:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 1,318 bytes
コンパイル時間 2,635 ms
コンパイル使用メモリ 78,880 KB
実行使用メモリ 44,692 KB
最終ジャッジ日時 2024-07-07 13:56:37
合計ジャッジ時間 7,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,036 KB
testcase_01 AC 226 ms
43,560 KB
testcase_02 AC 235 ms
43,928 KB
testcase_03 AC 219 ms
43,668 KB
testcase_04 AC 210 ms
43,572 KB
testcase_05 AC 202 ms
43,544 KB
testcase_06 AC 150 ms
42,780 KB
testcase_07 AC 156 ms
42,560 KB
testcase_08 AC 223 ms
43,996 KB
testcase_09 AC 226 ms
43,640 KB
testcase_10 AC 216 ms
43,756 KB
testcase_11 AC 224 ms
43,548 KB
testcase_12 AC 228 ms
43,888 KB
testcase_13 AC 189 ms
43,212 KB
testcase_14 AC 190 ms
44,560 KB
testcase_15 AC 202 ms
44,692 KB
testcase_16 AC 213 ms
43,288 KB
testcase_17 AC 213 ms
43,388 KB
testcase_18 AC 198 ms
43,688 KB
testcase_19 AC 51 ms
36,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int[] targets = new int[]{1, 3, 4, 5, 7, 8};
        HashSet<Integer> ones = new HashSet<>();
        for (int x : targets) {
            ones.add(x);
        }
        int t = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (t-- > 0) {
            if (ones.contains(sc.nextInt())) {
                sb.append("1\n");
            } else {
                sb.append("2\n");
            }
        }
        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 {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0