結果
問題 |
No.1644 Eight Digits
|
ユーザー |
|
提出日時 | 2021-08-14 10:55:48 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 329 bytes |
コンパイル時間 | 1,672 ms |
コンパイル使用メモリ | 166,800 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-04 23:46:37 |
合計ジャッジ時間 | 2,417 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main() { ll K; cin >> K; int ans = 0, a[8] = {1, 2, 3, 4, 5, 6, 7, 8}; do { ll num = 0; for (int i = 0; i < 8; i ++) num = num * 10 + a[i]; if (num % K == 0) ans ++; }while (next_permutation(a, a + 8)); printf("%d\n", ans); return 0; }