結果
| 問題 | No.1644 Eight Digits |
| コンテスト | |
| ユーザー |
kekenx
|
| 提出日時 | 2022-11-17 16:53:52 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 415 bytes |
| 記録 | |
| コンパイル時間 | 1,313 ms |
| コンパイル使用メモリ | 210,600 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-06-28 13:28:11 |
| 合計ジャッジ時間 | 2,437 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int k;
cin >> k;
vector<int> digits(8);
iota(digits.begin(), digits.end(), 1);
int ans = 0;
do {
int current = 0;
for (const int& digit : digits) {
current *= 10;
current += digit;
}
if (current % k == 0)
ans++;
} while (next_permutation(digits.begin(), digits.end()));
cout << ans << '\n';
return 0;
}
kekenx