結果
問題 |
No.1849 Three Times Value
|
ユーザー |
![]() |
提出日時 | 2022-02-26 00:21:41 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 738 ms / 2,000 ms |
コード長 | 113 bytes |
コンパイル時間 | 107 ms |
コンパイル使用メモリ | 12,288 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-03 19:26:20 |
合計ジャッジ時間 | 21,524 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
ソースコード
N=int(input()) ANS=0 for i in range(1,10**6): x=str(i)*3 if int(x)<=N: ANS+=1 print(ANS)