結果
問題 | No.2865 Base 10 Subsets 2 |
ユーザー | tenten |
提出日時 | 2024-09-02 12:54:54 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 58 ms / 2,000 ms |
コード長 | 1,617 bytes |
コンパイル時間 | 2,312 ms |
コンパイル使用メモリ | 79,324 KB |
実行使用メモリ | 50,612 KB |
最終ジャッジ日時 | 2024-09-02 12:54:58 |
合計ジャッジ時間 | 3,909 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,256 KB |
testcase_01 | AC | 56 ms
50,400 KB |
testcase_02 | AC | 55 ms
50,328 KB |
testcase_03 | AC | 55 ms
50,032 KB |
testcase_04 | AC | 56 ms
50,612 KB |
testcase_05 | AC | 56 ms
50,600 KB |
testcase_06 | AC | 55 ms
50,432 KB |
testcase_07 | AC | 55 ms
50,400 KB |
testcase_08 | AC | 54 ms
50,372 KB |
testcase_09 | AC | 55 ms
50,416 KB |
testcase_10 | AC | 56 ms
50,164 KB |
testcase_11 | AC | 55 ms
49,912 KB |
testcase_12 | AC | 58 ms
50,264 KB |
testcase_13 | AC | 56 ms
50,152 KB |
testcase_14 | AC | 57 ms
50,036 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); long n = sc.nextLong(); long k = sc.nextLong() - 1; Deque<Long> deq = new ArrayDeque<>(); long current = 1; deq.addFirst(current); while (n > 0) { current *= n % 10 + 1; n /= 10; deq.addFirst(current); } long ans = 0; while (deq.size() > 0) { ans *= 10; long x = deq.poll(); while (k >= x) { ans++; k -= x; } } System.out.println(ans); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }