結果
| 問題 | 
                            No.83 最大マッチング
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2016-02-11 14:29:27 | 
| 言語 | Python2  (2.7.18)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 56 ms / 5,000 ms | 
| コード長 | 205 bytes | 
| コンパイル時間 | 130 ms | 
| コンパイル使用メモリ | 6,912 KB | 
| 実行使用メモリ | 6,400 KB | 
| 最終ジャッジ日時 | 2024-09-22 00:34:06 | 
| 合計ジャッジ時間 | 1,015 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 10 | 
ソースコード
#coding: utf-8 ##yuki_83 n=int(raw_input()) text='' one=n/2 if n%2==0: for i in xrange(one): text='1'+text print text elif n%2==1: for i in xrange(one-1): text='1'+text text='7'+text print text