結果

問題 No.443 GCD of Permutation
ユーザー olpheolphe
提出日時 2016-11-11 23:36:21
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,413 bytes
コンパイル時間 2,958 ms
コンパイル使用メモリ 52,888 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-16 19:49:33
合計ジャッジ時間 1,878 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 1 ms
4,384 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,384 KB
testcase_07 AC 1 ms
4,384 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,384 KB
testcase_10 AC 2 ms
4,384 KB
testcase_11 WA -
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 1 ms
4,384 KB
testcase_14 AC 2 ms
4,384 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 1 ms
4,384 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 1 ms
4,380 KB
testcase_19 AC 1 ms
4,384 KB
testcase_20 AC 2 ms
4,384 KB
testcase_21 AC 2 ms
4,384 KB
testcase_22 WA -
testcase_23 AC 1 ms
4,380 KB
testcase_24 WA -
testcase_25 AC 2 ms
4,380 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 2 ms
4,380 KB
testcase_29 WA -
testcase_30 AC 1 ms
4,380 KB
testcase_31 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:14:17: warning: NULL used in arithmetic [-Wpointer-arith]
   if (num[i] == NULL) {
                 ^~~~
main.cpp:21:17: warning: NULL used in arithmetic [-Wpointer-arith]
   if (num[i] == NULL) {
                 ^~~~
main.cpp:30:18: warning: NULL used in arithmetic [-Wpointer-arith]
    if (num[i] == NULL) {
                  ^~~~
main.cpp:40:18: warning: NULL used in arithmetic [-Wpointer-arith]
    if (num[i] == NULL) {
                  ^~~~
main.cpp:49:17: warning: NULL used in arithmetic [-Wpointer-arith]
   if (num[i] == NULL) {
                 ^~~~
main.cpp:57:17: warning: NULL used in arithmetic [-Wpointer-arith]
   if (num[i] == NULL) {
                 ^~~~
main.cpp:65:17: warning: NULL used in arithmetic [-Wpointer-arith]
   if (num[i] == NULL)break;
                 ^~~~

ソースコード

diff #

#include "iostream"
using namespace std;

char num[10004];
int sum=0;
long long int ans[1000] = {};
bool flag=true;
int far = 0;

int main() {
	cin >> num;
	ans[0] = 1;
	for (int i = 0;; i++) {
		if (num[i] == NULL) {
			cout << num<<"\n";
			return 0;
		}
		if (num[i] != num[0])break;
	}
	for (int i = 0;; i++) {
		if (num[i] == NULL) {
			ans[0] = 8;
			flag = false;
			break;
		}
		if ((int)(num[i] - '0') % 8 != 0)break;
	}
	if (flag) {
		for (int i = 0;; i++) {
			if (num[i] == NULL) {
				ans[0] = 4;
				flag = false;
				break;
			}
			if ((int)(num[i] - '0') % 4 != 0)break;
		}
	}
	if (flag) {
		for (int i = 0;; i++) {
			if (num[i] == NULL) {
				ans[0] = 2;
				flag = false;
				break;
			}
			if ((int)(num[i] - '0') % 2 != 0)break;
		}
	}
	for (int i = 0;; i++) {
		if (num[i] == NULL) {
			ans[0] *= 5;
			flag = false;
			break;
		}
		if ((int)(num[i] - '0') % 5 != 0)break;
	}
	for (int i = 0;; i++) {
		if (num[i] == NULL) {
			ans[0] *= 7;
			flag = false;
			break;
		}
		if ((int)(num[i] - '0') % 7 != 0)break;
	}
	for (int i = 0;; i++) {
		if (num[i] == NULL)break;
		sum += num[i] - '0';
	}
	while (sum % 3 == 0) {
		sum /= 3;
		for (int i = far; i >= 0; i--) {
			ans[i] *= 3;
			if (ans[i] >= 100000000000) {
				ans[i + 1] += ans[i] / 100000000000;
				ans[i] %= 100000000000;
				far++;
			}
		}
	}
	for (int i = far; i >= 0; i--) {
		cout << ans[i];
	}
	cout << "\n";
	return 0;
}
0