結果

問題 No.1644 Eight Digits
コンテスト
ユーザー manjuuu_onsen
提出日時 2021-08-13 22:10:30
言語 C++14
(gcc 15.3.0 + boost 1.92.0 + ACL)
コンパイル:
g++-15 -O2 -lm -std=c++14 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 2 ms / 1,000 ms
+ 162µs
コード長 319 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 852 ms
コンパイル使用メモリ 185,124 KB
実行使用メモリ 9,924 KB
最終ジャッジ日時 2026-09-09 19:55:13
合計ジャッジ時間 2,524 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<bits/stdc++.h>

using namespace std;
using ll = long long;
using pint = pair<int,int>;


int main()
{
	int K; cin >> K;
	string s(8, '1');
	iota(s.begin(), s.end(), '1');

	int sum = 0;
	do {

		int num = stoi(s);
		sum += (num % K == 0);

	}while(next_permutation(s.begin(), s.end()));
	cout << sum << endl;
}
0