結果

問題 No.2671 NUPC Decompressor
ユーザー detteiuudetteiuu
提出日時 2024-05-26 16:11:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 53,564 KB
最終ジャッジ日時 2024-05-26 16:11:53
合計ジャッジ時間 2,333 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,196 KB
testcase_01 AC 39 ms
52,952 KB
testcase_02 AC 40 ms
51,980 KB
testcase_03 AC 39 ms
52,236 KB
testcase_04 AC 43 ms
53,564 KB
testcase_05 AC 40 ms
52,192 KB
testcase_06 AC 45 ms
53,072 KB
testcase_07 AC 45 ms
53,176 KB
testcase_08 AC 40 ms
53,492 KB
testcase_09 AC 40 ms
52,032 KB
testcase_10 AC 41 ms
52,260 KB
testcase_11 AC 39 ms
51,760 KB
testcase_12 AC 42 ms
52,316 KB
testcase_13 AC 40 ms
53,140 KB
testcase_14 AC 39 ms
52,480 KB
testcase_15 AC 40 ms
52,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())

NUPC = []
D = {0:"N", 1:"U", 2:"P", 3:"C"}
for bit in range(1<<4):
    S = []
    for i in range(4):
        S.append(D[i])
        if 1<<i & bit:
            S += S
    NUPC.append("".join(S))
NUPC.sort()

print(NUPC[K-1])
0