結果

問題 No.2185 平方数の下6桁
ユーザー coder_So_heycoder_So_hey
提出日時 2023-01-13 21:59:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 105 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 87,284 KB
実行使用メモリ 71,696 KB
最終ジャッジ日時 2023-08-26 03:45:11
合計ジャッジ時間 4,359 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
70,980 KB
testcase_01 AC 61 ms
70,976 KB
testcase_02 AC 60 ms
71,336 KB
testcase_03 AC 62 ms
71,264 KB
testcase_04 WA -
testcase_05 AC 60 ms
71,508 KB
testcase_06 AC 60 ms
71,408 KB
testcase_07 AC 61 ms
71,476 KB
testcase_08 AC 61 ms
71,264 KB
testcase_09 AC 61 ms
71,160 KB
testcase_10 AC 62 ms
71,100 KB
testcase_11 AC 61 ms
71,480 KB
testcase_12 AC 64 ms
70,988 KB
testcase_13 AC 62 ms
71,472 KB
testcase_14 AC 61 ms
71,240 KB
testcase_15 AC 60 ms
71,476 KB
testcase_16 AC 62 ms
71,284 KB
testcase_17 AC 61 ms
71,156 KB
testcase_18 AC 59 ms
71,336 KB
testcase_19 AC 61 ms
70,972 KB
testcase_20 WA -
testcase_21 AC 62 ms
71,420 KB
testcase_22 AC 62 ms
71,188 KB
testcase_23 AC 63 ms
71,164 KB
testcase_24 AC 65 ms
71,192 KB
testcase_25 AC 63 ms
71,456 KB
testcase_26 WA -
testcase_27 AC 64 ms
71,336 KB
testcase_28 AC 63 ms
71,452 KB
testcase_29 AC 63 ms
71,336 KB
testcase_30 AC 61 ms
71,440 KB
testcase_31 AC 64 ms
71,332 KB
testcase_32 AC 66 ms
71,468 KB
testcase_33 AC 64 ms
71,356 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 66 ms
71,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

num = ['0', '1', '4', '5', '6', '9']
if S[5] in num:
    print("YES")
else:
    print("NO")
0