結果

問題 No.443 GCD of Permutation
ユーザー kotatsugamekotatsugame
提出日時 2020-03-04 11:45:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 677 bytes
コンパイル時間 615 ms
コンパイル使用メモリ 65,536 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-22 01:33:22
合計ジャッジ時間 1,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
string s;
int cnt[10];
main()
{
	cin>>s;
	int N=s.size();
	for(int i=0;i<N;i++)cnt[s[i]-'0']++;
	bool all=false;
	for(int i=0;i<10;i++)all=all||cnt[i]==N;
	if(all)
	{
		cout<<s<<endl;
		return 0;
	}
	int sum=0;
	for(int i=0;i<10;i++)sum+=cnt[i]*i;
	int ans=1;
	if(sum%9==0)ans=9;
	else if(sum%3==0)ans=3;
	if(cnt[0]+cnt[9]==N)
	{
		if(cnt[9]%9==0)ans*=9;
		else if(cnt[9]%3==0)ans*=3;
	}
	if(cnt[0]+cnt[8]==N)ans*=8;
	else if(cnt[0]+cnt[4]+cnt[8]==N)ans*=4;
	else if(cnt[0]+cnt[2]+cnt[4]+cnt[6]+cnt[8]==N)ans*=2;
	if(cnt[0]+cnt[5]==N)ans*=5;
	if((cnt[0]+cnt[7]==N||cnt[1]+cnt[8]==N||cnt[2]+cnt[9]==N)&&N%3==0)ans*=7;
	cout<<ans<<endl;
}
0