結果

問題 No.3055 2019(注:異常な難易度です)
ユーザー とらすたとらすた
提出日時 2019-04-01 23:38:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 439 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,060 KB
最終ジャッジ日時 2024-11-27 04:58:19
合計ジャッジ時間 42,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 448 ms
31,916 KB
testcase_01 AC 425 ms
31,800 KB
testcase_02 AC 422 ms
31,852 KB
testcase_03 AC 425 ms
31,732 KB
testcase_04 AC 420 ms
31,840 KB
testcase_05 AC 420 ms
31,796 KB
testcase_06 AC 427 ms
31,724 KB
testcase_07 AC 441 ms
31,892 KB
testcase_08 AC 420 ms
31,800 KB
testcase_09 AC 430 ms
31,668 KB
testcase_10 AC 436 ms
31,852 KB
testcase_11 AC 422 ms
31,560 KB
testcase_12 AC 426 ms
31,732 KB
testcase_13 AC 428 ms
31,888 KB
testcase_14 AC 429 ms
31,896 KB
testcase_15 AC 444 ms
31,728 KB
testcase_16 AC 421 ms
31,700 KB
testcase_17 AC 434 ms
31,680 KB
testcase_18 AC 433 ms
31,844 KB
testcase_19 AC 438 ms
31,676 KB
testcase_20 AC 431 ms
31,564 KB
testcase_21 AC 426 ms
31,796 KB
testcase_22 AC 435 ms
31,800 KB
testcase_23 AC 418 ms
31,624 KB
testcase_24 AC 418 ms
31,796 KB
testcase_25 AC 420 ms
31,680 KB
testcase_26 AC 427 ms
31,892 KB
testcase_27 AC 426 ms
31,680 KB
testcase_28 AC 423 ms
31,796 KB
testcase_29 AC 433 ms
31,912 KB
testcase_30 AC 438 ms
31,888 KB
testcase_31 AC 427 ms
31,800 KB
testcase_32 AC 431 ms
31,864 KB
testcase_33 AC 425 ms
31,824 KB
testcase_34 AC 437 ms
31,848 KB
testcase_35 AC 427 ms
31,892 KB
testcase_36 AC 435 ms
31,772 KB
testcase_37 AC 430 ms
31,732 KB
testcase_38 AC 427 ms
31,900 KB
testcase_39 AC 427 ms
31,892 KB
testcase_40 AC 450 ms
31,680 KB
testcase_41 AC 438 ms
31,808 KB
testcase_42 AC 429 ms
31,888 KB
testcase_43 AC 426 ms
31,872 KB
testcase_44 AC 462 ms
31,680 KB
testcase_45 AC 445 ms
31,804 KB
testcase_46 AC 429 ms
31,692 KB
testcase_47 AC 431 ms
31,912 KB
testcase_48 AC 422 ms
31,800 KB
testcase_49 AC 435 ms
31,908 KB
testcase_50 AC 430 ms
31,908 KB
testcase_51 AC 459 ms
31,668 KB
testcase_52 AC 431 ms
31,928 KB
testcase_53 AC 421 ms
31,840 KB
testcase_54 AC 420 ms
31,796 KB
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 RE -
testcase_61 RE -
testcase_62 RE -
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 RE -
testcase_67 RE -
testcase_68 RE -
testcase_69 RE -
testcase_70 RE -
testcase_71 RE -
testcase_72 RE -
testcase_73 RE -
testcase_74 RE -
testcase_75 RE -
testcase_76 RE -
testcase_77 RE -
testcase_78 RE -
testcase_79 RE -
testcase_80 RE -
testcase_81 RE -
testcase_82 RE -
testcase_83 RE -
testcase_84 RE -
testcase_85 RE -
testcase_86 RE -
testcase_87 RE -
testcase_88 RE -
testcase_89 RE -
testcase_90 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
stdin = sys.stdin
 
ni = lambda: int(ns())
na = lambda: list(map(int, stdin.readline().split()))
nn = lambda: list(stdin.readline().split())
ns = lambda: stdin.readline().rstrip()

n = ni()

aa = [1]
for i in range(100):
  for j in range(i+1):
    for k in range(i-j+1):
      a = '1'
      a += '1'*k
      a += '0'*j
      a += '1'*(i-j-k)
      a += '1'
      aa.append(int(a,2))

aa = list(set(aa))
aa.sort()

print(aa[n-1])
0