結果

問題 No.491 10^9+1と回文
ユーザー 0w10w1
提出日時 2017-04-09 20:36:45
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 235 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 76,532 KB
最終ジャッジ日時 2024-07-18 01:38:04
合計ジャッジ時間 9,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,252 KB
testcase_01 AC 36 ms
52,304 KB
testcase_02 AC 36 ms
52,220 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 33 ms
53,248 KB
testcase_09 AC 32 ms
53,672 KB
testcase_10 AC 32 ms
53,692 KB
testcase_11 AC 40 ms
61,808 KB
testcase_12 MLE -
testcase_13 AC 32 ms
52,248 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 40 ms
61,132 KB
testcase_17 AC 34 ms
54,120 KB
testcase_18 AC 34 ms
53,512 KB
testcase_19 MLE -
testcase_20 AC 34 ms
53,820 KB
testcase_21 MLE -
testcase_22 AC 35 ms
52,280 KB
testcase_23 MLE -
testcase_24 AC 34 ms
52,268 KB
testcase_25 AC 35 ms
54,100 KB
testcase_26 AC 34 ms
52,456 KB
testcase_27 AC 31 ms
52,628 KB
testcase_28 AC 33 ms
53,368 KB
testcase_29 AC 33 ms
53,136 KB
testcase_30 MLE -
testcase_31 AC 33 ms
53,056 KB
testcase_32 MLE -
testcase_33 AC 33 ms
52,944 KB
testcase_34 MLE -
testcase_35 MLE -
testcase_36 AC 36 ms
52,192 KB
testcase_37 AC 37 ms
52,964 KB
testcase_38 AC 41 ms
61,896 KB
testcase_39 AC 42 ms
62,360 KB
testcase_40 AC 33 ms
53,532 KB
testcase_41 AC 42 ms
63,144 KB
testcase_42 AC 40 ms
60,868 KB
testcase_43 AC 42 ms
61,696 KB
testcase_44 AC 37 ms
59,428 KB
testcase_45 AC 37 ms
59,352 KB
testcase_46 AC 52 ms
63,400 KB
testcase_47 AC 33 ms
52,592 KB
testcase_48 AC 32 ms
52,976 KB
testcase_49 AC 33 ms
52,884 KB
testcase_50 MLE -
testcase_51 MLE -
testcase_52 AC 41 ms
59,852 KB
testcase_53 AC 34 ms
52,468 KB
testcase_54 AC 37 ms
52,852 KB
testcase_55 AC 32 ms
52,960 KB
testcase_56 AC 33 ms
53,356 KB
testcase_57 MLE -
testcase_58 MLE -
testcase_59 AC 42 ms
61,540 KB
testcase_60 AC 40 ms
60,488 KB
testcase_61 AC 32 ms
52,820 KB
testcase_62 MLE -
testcase_63 MLE -
testcase_64 AC 42 ms
63,260 KB
testcase_65 AC 34 ms
52,224 KB
testcase_66 AC 35 ms
52,464 KB
testcase_67 MLE -
testcase_68 AC 46 ms
61,608 KB
testcase_69 AC 35 ms
53,248 KB
testcase_70 AC 36 ms
52,992 KB
testcase_71 MLE -
testcase_72 AC 43 ms
62,944 KB
testcase_73 MLE -
testcase_74 AC 42 ms
61,432 KB
testcase_75 AC 34 ms
52,528 KB
testcase_76 AC 33 ms
52,644 KB
testcase_77 AC 32 ms
52,216 KB
testcase_78 MLE -
testcase_79 MLE -
testcase_80 AC 34 ms
53,236 KB
testcase_81 AC 34 ms
52,320 KB
testcase_82 AC 35 ms
52,292 KB
testcase_83 MLE -
testcase_84 AC 39 ms
52,268 KB
testcase_85 MLE -
testcase_86 AC 35 ms
54,028 KB
testcase_87 AC 42 ms
61,824 KB
testcase_88 AC 34 ms
52,548 KB
testcase_89 AC 43 ms
62,396 KB
testcase_90 MLE -
testcase_91 MLE -
testcase_92 AC 32 ms
53,376 KB
testcase_93 MLE -
testcase_94 MLE -
testcase_95 AC 33 ms
52,332 KB
testcase_96 AC 40 ms
62,328 KB
testcase_97 MLE -
testcase_98 MLE -
testcase_99 MLE -
testcase_100 MLE -
testcase_101 MLE -
testcase_102 MLE -
testcase_103 MLE -
testcase_104 MLE -
testcase_105 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int( input() )
ans = 0
for i in range( 1, int( 1e6 ), 1 ):
  ng = False
  q = i * int( 1e9 + 1 )
  if q > N: break
  f = str( q )
  for j in range( len( f ) ):
    ng |= f[ j ] != f[ len( f ) - 1 - j ]
  ans += not ng
print( ans )
0