結果
問題 | No.1632 Sorting Integers (GCD of M) |
ユーザー | publfl |
提出日時 | 2021-07-30 22:17:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,028 bytes |
コンパイル時間 | 425 ms |
コンパイル使用メモリ | 51,424 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 00:43:53 |
合計ジャッジ時間 | 2,096 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | WA | - |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | WA | - |
testcase_38 | AC | 2 ms
5,376 KB |
testcase_39 | WA | - |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | AC | 2 ms
5,376 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 2 ms
5,376 KB |
testcase_46 | WA | - |
testcase_47 | AC | 2 ms
5,376 KB |
testcase_48 | AC | 2 ms
5,376 KB |
testcase_49 | AC | 2 ms
5,376 KB |
testcase_50 | AC | 2 ms
5,376 KB |
testcase_51 | AC | 2 ms
5,376 KB |
testcase_52 | AC | 2 ms
5,376 KB |
testcase_53 | AC | 2 ms
5,376 KB |
testcase_54 | AC | 2 ms
5,376 KB |
testcase_55 | AC | 2 ms
5,376 KB |
testcase_56 | AC | 2 ms
5,376 KB |
testcase_57 | AC | 2 ms
5,376 KB |
testcase_58 | AC | 2 ms
5,376 KB |
testcase_59 | AC | 2 ms
5,376 KB |
testcase_60 | AC | 1 ms
5,376 KB |
testcase_61 | AC | 2 ms
5,376 KB |
testcase_62 | AC | 2 ms
5,376 KB |
ソースコード
#include <stdio.h> #include <vector> #define MOD 1000000007 long long int power(long long int a, long long int b, int M) { long long int ans = 1; long long int k = a; while(b) { if(b%2==1) ans *= k, ans %= M; b/=2; k *= k, k %= MOD; } return ans; } long long int inv(long long int k, int M) { return power(k,M-2,M); } int gcd(int a, int b) { return a?gcd(b%a,a):b; } int c[110]; std::vector<int> V; int main() { int a; scanf("%d",&a); for(int i=1;i<=9;i++) scanf("%d",&c[i]); int count = 0; for(int i=1;i<=9;i++) if(c[i]>0) count++; if(count==1) { for(int i=1;i<=9;i++) { if(c[i]>0) { long long int t = power(10,c[i],MOD); t += (MOD-1), t %= MOD; t *= inv(9,MOD), t %= MOD; t *= i, t %= MOD; printf("%lld",t); return 0; } } } for(int i=1;i<=9;i++) if(c[i]>0) V.push_back(i); int g = 0; for(int i=0;i<V.size();i++) for(int j=i+1;j<V.size();j++) g = gcd(g,9*(V[j]-V[i])); int control; int L = 1; // 2 control = 1; for(int i=1;i<=9;i+=2) if(c[i]>0) control = 0; if(control) L *= 2; // 4 control = 1; for(int i=1;i<=9;i++) { if(i==4) continue; if(i==8) continue; if(c[i]>0) control = 0; } if(control) L *= 2; // 3 int sum = 0; for(int i=1;i<=9;i++) sum += i*c[i], sum %= 9; if(sum%3==0) L *= 3; if(sum%9==0) L *= 3; //27 if(g%27==0) { long long int S = 0; for(int i=1;i<=9;i++) { if(c[i]>0) { S *= power(10,c[i],27), S %= 27; S += ((c[i]-1)/3+1)*i, S %= 27; S += ((c[i]-2)/3+1)*10*i, S %= 27; S += ((c[i]-3)/3+1)*19*i, S %= 27; } } if(S%27==0) L *= 3; } //7 if(count==2) { if(c[1]>0 && c[8]>0) { sum = 0; for(int i=1;i<=c[1]%6;i++) sum *= 10, sum += 1, sum %= 7; for(int i=1;i<=c[8]%6;i++) sum *= 10, sum += 8, sum %= 7; if(sum==0) L *= 7; } else if(c[2]>0&&c[9]>0) { sum = 0; for(int i=1;i<=c[2]%6;i++) sum *= 10, sum += 2, sum %= 7; for(int i=1;i<=c[9]%6;i++) sum *= 10, sum += 9, sum %= 7; if(sum==0) L *= 7; } } printf("%d",gcd(L,g)); }