結果

問題 No.2079 aaabbc
ユーザー FromBooskaFromBooska
提出日時 2023-06-19 15:39:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 817 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 53,828 KB
最終ジャッジ日時 2024-06-27 04:00:55
合計ジャッジ時間 1,608 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 35 ms
52,148 KB
testcase_02 AC 36 ms
52,672 KB
testcase_03 AC 36 ms
53,368 KB
testcase_04 AC 36 ms
52,060 KB
testcase_05 AC 37 ms
52,228 KB
testcase_06 AC 37 ms
52,336 KB
testcase_07 AC 37 ms
53,828 KB
testcase_08 AC 37 ms
51,948 KB
testcase_09 AC 37 ms
52,820 KB
testcase_10 AC 36 ms
53,096 KB
testcase_11 AC 37 ms
52,956 KB
testcase_12 AC 37 ms
51,944 KB
testcase_13 AC 35 ms
52,168 KB
testcase_14 AC 36 ms
52,052 KB
testcase_15 AC 36 ms
53,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# N<10**9と大きい
# つまりA, B, Cの最大数だけの全探索だけでも不可能、それなのに二重ループはさらに不可能
# 式変形が必要な問題だろうか
# Σ(A from 0 to N)Σ(B from 0 to N-A)N!/(A!B!(N-A-B)!)
# = Σ(A from 0 to N)N!/A!Σ(B from 0 to N-A)1/(B!(N-A-B)!)
# Aの全探索できないのにこれでは改善している感じがしない
# 解説見たら超簡単だった、悲しい
# N個の文字それぞれが3つの文字のどれかなのだから答えは3**N
# 低い数で実験すべきだった

N = int(input())
mod = 998244353
ans = pow(3, N, mod)
print(ans)
0