結果
問題 |
No.3036 Nauclhlt型文字列
|
ユーザー |
![]() |
提出日時 | 2025-02-28 21:34:39 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 616 bytes |
コンパイル時間 | 1,419 ms |
コンパイル使用メモリ | 162,524 KB |
実行使用メモリ | 8,232 KB |
最終ジャッジ日時 | 2025-02-28 21:34:48 |
合計ジャッジ時間 | 2,154 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 5 WA * 10 |
ソースコード
#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<<endl; for(int i = 1; i<N; i+=2) cout << S[i]; cout<<endl; }