結果
| 問題 | No.83 最大マッチング |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-06-05 01:42:05 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 121 bytes |
| 記録 | |
| コンパイル時間 | 798 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 20,700 KB |
| 最終ジャッジ日時 | 2026-05-24 14:00:47 |
| 合計ジャッジ時間 | 9,638 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 RE * 4 |
ソースコード
N = int(input())
n = ''
if(N%2 != 0):
n += '7'
N -= 3
for i in range(int(N/2)):
n += '1'
print(int(n))