結果
問題 |
No.2530 Yellow Cards
|
ユーザー |
👑 ![]() |
提出日時 | 2023-11-03 23:34:08 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 367 bytes |
コンパイル時間 | 282 ms |
コンパイル使用メモリ | 28,032 KB |
最終ジャッジ日時 | 2025-02-17 18:57:50 |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 17 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:19:14: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘ll’ {aka ‘long long int’} [-Wformat=] 19 | printf("%d\n",(3*N+2*K+my_pow(N-2,K)*my_pow(N,mod-K)%mod)*rev%mod); | ~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | | | | int ll {aka long long int} | %lld main.cpp:18:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | scanf("%d%d",&N,&K); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#include<stdio.h> using ll=long long; constexpr int mod=998244353; constexpr int rev=748683265; ll my_pow(ll a,int b){ ll res=1; while(b){ res=res*(1+(b&1)*(a-1))%mod; a=a*a%mod; b>>=1; } return res; } int main(){ int N,K; scanf("%d%d",&N,&K); printf("%d\n",(3*N+2*K+my_pow(N-2,K)*my_pow(N,mod-K)%mod)*rev%mod); }