結果
| 問題 | No.83 最大マッチング |
| コンテスト | |
| ユーザー |
9V72n
|
| 提出日時 | 2020-04-04 13:41:53 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 278 bytes |
| コンパイル時間 | 101 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 13,824 KB |
| 最終ジャッジ日時 | 2024-07-03 07:17:50 |
| 合計ジャッジ時間 | 1,158 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 WA * 5 |
ソースコード
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)))
9V72n