結果
問題 | No.2671 NUPC Decompressor |
ユーザー | ks2m |
提出日時 | 2024-03-15 21:45:26 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 130 ms / 2,000 ms |
コード長 | 661 bytes |
コンパイル時間 | 3,299 ms |
コンパイル使用メモリ | 76,728 KB |
実行使用メモリ | 54,852 KB |
最終ジャッジ日時 | 2024-09-30 00:41:35 |
合計ジャッジ時間 | 5,230 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
ソースコード
import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int k = sc.nextInt(); sc.close(); int n = 4; int n2 = 16; char[] s = {'N', 'U', 'P', 'C'}; List<String> list = new ArrayList<>(); for (int i = 0; i < n2; i++) { StringBuilder sb = new StringBuilder(); for (int j = 0; j < n; j++) { sb.append(s[j]); if ((i >> j & 1) == 1) { sb.append(sb); } } list.add(sb.toString()); } Collections.sort(list); System.out.println(list.get(k - 1)); } }