結果
| 問題 | No.3110 Like CPCTF? |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2025-04-21 21:49:41 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 612 bytes |
| 記録 | |
| コンパイル時間 | 1,113 ms |
| コンパイル使用メモリ | 212,608 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-10 03:43:18 |
| 合計ジャッジ時間 | 2,404 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
ソースコード
#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;
}
vjudge1