結果
問題 |
No.2185 平方数の下6桁
|
ユーザー |
![]() |
提出日時 | 2023-01-13 21:59:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 105 bytes |
コンパイル時間 | 285 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 52,096 KB |
最終ジャッジ日時 | 2024-12-24 17:28:39 |
合計ジャッジ時間 | 2,811 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 32 WA * 5 |
ソースコード
S = input() num = ['0', '1', '4', '5', '6', '9'] if S[5] in num: print("YES") else: print("NO")