結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,984 KB
testcase_01 AC 39 ms
52,556 KB
testcase_02 AC 39 ms
52,444 KB
testcase_03 AC 40 ms
52,052 KB
testcase_04 AC 39 ms
51,756 KB
testcase_05 AC 39 ms
53,444 KB
testcase_06 AC 40 ms
53,368 KB
testcase_07 AC 39 ms
53,288 KB
testcase_08 AC 38 ms
52,120 KB
testcase_09 AC 39 ms
52,696 KB
testcase_10 AC 39 ms
53,368 KB
testcase_11 AC 40 ms
52,300 KB
testcase_12 AC 40 ms
52,300 KB
testcase_13 AC 39 ms
52,616 KB
testcase_14 AC 40 ms
52,280 KB
testcase_15 AC 39 ms
51,980 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