結果
問題 | No.220 世界のなんとか2 |
ユーザー | _polarbear08 |
提出日時 | 2018-09-01 17:22:02 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 1,000 ms |
コード長 | 700 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-19 08:11:29 |
合計ジャッジ時間 | 1,386 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
# 入力 import sys stdin = sys.stdin def li(): return [int(x) for x in stdin.readline().split()] def li_(): return [int(x)-1 for x in stdin.readline().split()] def lf(): return [float(x) for x in stdin.readline().split()] def ls(): return stdin.readline().split() def ns(): return stdin.readline().rstrip() def lc(): return list(ns()) def ni(): return int(ns()) def nf(): return float(ns()) p = ni() # 3がつく数の個数を調べる dp = [[0,0] for _ in range(p+1)] dp[0][0] = 1 dp[0][1] = 0 for pi in range(p): dp[pi+1][0] = dp[pi][0] * 9 dp[pi+1][1] = dp[pi][1] * 10 + dp[pi][0] # 3がつかない3の倍数の個数を数える compl = 3**(2*p-1) - 1 print(dp[p][1] + compl)