結果

問題 No.1994 Confusing Name
ユーザー 沙耶花沙耶花
提出日時 2022-07-01 21:29:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,407 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 4,057 ms
コンパイル使用メモリ 270,444 KB
実行使用メモリ 7,144 KB
最終ジャッジ日時 2024-11-26 03:53:16
合計ジャッジ時間 23,338 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 7 ms
5,248 KB
testcase_06 AC 16 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 12 ms
5,248 KB
testcase_09 AC 16 ms
5,248 KB
testcase_10 AC 9 ms
5,248 KB
testcase_11 AC 7 ms
5,248 KB
testcase_12 AC 1,201 ms
7,016 KB
testcase_13 AC 1,407 ms
7,016 KB
testcase_14 AC 1,281 ms
6,968 KB
testcase_15 AC 1,058 ms
6,820 KB
testcase_16 AC 901 ms
6,664 KB
testcase_17 AC 1,029 ms
6,800 KB
testcase_18 AC 1,373 ms
7,144 KB
testcase_19 AC 1,371 ms
7,016 KB
testcase_20 AC 1,388 ms
7,020 KB
testcase_21 AC 256 ms
5,248 KB
testcase_22 AC 111 ms
5,248 KB
testcase_23 AC 1,225 ms
7,064 KB
testcase_24 AC 1,222 ms
7,092 KB
testcase_25 AC 764 ms
5,512 KB
testcase_26 AC 351 ms
5,248 KB
testcase_27 AC 1,128 ms
6,980 KB
testcase_28 AC 787 ms
5,448 KB
testcase_29 AC 82 ms
5,248 KB
testcase_30 AC 882 ms
6,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

int main(){
	
	int N;
	cin>>N;
	
	vector<string> S(N);
	vector<string> s;
	rep(i,N){
		cin>>S[i];
		s.push_back(S[i]);
	}
	sort(s.begin(),s.end());
	rep(i,N){
		int ans = 0;
		rep(j,S[i].size()){
			rep(k,26){
				char c = 'a' + k;
				if(c==S[i][j])continue;
				swap(S[i][j],c);
				if(binary_search(s.begin(),s.end(),S[i]))ans++;
				swap(S[i][j],c);
			}
		}
		cout<<ans<<endl;
	}
	
    return 0;
}
0