結果
| 問題 |
No.3036 Nauclhlt型文字列
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-03-02 19:09:43 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 133 bytes |
| コンパイル時間 | 274 ms |
| コンパイル使用メモリ | 82,524 KB |
| 実行使用メモリ | 57,540 KB |
| 最終ジャッジ日時 | 2025-03-02 19:09:45 |
| 合計ジャッジ時間 | 1,926 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 5 WA * 10 |
ソースコード
N = int(input())
S = input()
if N % 2 == 1:
print('No')
else:
print('Yes')
A = "".join(S[::2])
B = "".join(S[1::2])
print(B,A)