結果

問題 No.2721 "Don't say N" Game
ユーザー chro_96chro_96
提出日時 2024-04-12 22:12:58
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 28,800 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 23:22:35
合計ジャッジ時間 640 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main () {
  int t = 0;
  int n = 0;
  
  int res = 0;
  
  res = scanf("%d", &t);
  while (t > 0) {
    int cnt = 0;
    res = scanf("%d", &n);
    for (int p = 1; p*p <= n; p++) {
      if (p*p == n) {
        cnt++;
      }
    }
    if (cnt > 0) {
      printf("P\n");
    } else {
      printf("K\n");
    }
    t--;
  }
  
  return 0;
}
0