結果
| 問題 | No.83 最大マッチング |
| コンテスト | |
| ユーザー |
tail_1101
|
| 提出日時 | 2018-07-14 02:31:54 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 97 ms / 5,000 ms |
| コード長 | 117 bytes |
| 記録 | |
| コンパイル時間 | 383 ms |
| コンパイル使用メモリ | 20,704 KB |
| 実行使用メモリ | 15,232 KB |
| 最終ジャッジ日時 | 2026-04-25 08:57:03 |
| 合計ジャッジ時間 | 2,774 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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