結果
問題 |
No.1644 Eight Digits
|
ユーザー |
|
提出日時 | 2021-09-09 22:30:16 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 351 bytes |
コンパイル時間 | 1,975 ms |
コンパイル使用メモリ | 169,084 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-31 11:21:47 |
合計ジャッジ時間 | 2,665 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 |
ソースコード
#include <bits/stdc++.h> using namespace std; int k, m = 0; vector<int> v = { 1, 2, 3, 4, 5, 6, 7, 8 }; int main() { cin >> k; do { int t = 0; for (vector<int>::iterator itr = v.begin(); itr != v.end(); itr++) { t *= 10; t += *itr; } if (t % k == 0) m++; } while (next_permutation(v.begin(), v.end())); cout << m << endl; }