結果

問題 No.83 最大マッチング
コンテスト
ユーザー 9V72n
提出日時 2020-04-04 13:41:53
言語 Python3
(3.14.3 + numpy 2.4.2 + scipy 1.17.0)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 278 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 386 ms
コンパイル使用メモリ 20,696 KB
実行使用メモリ 17,112 KB
最終ジャッジ日時 2026-03-24 14:54:03
合計ジャッジ時間 2,541 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

N = int(input())
result = []
if N <= 5:
    if N == 0 and N == 1:
        print(0)
    if N == 2:
        print(1)
    if N == 3:
        print(7)
    if N == 4:
        print(11)
    if N == 5:
        print(71)
else:
    result = [1]*(N//2)
    print("".join(map(str,result)))
0