結果

問題 No.2721 "Don't say N" Game
ユーザー ID 21712ID 21712
提出日時 2024-11-07 22:05:19
言語 Go
(1.22.1)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 15,163 ms
コンパイル使用メモリ 222,032 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 22:06:08
合計ジャッジ時間 14,569 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

package main

import . "fmt"

var b [1001]bool

func main() {
	var t int
	Scan(&t)
	for i:=1;i*i<len(b);i++ {
		b[i*i]=true
	}
	for ;t>0;t-- {
		var n int
		Scan(&n)
		if b[n] {
			Println("P")
		} else {
			Println("K")
		}
	}
}
0