結果
| 問題 | No.2671 NUPC Decompressor |
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2024-03-16 11:39:15 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 63 ms / 2,000 ms |
| + 910µs | |
| コード長 | 190 bytes |
| 記録 | |
| コンパイル時間 | 232 ms |
| コンパイル使用メモリ | 96,012 KB |
| 実行使用メモリ | 78,976 KB |
| 最終ジャッジ日時 | 2026-09-06 11:44:32 |
| 合計ジャッジ時間 | 2,550 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
nupc = "NUPC"
comp = []
for x in range(16):
t = ""
for i in range(4):
t += nupc[i]
if x & (1 << i):
t += t
comp.append(t)
comp.sort()
k = int(input()) - 1
print(comp[k])