結果
問題 | No.3068 CTFっぽいの |
ユーザー | mai |
提出日時 | 2020-03-30 14:48:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 544 bytes |
コンパイル時間 | 2,074 ms |
コンパイル使用メモリ | 208,940 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 05:02:16 |
合計ジャッジ時間 | 3,999 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | WA | - |
evil0 | WA | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define i_(x) i##x #define r_(x) r##x #define f_(x) f##x #define m_(x) m##x #define s_(x) s##x #define i_nt i_(nt) #define i_f i_(f) #define f_or f_(or) // if i_nt m_(ain)() { s_(tring) s; cin >> s; i_nt t = 0; i_nt ok = true; map<i_nt, i_nt> mm; f_or (i_nt i = 0; i+8 < s.size(); ++i) { set<i_nt> bb; f_or (i_nt j = 0; j < 9; ++j) { bb.insert(s[i+j]); } i_f (bb.size() == 9) { cout << "Yes" << endl; r_(eturn) 0; } } cout << "No" << endl; }