結果

問題 No.2185 平方数の下6桁
ユーザー katonyonkokatonyonko
提出日時 2023-01-13 21:28:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 181 bytes
コンパイル時間 1,166 ms
コンパイル使用メモリ 86,820 KB
実行使用メモリ 76,508 KB
最終ジャッジ日時 2023-08-26 03:00:58
合計ジャッジ時間 4,787 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,928 KB
testcase_01 AC 71 ms
76,288 KB
testcase_02 AC 70 ms
75,924 KB
testcase_03 AC 71 ms
76,228 KB
testcase_04 AC 71 ms
76,240 KB
testcase_05 AC 69 ms
76,140 KB
testcase_06 AC 72 ms
76,040 KB
testcase_07 AC 71 ms
76,124 KB
testcase_08 AC 71 ms
76,236 KB
testcase_09 AC 70 ms
76,144 KB
testcase_10 AC 74 ms
76,264 KB
testcase_11 AC 73 ms
76,172 KB
testcase_12 AC 68 ms
76,368 KB
testcase_13 AC 67 ms
76,332 KB
testcase_14 AC 68 ms
76,300 KB
testcase_15 AC 70 ms
76,376 KB
testcase_16 AC 69 ms
76,240 KB
testcase_17 AC 66 ms
76,172 KB
testcase_18 AC 66 ms
76,236 KB
testcase_19 AC 69 ms
76,508 KB
testcase_20 AC 69 ms
76,324 KB
testcase_21 AC 70 ms
76,208 KB
testcase_22 AC 73 ms
76,300 KB
testcase_23 AC 70 ms
76,360 KB
testcase_24 AC 70 ms
76,476 KB
testcase_25 AC 68 ms
76,268 KB
testcase_26 WA -
testcase_27 AC 70 ms
76,288 KB
testcase_28 AC 69 ms
76,384 KB
testcase_29 AC 69 ms
76,364 KB
testcase_30 AC 70 ms
76,292 KB
testcase_31 AC 70 ms
76,144 KB
testcase_32 AC 73 ms
76,500 KB
testcase_33 AC 69 ms
76,448 KB
testcase_34 AC 67 ms
76,276 KB
testcase_35 AC 70 ms
76,252 KB
testcase_36 AC 70 ms
76,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():
  return sys.stdin.readline()[:-1]
S=int(input())
ans='NO'
for i in range(500):
  for j in range(1000):
    if (2000*i+j**2)%(10**6)==S: ans='YES'
print(ans)
0