結果
問題 |
No.3036 Nauclhlt型文字列
|
ユーザー |
![]() |
提出日時 | 2025-02-28 21:35:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 616 bytes |
コンパイル時間 | 1,366 ms |
コンパイル使用メモリ | 162,648 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2025-02-28 21:36:01 |
合計ジャッジ時間 | 1,884 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i = 0; i< (int)(n); i++) using ll = long long; using ull = unsigned long long; using vi = vector<int>; ll INF = 2e18; #define Yes cout << "Yes" << endl #define No cout << "No" << endl #define YN {cout<<"Yes"<<endl;}else{cout<<"No"<<endl;} // true → Yes false → No // cout << fixed << setprecision(20); int main() { int N; cin>>N; string S; cin>>S; if(N%2==1) { No; return 0; } Yes; for(int i = 0; i<N; i+=2) cout << S[i]; cout<< " "; for(int i = 1; i<N; i+=2) cout << S[i]; cout<<endl; }