結果
問題 |
No.3036 Nauclhlt型文字列
|
ユーザー |
![]() |
提出日時 | 2025-01-24 01:27:55 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 36 ms / 2,000 ms |
コード長 | 110 bytes |
コンパイル時間 | 677 ms |
コンパイル使用メモリ | 82,544 KB |
実行使用メモリ | 53,504 KB |
最終ジャッジ日時 | 2025-02-28 20:50:36 |
合計ジャッジ時間 | 1,508 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 |
ソースコード
N = int(input()) S = input() if N % 2 == 1: print("No") else: print("Yes") print(S[::2], S[1::2])