結果
問題 | No.908 うしたぷにきあくん文字列 |
ユーザー | miscalc |
提出日時 | 2019-11-09 18:25:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 787 bytes |
コンパイル時間 | 1,603 ms |
コンパイル使用メモリ | 167,952 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-15 04:44:49 |
合計ジャッジ時間 | 2,509 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; //const ll MOD = 1e9 + 7; //const ll MOD = 998244353; //const ll MOD = ; ll mod(ll A, ll M) {return (A % M + M) % M;} const ll INF = 1LL << 60; template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;} template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;} ll divceil(ll A, ll B) {return (A + (B - 1)) / B;} ll myctoi(char C) {return C - '0';} char myitoc(ll N) {return '0' + N;} #define FINALANS(A) {cout << (A) << '\n'; exit(0);} int main() { string S; cin >> S; for (ll i = 0; i < S.size(); i++) { if (i % 2 == 0 && S.at(i) == ' ') FINALANS("No"); if (i % 2 == 1 && S.at(i) != ' ') FINALANS("No"); } FINALANS("Yes"); }