結果
| 問題 |
No.2530 Yellow Cards
|
| コンテスト | |
| ユーザー |
👑 potato167
|
| 提出日時 | 2023-11-04 01:48:43 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 379 bytes |
| コンパイル時間 | 524 ms |
| コンパイル使用メモリ | 38,528 KB |
| 最終ジャッジ日時 | 2025-02-17 19:06:08 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 17 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:14:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
14 | scanf("%d%d",&N,&K);
| ~~~~~^~~~~~~~~~~~~~
ソースコード
#include<stdio.h>
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#include<atcoder/modint>
typedef atcoder::modint998244353 mint;
using namespace std;
using ll=long long;
const int mod=998244353;
const int rev=748683265;
int main(){
int N,K;
scanf("%d%d",&N,&K);
printf("%d\n",((3*N+2*K+((mint)(N-2)).pow(K)*((mint)(N)).pow(mod-K))*rev).val());
}
potato167