結果
| 問題 |
No.83 最大マッチング
|
| コンテスト | |
| ユーザー |
r_yo6021
|
| 提出日時 | 2015-10-05 22:39:54 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 33 ms / 5,000 ms |
| コード長 | 136 bytes |
| コンパイル時間 | 183 ms |
| コンパイル使用メモリ | 12,288 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-07-20 01:12:54 |
| 合計ジャッジ時間 | 1,266 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
N = int(input())
Q = N // 2
R = N % 2
MaxNum = 0
if R == 0:
MaxNum = '1' * Q
else:
MaxNum = '7' + '1' * (Q - 1)
print(MaxNum)
r_yo6021