結果
問題 | No.1849 Three Times Value |
ユーザー | tenten |
提出日時 | 2022-02-28 10:04:56 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 168 ms / 2,000 ms |
コード長 | 1,151 bytes |
コンパイル時間 | 2,258 ms |
コンパイル使用メモリ | 76,544 KB |
実行使用メモリ | 45,452 KB |
最終ジャッジ日時 | 2024-07-06 12:41:46 |
合計ジャッジ時間 | 6,503 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 67 ms
38,456 KB |
testcase_01 | AC | 67 ms
38,340 KB |
testcase_02 | AC | 90 ms
39,072 KB |
testcase_03 | AC | 67 ms
38,412 KB |
testcase_04 | AC | 67 ms
38,476 KB |
testcase_05 | AC | 66 ms
38,108 KB |
testcase_06 | AC | 160 ms
45,072 KB |
testcase_07 | AC | 72 ms
40,132 KB |
testcase_08 | AC | 67 ms
38,548 KB |
testcase_09 | AC | 167 ms
45,148 KB |
testcase_10 | AC | 167 ms
45,280 KB |
testcase_11 | AC | 168 ms
45,372 KB |
testcase_12 | AC | 167 ms
44,892 KB |
testcase_13 | AC | 117 ms
41,644 KB |
testcase_14 | AC | 106 ms
41,212 KB |
testcase_15 | AC | 81 ms
39,268 KB |
testcase_16 | AC | 158 ms
45,452 KB |
testcase_17 | AC | 125 ms
41,784 KB |
testcase_18 | AC | 70 ms
39,896 KB |
testcase_19 | AC | 67 ms
38,044 KB |
testcase_20 | AC | 69 ms
40,244 KB |
testcase_21 | AC | 68 ms
40,044 KB |
testcase_22 | AC | 68 ms
38,324 KB |
testcase_23 | AC | 70 ms
38,104 KB |
testcase_24 | AC | 93 ms
40,804 KB |
testcase_25 | AC | 70 ms
39,840 KB |
testcase_26 | AC | 100 ms
40,412 KB |
testcase_27 | AC | 121 ms
41,712 KB |
testcase_28 | AC | 68 ms
40,360 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); long n = sc.nextLong(); int count = 0; for (int i = 1; getTriples(i) <= n; i++) { count++; } System.out.println(count); } static long getTriples(int x) { String s = String.valueOf(x); return Long.parseLong(s + s + s); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }