結果

問題 No.1811 EQUIV Ten
ユーザー MasKoaTS
提出日時 2021-10-24 18:46:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 224 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 133,632 KB
最終ジャッジ日時 2024-11-20 06:38:28
合計ジャッジ時間 77,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 TLE * 1
other AC * 9 TLE * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7

n = int(input())
if(n <= 3):
	print(0)
	exit(0)
	
ans = 0
for i in range(2**n):
    t = i
    while(t >= 10):
        if(t % 16 == 10):
            ans += 1
            break
        t //= 2

print(ans % mod)
0