結果
問題 | No.908 うしたぷにきあくん文字列 |
ユーザー | ゆるく |
提出日時 | 2019-10-26 02:37:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,402 bytes |
コンパイル時間 | 1,629 ms |
コンパイル使用メモリ | 167,356 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 14:15:12 |
合計ジャッジ時間 | 2,215 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define endl '\n' #define ALL(g) (g).begin(),(g).end() #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) #define F(i,j,k) fill(i[0],i[0]+j*j,k) #define P(p) cout<<(p)<<endl; #define SORT(v) sort(ALL(v)) #define SORTD(v) sort(ALL(v), greater<int>()) #define EXIST(s,e) ((s).find(e)!=(s).end()) #define INF 1<<30 #define v(T) vector<T> #define vv(T) v(v(T)) #define print(x) cout<<(x)<<endl #define printv(v) for(auto i : v){cout<<i<<" ";}cout<<endl #define printu(v) for(auto i : v){print(i);} #define readv(v, n) for (int i=0;i<n;i++)cin >> v[i] typedef vector<int> vi; typedef vector<long long> vl; typedef vector<double> vd; typedef pair<int,int> pii; typedef pair<long,long> pll; typedef long long ll; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } void debug_print() {} template <class Head, class... Tail> void debug_print(Head&& head, Tail&&... tail) { cout << (head) << endl; debug_print(forward<Tail>(tail)...); } int i, j, k; int main() { cin.tie(0); ios::sync_with_stdio(false); string s; cin >> s; rep(i, s.length()) { if ((i + 1) % 2 == 0 && s[i] != ' ') { print("No"); exit(0); } } print("Yes"); return 0; }