結果
| 問題 | No.83 最大マッチング |
| コンテスト | |
| ユーザー |
JunOnuma
|
| 提出日時 | 2017-05-17 12:35:06 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 52 ms / 5,000 ms |
| + 137µs | |
| コード長 | 98 bytes |
| 記録 | |
| コンパイル時間 | 68 ms |
| コンパイル使用メモリ | 81,536 KB |
| 実行使用メモリ | 81,832 KB |
| 最終ジャッジ日時 | 2026-07-18 13:31:02 |
| 合計ジャッジ時間 | 1,875 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
n = int(raw_input())
l = ['1' for _ in range(n/2)]
if n % 2 == 1:
l[0] = '7'
print "".join(l)
JunOnuma