結果
| 問題 | No.83 最大マッチング | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2021-11-01 20:55:10 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 150 bytes | 
| コンパイル時間 | 141 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 11,392 KB | 
| 最終ジャッジ日時 | 2024-10-10 12:23:51 | 
| 合計ジャッジ時間 | 1,185 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 WA * 1 | 
| other | AC * 3 WA * 3 RE * 4 | 
ソースコード
N = int(input())
str_lst = []
one = N // 2
for i in range(one):
  str_lst.append('1')
string = ''.join(str_lst)
result = int(string)
print(result)
            
            
            
        