結果

問題 No.941 商とあまり
ユーザー maspymaspy
提出日時 2019-12-04 12:47:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 460 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,660 KB
最終ジャッジ日時 2024-05-07 13:07:53
合計ジャッジ時間 6,861 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 WA -
testcase_04 AC 27 ms
11,520 KB
testcase_05 AC 27 ms
11,392 KB
testcase_06 AC 28 ms
11,392 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 27 ms
11,396 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 29 ms
11,396 KB
testcase_18 AC 29 ms
11,636 KB
testcase_19 AC 28 ms
11,396 KB
testcase_20 AC 29 ms
11,392 KB
testcase_21 AC 29 ms
11,520 KB
testcase_22 AC 27 ms
11,520 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 RE -
testcase_25 AC 26 ms
10,752 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 27 ms
11,520 KB
testcase_34 AC 28 ms
11,632 KB
testcase_35 AC 29 ms
11,464 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 27 ms
11,548 KB
testcase_40 AC 27 ms
11,392 KB
testcase_41 AC 28 ms
11,520 KB
testcase_42 AC 27 ms
11,520 KB
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 AC 26 ms
11,520 KB
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 AC 27 ms
11,528 KB
testcase_58 AC 27 ms
11,600 KB
testcase_59 RE -
testcase_60 RE -
testcase_61 RE -
testcase_62 AC 29 ms
11,520 KB
testcase_63 AC 30 ms
11,528 KB
testcase_64 AC 28 ms
11,524 KB
testcase_65 AC 29 ms
11,524 KB
testcase_66 RE -
testcase_67 AC 28 ms
11,528 KB
testcase_68 RE -
testcase_69 AC 27 ms
11,528 KB
testcase_70 AC 28 ms
11,652 KB
testcase_71 RE -
testcase_72 RE -
testcase_73 AC 29 ms
11,524 KB
testcase_74 AC 29 ms
11,528 KB
testcase_75 AC 27 ms
11,528 KB
testcase_76 AC 29 ms
11,660 KB
testcase_77 AC 27 ms
11,652 KB
testcase_78 AC 27 ms
11,656 KB
testcase_79 AC 28 ms
11,404 KB
testcase_80 AC 27 ms
11,396 KB
testcase_81 AC 28 ms
11,400 KB
testcase_82 AC 27 ms
11,532 KB
testcase_83 AC 27 ms
11,528 KB
testcase_84 AC 28 ms
11,524 KB
testcase_85 AC 29 ms
11,544 KB
testcase_86 AC 29 ms
11,532 KB
testcase_87 AC 29 ms
11,648 KB
testcase_88 AC 29 ms
11,524 KB
testcase_89 AC 28 ms
11,564 KB
testcase_90 AC 27 ms
11,556 KB
testcase_91 AC 27 ms
11,652 KB
testcase_92 AC 28 ms
11,548 KB
testcase_93 AC 29 ms
11,576 KB
testcase_94 AC 28 ms
11,592 KB
testcase_95 AC 27 ms
11,656 KB
testcase_96 AC 28 ms
11,516 KB
testcase_97 AC 28 ms
11,572 KB
testcase_98 AC 27 ms
11,520 KB
testcase_99 AC 27 ms
11,620 KB
testcase_100 AC 27 ms
11,396 KB
testcase_101 AC 27 ms
11,392 KB
testcase_102 AC 27 ms
11,520 KB
testcase_103 AC 28 ms
11,524 KB
testcase_104 AC 26 ms
10,624 KB
testcase_105 RE -
testcase_106 RE -
testcase_107 AC 25 ms
10,496 KB
testcase_108 RE -
testcase_109 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N,X,*A = map(int,read().split())

Aplus = [x + 1 for x in A]

p = 1
for x in Aplus:
    p *= x
    if p > X + 100:
        break
p -= 1

if p > X:
    answer = '0' * X
    print(answer)
    exit()

if any(x == 1 for x in A):
    # p 以上が全部作れる
    answer = '0' * (p-1) + '1' * (X - p + 1)
    print(answer)
    exit()

# RE
raise
0