結果

問題 No.2721 "Don't say N" Game
ユーザー tentententen
提出日時 2024-04-15 13:00:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 1,592 bytes
コンパイル時間 2,441 ms
コンパイル使用メモリ 79,672 KB
実行使用メモリ 52,344 KB
最終ジャッジ日時 2024-10-05 09:19:23
合計ジャッジ時間 2,963 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,236 KB
testcase_01 AC 86 ms
52,344 KB
testcase_02 AC 87 ms
51,988 KB
testcase_03 AC 90 ms
52,176 KB
testcase_04 AC 70 ms
50,804 KB
testcase_05 AC 86 ms
51,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        String[] ans = {"K", "P"};
        int t = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (t-- > 0) {
            int n = sc.nextInt();
            Set<Integer> counts = new HashSet<>();
            for (int i = 1; i <= Math.sqrt(n); i++) {
                if (n % i == 0) {
                    counts.add(i);
                    counts.add(n / i);
                }
            }
            sb.append(ans[counts.size() % 2]).append("\n");
        }
        System.out.print(sb);
    }
}
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