結果

問題 No.1849 Three Times Value
ユーザー McGregorshMcGregorsh
提出日時 2023-05-10 20:56:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,712 KB
最終ジャッジ日時 2024-05-05 06:35:08
合計ジャッジ時間 5,249 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
75,496 KB
testcase_01 AC 132 ms
75,264 KB
testcase_02 AC 133 ms
75,580 KB
testcase_03 AC 135 ms
75,228 KB
testcase_04 AC 133 ms
75,520 KB
testcase_05 AC 128 ms
75,648 KB
testcase_06 AC 134 ms
75,648 KB
testcase_07 AC 127 ms
75,248 KB
testcase_08 AC 127 ms
75,264 KB
testcase_09 AC 133 ms
75,520 KB
testcase_10 AC 134 ms
75,360 KB
testcase_11 AC 133 ms
75,168 KB
testcase_12 AC 133 ms
75,632 KB
testcase_13 AC 130 ms
75,264 KB
testcase_14 AC 132 ms
75,232 KB
testcase_15 AC 130 ms
75,136 KB
testcase_16 AC 135 ms
75,568 KB
testcase_17 AC 134 ms
75,392 KB
testcase_18 AC 132 ms
75,288 KB
testcase_19 AC 132 ms
75,224 KB
testcase_20 AC 128 ms
75,528 KB
testcase_21 AC 130 ms
75,264 KB
testcase_22 AC 131 ms
75,360 KB
testcase_23 AC 129 ms
75,172 KB
testcase_24 AC 130 ms
75,428 KB
testcase_25 AC 127 ms
75,592 KB
testcase_26 AC 131 ms
75,648 KB
testcase_27 AC 136 ms
75,264 KB
testcase_28 AC 129 ms
75,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
   
   N = int(input())
   
   ans = 0
   for i in range(1, 1050000):
   	  mozi = str(i) * 3
   	  if int(mozi) <= N:
   	  	  ans += 1
   print(ans)
   
if __name__ == '__main__':
    main()
    
0