結果
| 問題 |
No.83 最大マッチング
|
| コンテスト | |
| ユーザー |
tail_1101
|
| 提出日時 | 2018-07-14 02:31:54 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 5,000 ms |
| コード長 | 117 bytes |
| コンパイル時間 | 218 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-10-09 05:55:28 |
| 合計ジャッジ時間 | 1,096 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
num = int(input())
x = num % 2
i = num // 2
if x == 0:
print("1" * i)
else:
print("7" + "1" * (i - 1))
tail_1101