結果

問題 No.1849 Three Times Value
ユーザー ripityripity
提出日時 2022-02-24 22:36:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 2,036 ms
コンパイル使用メモリ 76,768 KB
実行使用メモリ 47,080 KB
最終ジャッジ日時 2024-07-02 14:07:17
合計ジャッジ時間 8,565 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
42,444 KB
testcase_01 AC 162 ms
42,608 KB
testcase_02 AC 170 ms
42,892 KB
testcase_03 AC 162 ms
42,544 KB
testcase_04 AC 158 ms
42,608 KB
testcase_05 AC 160 ms
42,656 KB
testcase_06 AC 280 ms
46,888 KB
testcase_07 AC 151 ms
42,624 KB
testcase_08 AC 155 ms
42,476 KB
testcase_09 AC 250 ms
47,080 KB
testcase_10 AC 275 ms
47,020 KB
testcase_11 AC 270 ms
46,692 KB
testcase_12 AC 274 ms
46,856 KB
testcase_13 AC 217 ms
44,832 KB
testcase_14 AC 192 ms
43,732 KB
testcase_15 AC 187 ms
42,640 KB
testcase_16 AC 271 ms
47,028 KB
testcase_17 AC 213 ms
44,936 KB
testcase_18 AC 154 ms
42,740 KB
testcase_19 AC 153 ms
42,676 KB
testcase_20 AC 153 ms
42,684 KB
testcase_21 AC 153 ms
42,372 KB
testcase_22 AC 157 ms
42,184 KB
testcase_23 AC 159 ms
42,732 KB
testcase_24 AC 183 ms
42,688 KB
testcase_25 AC 156 ms
42,116 KB
testcase_26 AC 165 ms
42,664 KB
testcase_27 AC 219 ms
45,008 KB
testcase_28 AC 156 ms
42,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    
    public static Scanner sc = new Scanner(System.in);
    public static PrintWriter pw = new PrintWriter(System.out);
    
    public static void main(String[] args) {
        
        int t = 1;
        while( t > 0 ) {
            solve();
            t--;
        }
        
        pw.flush();
        
    }
    
    static void solve() {
        
        long N = sc.nextLong();
        long ans = 0;
        for( long d = 1; d <= 100000; d++,ans++ ) {
            long ttv = Long.valueOf(Long.toString(d)+Long.toString(d)+Long.toString(d));
            if( ttv > N ) break;
        }
        
        pw.println(ans);
        
    }
    
}
0