結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 32 ms
11,520 KB
testcase_05 AC 31 ms
11,392 KB
testcase_06 AC 32 ms
11,520 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 31 ms
11,532 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 32 ms
11,400 KB
testcase_18 AC 33 ms
11,632 KB
testcase_19 AC 31 ms
11,528 KB
testcase_20 AC 33 ms
11,520 KB
testcase_21 AC 32 ms
11,392 KB
testcase_22 AC 32 ms
11,392 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 32 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 32 ms
11,776 KB
testcase_34 AC 33 ms
11,632 KB
testcase_35 AC 32 ms
11,588 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 32 ms
11,552 KB
testcase_40 AC 32 ms
11,520 KB
testcase_41 AC 31 ms
11,392 KB
testcase_42 AC 32 ms
11,392 KB
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 AC 33 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 32 ms
11,532 KB
testcase_58 AC 33 ms
11,732 KB
testcase_59 RE -
testcase_60 RE -
testcase_61 RE -
testcase_62 AC 33 ms
11,400 KB
testcase_63 AC 35 ms
11,404 KB
testcase_64 AC 33 ms
11,528 KB
testcase_65 AC 33 ms
11,528 KB
testcase_66 RE -
testcase_67 AC 33 ms
11,532 KB
testcase_68 RE -
testcase_69 AC 33 ms
11,528 KB
testcase_70 AC 38 ms
11,528 KB
testcase_71 RE -
testcase_72 RE -
testcase_73 AC 33 ms
11,400 KB
testcase_74 AC 33 ms
11,400 KB
testcase_75 AC 33 ms
11,660 KB
testcase_76 AC 34 ms
11,532 KB
testcase_77 AC 34 ms
11,532 KB
testcase_78 AC 32 ms
11,528 KB
testcase_79 AC 33 ms
11,528 KB
testcase_80 AC 33 ms
11,404 KB
testcase_81 AC 33 ms
11,536 KB
testcase_82 AC 33 ms
11,532 KB
testcase_83 AC 33 ms
11,400 KB
testcase_84 AC 33 ms
11,404 KB
testcase_85 AC 33 ms
11,544 KB
testcase_86 AC 33 ms
11,532 KB
testcase_87 AC 34 ms
11,404 KB
testcase_88 AC 33 ms
11,532 KB
testcase_89 AC 34 ms
11,428 KB
testcase_90 AC 32 ms
11,560 KB
testcase_91 AC 33 ms
11,400 KB
testcase_92 AC 33 ms
11,428 KB
testcase_93 AC 34 ms
11,448 KB
testcase_94 AC 34 ms
11,472 KB
testcase_95 AC 33 ms
11,664 KB
testcase_96 AC 34 ms
11,648 KB
testcase_97 AC 34 ms
11,584 KB
testcase_98 AC 33 ms
11,520 KB
testcase_99 AC 32 ms
11,748 KB
testcase_100 AC 32 ms
11,536 KB
testcase_101 AC 31 ms
11,648 KB
testcase_102 AC 31 ms
11,520 KB
testcase_103 AC 32 ms
11,552 KB
testcase_104 AC 31 ms
10,624 KB
testcase_105 RE -
testcase_106 RE -
testcase_107 AC 30 ms
10,624 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):
    if N == 1:
        answer = '1' + (X - 1)
    else:
        # p 以上が全部作れる
        answer = '0' * (p - 1) + '1' * (X - p + 1)
    print(answer)
    exit()

# RE
raise
0