結果
| 問題 |
No.83 最大マッチング
|
| コンテスト | |
| ユーザー |
splash9494
|
| 提出日時 | 2024-05-08 18:14:20 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 41 ms / 5,000 ms |
| コード長 | 111 bytes |
| コンパイル時間 | 362 ms |
| コンパイル使用メモリ | 82,112 KB |
| 実行使用メモリ | 52,096 KB |
| 最終ジャッジ日時 | 2024-12-15 00:26:52 |
| 合計ジャッジ時間 | 1,975 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
N = int(input())
if N % 2:
answer = '7' + '1' * ((N-3) // 2)
else:
answer = '1' * (N//2)
print(answer)
splash9494