結果
問題 | No.362 門松ナンバー |
ユーザー | Grenache |
提出日時 | 2016-08-04 23:24:45 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 153 ms / 3,000 ms |
コード長 | 3,187 bytes |
コンパイル時間 | 3,427 ms |
コンパイル使用メモリ | 79,472 KB |
実行使用メモリ | 42,788 KB |
最終ジャッジ日時 | 2024-04-24 15:34:50 |
合計ジャッジ時間 | 7,258 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
40,448 KB |
testcase_01 | AC | 117 ms
40,900 KB |
testcase_02 | AC | 114 ms
40,464 KB |
testcase_03 | AC | 117 ms
40,368 KB |
testcase_04 | AC | 108 ms
40,352 KB |
testcase_05 | AC | 116 ms
40,996 KB |
testcase_06 | AC | 145 ms
42,312 KB |
testcase_07 | AC | 118 ms
40,556 KB |
testcase_08 | AC | 111 ms
40,592 KB |
testcase_09 | AC | 142 ms
42,116 KB |
testcase_10 | AC | 151 ms
41,932 KB |
testcase_11 | AC | 147 ms
42,456 KB |
testcase_12 | AC | 145 ms
42,572 KB |
testcase_13 | AC | 147 ms
41,640 KB |
testcase_14 | AC | 147 ms
41,688 KB |
testcase_15 | AC | 145 ms
41,900 KB |
testcase_16 | AC | 149 ms
42,788 KB |
testcase_17 | AC | 143 ms
41,472 KB |
testcase_18 | AC | 153 ms
42,232 KB |
testcase_19 | AC | 112 ms
40,620 KB |
testcase_20 | AC | 142 ms
42,324 KB |
testcase_21 | AC | 104 ms
40,352 KB |
ソースコード
import java.io.*; import java.util.*; public class Main_yukicoder362 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Printer pr = new Printer(System.out); int t = sc.nextInt(); long[][] dp = new long[14][100]; Arrays.fill(dp[0], 1L); for (int i = 1; i < 14; i++) { for (int k = 0; k < 100; k++) { for (int l = 0; l < 100; l++) { if (isKado(k, l)) { dp[i][k] += dp[i - 1][l]; } } } } for (int tcase = 0; tcase < t; tcase++) { long k = sc.nextLong(); List<Integer> ans = new ArrayList<>(); long sum = 0; out: for (int i = 1; i < 14; i++) { for (int j = 10; j < 100; j++) { if (sum + dp[i][j] >= k) { k -= sum; ans.add(j); for (int ii = i - 1; ii >= 0; ii--) { int prev = ans.get(ans.size() - 1); for (int jj = 0; jj < 100; jj++) { if (isKado(prev, jj)) { if (k - dp[ii][jj] <= 0) { ans.add(jj); break; } else { k -= dp[ii][jj]; } } } } // pr.println(j); break out; } sum += dp[i][j]; } } StringBuilder s = new StringBuilder(); for (int i = 0; i < ans.size(); i++) { if (i == ans.size() - 1) { s.append(String.format("%02d", ans.get(i))); } else { s.append(ans.get(i) / 10); } } pr.println(s); } pr.close(); sc.close(); } private static boolean isKado(int a, int b) { int a1 = a / 10; int a2 = a % 10; int b1 = b / 10; int b2 = b % 10; if (a2 != b1 || a1 == a2 || b1 == b2 || a1 == b2) { return false; } if (a1 > a2 && a2 > b2) { return false; } if (a1 < a2 && a2 < b2) { return false; } return true; } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; Iterator<String> it; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); } String next() throws RuntimeException { try { if (it == null || !it.hasNext()) { // it = Arrays.asList(br.readLine().split(" ")).iterator(); it = Arrays.asList(br.readLine().split("\\p{javaWhitespace}+")).iterator(); } return it.next(); } catch (IOException e) { throw new IllegalStateException(); } } int nextInt() throws RuntimeException { return Integer.parseInt(next()); } long nextLong() throws RuntimeException { return Long.parseLong(next()); } float nextFloat() throws RuntimeException { return Float.parseFloat(next()); } double nextDouble() throws RuntimeException { return Double.parseDouble(next()); } void close() { try { br.close(); } catch (IOException e) { // throw new IllegalStateException(); } } } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }