結果
問題 | No.669 対決!!! 飲み比べ |
ユーザー | 👑 p-adic |
提出日時 | 2018-04-06 22:15:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 925 bytes |
コンパイル時間 | 624 ms |
コンパイル使用メモリ | 69,124 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-26 10:51:02 |
合計ジャッジ時間 | 1,646 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
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 |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <list> #include <string> #include <stdio.h> #include <stdint.h> using namespace std; using uint = unsigned int; using int64 = int64_t; using uint64 = uint64_t; int main() { uint N; uint K; char s0[7999]; cin >> N >> K; cin.ignore(); cin.getline( s0, sizeof( s0 ) ); const string s1 = s0; const uint L = s1.size(); list<uint> A; auto itr = A.begin(); for( uint i = 0 ; i < L ; i++ ){ if( s1[i] == ' ' ){ *itr %= K + 1; itr++; } else { *itr = *itr * 10 + ( s1[i] - '0' ); } } for( uint d = 0 ; d < 20 ; d++ ){ itr = A.begin(); bool b = true; for( uint j = 0 ; j < N ; j++ ){ b = ( ( *itr % 2 == 0 ) && b ) || ( ( *itr % 2 == 1 ) && ! b ); *itr /= 2; itr++; } if( b ){ cout << "YES" << endl; return 0; } } cout << "NO" << endl; return 0; }