結果

問題 No.1994 Confusing Name
ユーザー achapiachapi
提出日時 2024-10-12 13:30:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 582 bytes
コンパイル時間 2,436 ms
コンパイル使用メモリ 210,468 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-10-12 13:31:13
合計ジャッジ時間 28,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 7 ms
6,816 KB
testcase_06 AC 17 ms
6,816 KB
testcase_07 AC 5 ms
6,816 KB
testcase_08 AC 12 ms
6,820 KB
testcase_09 AC 17 ms
6,820 KB
testcase_10 AC 9 ms
6,820 KB
testcase_11 AC 8 ms
6,816 KB
testcase_12 AC 1,699 ms
8,704 KB
testcase_13 TLE -
testcase_14 AC 1,817 ms
8,448 KB
testcase_15 AC 1,415 ms
7,552 KB
testcase_16 AC 1,154 ms
6,912 KB
testcase_17 AC 1,361 ms
7,552 KB
testcase_18 AC 1,943 ms
8,704 KB
testcase_19 AC 1,887 ms
8,704 KB
testcase_20 AC 1,987 ms
8,576 KB
testcase_21 AC 284 ms
6,816 KB
testcase_22 AC 123 ms
6,816 KB
testcase_23 AC 1,683 ms
8,448 KB
testcase_24 AC 1,661 ms
8,448 KB
testcase_25 AC 918 ms
6,816 KB
testcase_26 AC 410 ms
6,816 KB
testcase_27 AC 1,500 ms
8,064 KB
testcase_28 AC 1,008 ms
6,816 KB
testcase_29 AC 93 ms
6,816 KB
testcase_30 AC 1,166 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using namespace std;
int main(){
	cin.tie(nullptr);
	ios_base::sync_with_stdio(false);
	int N;
	cin >> N;
	vector<string> S(N);
	for (int i = 0; i < N; i++){
		cin >> S[i];
	}
	set<string> st(S.begin(), S.end());
	for (int i = 0; i < N; i++){
		int ans = 0;
		for (int j = 0; j < (int) S[i].size(); j++){
			auto T = S[i];
			for (int k = 0; k < 26; k++){
				T[j] = 'a' + k;
				if (st.count(T) > 0){
					ans++;
				}
			}
			ans--;
		}
		cout << ans << endl;
	}
}
0