結果
問題 | No.2007 Arbitrary Mod (Easy) |
ユーザー |
|
提出日時 | 2022-07-15 21:23:24 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 302 bytes |
コンパイル時間 | 328 ms |
コンパイル使用メモリ | 36,480 KB |
最終ジャッジ日時 | 2025-01-30 07:23:37 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:10:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | scanf("%d", &a); | ~~~~~^~~~~~~~~~ main.cpp:12:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%lld", &n); | ~~~~~^~~~~~~~~~~~
ソースコード
#include<cstdio>#include<atcoder/modint>using namespace atcoder;using ll = long long;using ull = unsigned long long;using Mint = modint998244353;int main(){int a;scanf("%d", &a);ll n;scanf("%lld", &n);printf("998244353\n%u\n", Mint::raw(a).pow(n).val());return 0;}