結果

問題 No.1585 Cubic Number
ユーザー shinichishinichi
提出日時 2021-07-08 22:30:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 99 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 10,576 KB
実行使用メモリ 8,040 KB
最終ジャッジ日時 2023-09-14 05:08:54
合計ジャッジ時間 1,497 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 16 ms
7,872 KB
testcase_02 AC 16 ms
7,848 KB
testcase_03 AC 13 ms
8,000 KB
testcase_04 WA -
testcase_05 AC 13 ms
7,808 KB
testcase_06 AC 12 ms
7,900 KB
testcase_07 AC 12 ms
7,848 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 13 ms
8,040 KB
testcase_16 AC 13 ms
7,876 KB
testcase_17 AC 13 ms
7,924 KB
testcase_18 AC 13 ms
7,972 KB
testcase_19 AC 14 ms
7,860 KB
testcase_20 AC 13 ms
7,928 KB
testcase_21 AC 12 ms
7,900 KB
testcase_22 AC 12 ms
7,880 KB
testcase_23 AC 12 ms
7,928 KB
testcase_24 AC 12 ms
7,864 KB
testcase_25 AC 13 ms
7,804 KB
testcase_26 AC 13 ms
7,868 KB
testcase_27 AC 13 ms
7,916 KB
testcase_28 WA -
testcase_29 AC 12 ms
7,880 KB
testcase_30 AC 12 ms
7,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n = int(input())
if math.sqrt(n).is_integer():
    print('Yes')
else:
    print('No')

0