結果
| 問題 |
No.3036 Nauclhlt型文字列
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-06-08 08:31:27 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 173 bytes |
| コンパイル時間 | 620 ms |
| コンパイル使用メモリ | 82,632 KB |
| 実行使用メモリ | 68,044 KB |
| 最終ジャッジ日時 | 2025-06-08 08:31:30 |
| 合計ジャッジ時間 | 2,934 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 15 |
ソースコード
N = int(input())
S = input()
if n % 2 == 1:
print("No")
exit(0)
print("Yes")
p = ""
q = ""
for i in range(N):
if i % 2 == 0:
p += S[i]
else:
q += S[i]
print(p, q)