結果

問題 No.1849 Three Times Value
ユーザー McGregorshMcGregorsh
提出日時 2023-05-10 20:56:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 75,372 KB
最終ジャッジ日時 2024-11-27 01:11:42
合計ジャッジ時間 5,394 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
75,264 KB
testcase_01 AC 136 ms
75,136 KB
testcase_02 AC 137 ms
75,372 KB
testcase_03 AC 137 ms
75,136 KB
testcase_04 AC 133 ms
75,136 KB
testcase_05 AC 140 ms
75,136 KB
testcase_06 AC 140 ms
75,136 KB
testcase_07 AC 133 ms
75,264 KB
testcase_08 AC 132 ms
74,752 KB
testcase_09 AC 141 ms
74,880 KB
testcase_10 AC 140 ms
74,624 KB
testcase_11 AC 137 ms
75,008 KB
testcase_12 AC 139 ms
74,624 KB
testcase_13 AC 141 ms
75,224 KB
testcase_14 AC 139 ms
75,136 KB
testcase_15 AC 132 ms
75,136 KB
testcase_16 AC 138 ms
75,264 KB
testcase_17 AC 139 ms
74,624 KB
testcase_18 AC 133 ms
74,752 KB
testcase_19 AC 137 ms
75,108 KB
testcase_20 AC 135 ms
74,880 KB
testcase_21 AC 134 ms
74,624 KB
testcase_22 AC 134 ms
75,180 KB
testcase_23 AC 134 ms
75,264 KB
testcase_24 AC 132 ms
75,264 KB
testcase_25 AC 135 ms
74,972 KB
testcase_26 AC 139 ms
74,624 KB
testcase_27 AC 139 ms
75,264 KB
testcase_28 AC 133 ms
75,008 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