結果

問題 No.2190 平方数の下12桁
ユーザー Mat_h
提出日時 2023-01-13 22:52:48
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 255 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-24 18:51:50
合計ジャッジ時間 2,395 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

def main():
    s=[0, 1, 4, 9, 16, 21, 24, 25, 29, 36, 41, 44, 49, 56, 61, 64, 69, 76, 81, 84, 89, 96]
    a=input()
    if int(a[len(a)-2:]) in s:
        print("YES")
    else:
        print("NO")
    
    
    
main()
0