結果

問題 No.83 最大マッチング
ユーザー foumi
提出日時 2019-04-04 22:57:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 126 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-26 18:24:14
合計ジャッジ時間 2,279 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 3 WA * 3 RE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
num = 1
if n == 3:
    print('7')
else:
    for i in range(n // 2 - 1):
        num = num * 10 + 1
print(num)
0