結果

問題 No.1811 EQUIV Ten
ユーザー MasKoaTSMasKoaTS
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,960 KB
testcase_01 AC 40 ms
127,104 KB
testcase_02 TLE -
testcase_03 AC 39 ms
110,592 KB
testcase_04 AC 39 ms
57,088 KB
testcase_05 AC 39 ms
126,720 KB
testcase_06 AC 39 ms
57,472 KB
testcase_07 AC 40 ms
126,976 KB
testcase_08 AC 43 ms
63,232 KB
testcase_09 AC 146 ms
133,632 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 40 ms
57,088 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 458 ms
64,128 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

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