結果
問題 | No.1644 Eight Digits |
ユーザー | 蜜蜂 |
提出日時 | 2021-07-29 10:08:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 964 bytes |
コンパイル時間 | 3,668 ms |
コンパイル使用メモリ | 229,440 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-03 16:00:31 |
合計ジャッジ時間 | 4,741 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 |
ソースコード
//g++ 2.cpp -std=c++14 -O2 -I . #include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; using ld = long double; using vi = vector<int>; using vvi = vector<vi>; using vll = vector<ll>; using vvll = vector<vll>; using vld = vector<ld>; using vvld = vector<vld>; #define fi first #define se second #define pb push_back #define pq_big(T) priority_queue<T,vector<T>,less<T>> #define pq_small(T) priority_queue<T,vector<T>,greater<T>> #define all(a) a.begin(),a.end() #define rep(i,start,end) for(ll i=start;i<(ll)(end);i++) #define per(i,start,end) for(ll i=start;i>=(ll)(end);i--) int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int k,ans=0; cin>>k; vi a(8); rep(i,0,8){ a[i]=i+1; } do{ int check=0; rep(i,0,8){ check*=10; check+=a[i]; } if(check%k==0){ ans++; } }while(next_permutation(a.begin(),a.end())); cout<<ans<<endl; }