結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,012 KB
testcase_01 AC 37 ms
53,044 KB
testcase_02 AC 38 ms
53,752 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 38 ms
53,424 KB
testcase_09 AC 37 ms
52,552 KB
testcase_10 AC 37 ms
52,068 KB
testcase_11 AC 47 ms
61,196 KB
testcase_12 MLE -
testcase_13 AC 37 ms
52,016 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 45 ms
61,068 KB
testcase_17 AC 37 ms
52,680 KB
testcase_18 AC 37 ms
52,140 KB
testcase_19 MLE -
testcase_20 AC 37 ms
52,864 KB
testcase_21 MLE -
testcase_22 AC 38 ms
52,956 KB
testcase_23 MLE -
testcase_24 AC 37 ms
51,980 KB
testcase_25 AC 38 ms
52,820 KB
testcase_26 AC 37 ms
53,496 KB
testcase_27 AC 38 ms
52,032 KB
testcase_28 AC 38 ms
53,456 KB
testcase_29 AC 38 ms
52,528 KB
testcase_30 MLE -
testcase_31 AC 37 ms
52,276 KB
testcase_32 MLE -
testcase_33 AC 37 ms
52,152 KB
testcase_34 MLE -
testcase_35 MLE -
testcase_36 AC 37 ms
52,336 KB
testcase_37 AC 37 ms
52,556 KB
testcase_38 AC 46 ms
62,832 KB
testcase_39 AC 46 ms
62,800 KB
testcase_40 AC 37 ms
52,624 KB
testcase_41 AC 48 ms
62,640 KB
testcase_42 AC 43 ms
59,284 KB
testcase_43 AC 48 ms
61,540 KB
testcase_44 AC 44 ms
60,600 KB
testcase_45 AC 44 ms
59,752 KB
testcase_46 AC 48 ms
62,916 KB
testcase_47 AC 38 ms
52,436 KB
testcase_48 AC 39 ms
53,184 KB
testcase_49 AC 38 ms
52,968 KB
testcase_50 AC 49 ms
63,292 KB
testcase_51 MLE -
testcase_52 AC 44 ms
60,644 KB
testcase_53 AC 37 ms
52,964 KB
testcase_54 AC 38 ms
53,568 KB
testcase_55 AC 38 ms
53,288 KB
testcase_56 AC 39 ms
52,196 KB
testcase_57 AC 47 ms
62,608 KB
testcase_58 MLE -
testcase_59 AC 47 ms
62,336 KB
testcase_60 AC 44 ms
59,620 KB
testcase_61 AC 37 ms
52,872 KB
testcase_62 MLE -
testcase_63 MLE -
testcase_64 AC 47 ms
61,836 KB
testcase_65 AC 37 ms
53,256 KB
testcase_66 AC 39 ms
54,092 KB
testcase_67 MLE -
testcase_68 AC 47 ms
61,620 KB
testcase_69 AC 38 ms
52,544 KB
testcase_70 AC 37 ms
52,624 KB
testcase_71 MLE -
testcase_72 MLE -
testcase_73 MLE -
testcase_74 AC 47 ms
61,888 KB
testcase_75 AC 37 ms
52,652 KB
testcase_76 AC 38 ms
52,976 KB
testcase_77 AC 37 ms
52,612 KB
testcase_78 MLE -
testcase_79 MLE -
testcase_80 AC 36 ms
52,456 KB
testcase_81 AC 37 ms
52,332 KB
testcase_82 AC 38 ms
52,604 KB
testcase_83 MLE -
testcase_84 AC 37 ms
52,464 KB
testcase_85 MLE -
testcase_86 AC 37 ms
52,404 KB
testcase_87 AC 46 ms
61,684 KB
testcase_88 AC 37 ms
52,640 KB
testcase_89 AC 48 ms
63,224 KB
testcase_90 MLE -
testcase_91 MLE -
testcase_92 AC 38 ms
52,424 KB
testcase_93 MLE -
testcase_94 MLE -
testcase_95 AC 37 ms
52,328 KB
testcase_96 AC 48 ms
61,576 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( 1e5 ), 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