結果
問題 | No.150 "良問"(良問とは言っていない |
ユーザー | nksk38 |
提出日時 | 2017-07-15 15:20:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 988 bytes |
コンパイル時間 | 725 ms |
コンパイル使用メモリ | 80,940 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 02:11:58 |
合計ジャッジ時間 | 1,538 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 5 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 3 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 3 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 3 ms
5,248 KB |
testcase_20 | AC | 3 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:33:27: warning: overflow in conversion from ‘long int’ to ‘int’ changes value from ‘10000000000’ to ‘1410065408’ [-Woverflow] 33 | int ans = 10000000000; | ^~~~~~~~~~~
ソースコード
#include<cstdio> #include<iostream> #include<algorithm> #include<string> #include<queue> #include<vector> #include<functional> #include<cmath> #include<map> #include<stack> #include<set> #include<numeric> #include<limits> #define all(x) (x).begin(),(x).end() #define rall(x) (x).rbegin(),(x).rend() using namespace std; typedef long long ll; typedef pair<int, int> pi; typedef pair<ll, ll> pl; typedef pair<ll, string> pls; int main() { int T; cin >> T; string problem = "problem"; string good = "good"; for (int t = 0; t < T; t++) { string s; cin >> s; int ans = 10000000000; for (int i = 0; i <= s.size() - 4 - 7; i++) { int res1 = 0; for (int k = 0; k < good.size(); k++) { if (s[i + k] != good[k])res1++; } for (int j = i + 4; j <= s.size() - 7; j++) { int res2 = 0; for (int k = 0; k < problem.size(); k++) { if (s[j + k] != problem[k]) res2++; } ans = min(ans, res1 + res2); } } cout << ans << endl; } return 0; }