結果

問題 No.354 メルセンヌ素数
ユーザー 💕💖💞💕💖💞
提出日時 2016-09-10 12:42:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 232 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 174,848 KB
最終ジャッジ日時 2024-04-28 06:41:01
合計ジャッジ時間 3,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
16,128 KB
testcase_01 AC 24 ms
10,880 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 33 ms
11,520 KB
testcase_08 AC 97 ms
16,768 KB
testcase_09 AC 306 ms
34,048 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def may_mel2(p):
  bi = [0 for b in range(p)]
  bi.append(1)
  bi.reverse()
  for i in range(len(bi)):
    if bi[i] == 0:
      bi[i] = 1
      continue
    if bi[i] == 1:
      bi[i] = 0 
  print(bi.count(1))
may_mel2(int(input()))
0