結果
| 問題 | No.83 最大マッチング |
| コンテスト | |
| ユーザー |
helical28556801
|
| 提出日時 | 2017-04-21 17:23:29 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 71 ms / 5,000 ms |
| コード長 | 135 bytes |
| コンパイル時間 | 79 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-07-20 05:09:53 |
| 合計ジャッジ時間 | 1,158 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
N=int(input()) x="" if N % 2 == 0: for i in range(int(N/2)): x+="1" else: x+="7" for i in range(int(N//2-1)): x+="1" print(x)
helical28556801