結果

問題 No.3110 Like CPCTF?
ユーザー tokitsukaze
提出日時 2025-04-21 21:49:31
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 1,910 ms
コンパイル使用メモリ 192,188 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-04-21 21:49:34
合計ジャッジ時間 2,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         scanf("%d",&n);
      |         ~~~~~^~~~~~~~~
main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |         scanf("%s",s+1);
      |         ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF=0x3f3f3f3f;
const ll LLINF=0x3f3f3f3f3f3f3f3fLL;
const int MAX=1e5+10;
char s[MAX];
int main()
{
	int n,i,j,x,y,z,ans;
	scanf("%d",&n);
	scanf("%s",s+1);
	ans=0;
	for(i=1;i<=n;i++)
	{
		for(j=i+2;j<=n;j++)
		{
			if(s[i]!=s[j]) continue;
			for(x=i+1;x<j;x++)
			{
				if(s[x]==s[i]) continue;
				for(y=j+1;y<=n;y++)
				{
					if(s[y]==s[x] || s[y]==s[i]) continue;
					for(z=y+1;z<=n;z++)
					{
						if(s[z]==s[y] || s[z]==s[x] || s[z]==s[i]) continue;
						ans++;
					}
				}
			}
		}
	}
	printf("%d\n",ans);
	return 0;
}
0