結果
| 問題 | No.83 最大マッチング |
| コンテスト | |
| ユーザー |
s_shohei
|
| 提出日時 | 2020-04-16 23:58:00 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 24 ms / 5,000 ms |
| + 701µs | |
| コード長 | 85 bytes |
| 記録 | |
| コンパイル時間 | 73 ms |
| コンパイル使用メモリ | 80,512 KB |
| 実行使用メモリ | 54,272 KB |
| 最終ジャッジ日時 | 2026-09-09 10:00:59 |
| 合計ジャッジ時間 | 1,759 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
n=int(input())
if n>=3 and n%2!=0:
print(7,end="")
n-=3
print("1"*int(n//2))
s_shohei