結果

問題 No.3055 2019(注:異常な難易度です)
ユーザー とらすたとらすた
提出日時 2019-04-01 23:47:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 451 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-05-05 09:50:45
合計ジャッジ時間 90,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 956 ms
41,088 KB
testcase_01 AC 954 ms
41,216 KB
testcase_02 AC 970 ms
41,344 KB
testcase_03 AC 960 ms
41,088 KB
testcase_04 AC 999 ms
41,216 KB
testcase_05 AC 940 ms
41,216 KB
testcase_06 AC 1,016 ms
41,216 KB
testcase_07 AC 973 ms
41,216 KB
testcase_08 AC 930 ms
41,344 KB
testcase_09 AC 975 ms
41,216 KB
testcase_10 AC 953 ms
41,344 KB
testcase_11 AC 961 ms
41,088 KB
testcase_12 AC 926 ms
41,088 KB
testcase_13 AC 954 ms
41,216 KB
testcase_14 AC 967 ms
41,088 KB
testcase_15 AC 966 ms
41,216 KB
testcase_16 AC 983 ms
41,216 KB
testcase_17 AC 948 ms
41,088 KB
testcase_18 AC 1,078 ms
41,216 KB
testcase_19 AC 976 ms
41,216 KB
testcase_20 AC 959 ms
41,216 KB
testcase_21 AC 1,011 ms
41,216 KB
testcase_22 AC 971 ms
41,344 KB
testcase_23 AC 962 ms
41,088 KB
testcase_24 AC 985 ms
41,088 KB
testcase_25 AC 936 ms
41,216 KB
testcase_26 AC 997 ms
41,344 KB
testcase_27 AC 942 ms
41,088 KB
testcase_28 AC 982 ms
41,088 KB
testcase_29 AC 1,024 ms
41,088 KB
testcase_30 AC 964 ms
41,216 KB
testcase_31 AC 922 ms
41,216 KB
testcase_32 AC 981 ms
41,216 KB
testcase_33 AC 952 ms
41,088 KB
testcase_34 AC 964 ms
41,216 KB
testcase_35 AC 960 ms
41,088 KB
testcase_36 AC 941 ms
41,088 KB
testcase_37 AC 946 ms
41,088 KB
testcase_38 AC 944 ms
41,216 KB
testcase_39 AC 956 ms
41,216 KB
testcase_40 AC 966 ms
41,088 KB
testcase_41 AC 963 ms
41,216 KB
testcase_42 AC 953 ms
41,216 KB
testcase_43 AC 1,012 ms
41,216 KB
testcase_44 AC 960 ms
41,088 KB
testcase_45 AC 950 ms
41,088 KB
testcase_46 AC 997 ms
41,216 KB
testcase_47 AC 944 ms
41,088 KB
testcase_48 AC 943 ms
41,216 KB
testcase_49 AC 959 ms
41,216 KB
testcase_50 AC 962 ms
41,088 KB
testcase_51 AC 924 ms
41,088 KB
testcase_52 AC 949 ms
41,216 KB
testcase_53 AC 937 ms
41,216 KB
testcase_54 AC 997 ms
41,088 KB
testcase_55 AC 934 ms
41,216 KB
testcase_56 AC 955 ms
41,216 KB
testcase_57 AC 931 ms
41,216 KB
testcase_58 AC 976 ms
41,216 KB
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(150):
  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))
      if j == 0:
        break

aa.sort()

print(aa[n-1])
0