結果
| 問題 |
No.2079 aaabbc
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-09-27 01:12:23 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 17 ms / 2,000 ms |
| コード長 | 312 bytes |
| コンパイル時間 | 1,666 ms |
| コンパイル使用メモリ | 192,944 KB |
| 最終ジャッジ日時 | 2025-02-07 16:38:06 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 11 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main () {
int N;
cin >> N;
long long ans = 1;
long long x = 3;
long long m = 998244353;
while (N) {
if (N & 1) {
ans = (ans * x) % m;
}
N >>= 1;
x = (x * x) % m;
}
cout << ans << endl;
}