結果

問題 No.1259 スイッチ
ユーザー t98slidert98slider
提出日時 2023-01-08 09:55:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 418 bytes
コンパイル時間 882 ms
コンパイル使用メモリ 90,592 KB
最終ジャッジ日時 2024-12-15 11:32:21
合計ジャッジ時間 1,435 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:7:3: error: 'cin' was not declared in this scope
    7 |   cin >> n >> k >> m;
      |   ^~~
main.cpp:2:1: note: 'std::cin' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
    1 | #include <atcoder/all>
  +++ |+#include <iostream>
    2 | using namespace std;
main.cpp:15:3: error: 'cout' was not declared in this scope
   15 |   cout << ans.val() << '\n';
      |   ^~~~
main.cpp:15:3: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?

ソースコード

diff #

#include <atcoder/all>
using namespace std;
using mint = atcoder::modint1000000007;

int main(){
  long long n, k, m;
  cin >> n >> k >> m;
  mint ans, coef = 1, pow[n + 1];
  pow[0] = 1;
  for(int i = 1; i <= n; i++)pow[i] = pow[i - 1] * n;
  for(long long i = 1; i <= n; coef *= n - i++) {
      if(k % i == 0) ans += coef * pow[n - i];
  }
  if(m != 1) ans = (pow[n] - ans) / (n - 1);
  cout << ans.val() << '\n';
}
0