結果
| 問題 | 
                            No.83 最大マッチング
                             | 
                    
| コンテスト | |
| ユーザー | 
                             compass19
                         | 
                    
| 提出日時 | 2016-11-10 18:21:08 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 61 ms / 5,000 ms | 
| コード長 | 92 bytes | 
| コンパイル時間 | 82 ms | 
| コンパイル使用メモリ | 12,288 KB | 
| 実行使用メモリ | 11,008 KB | 
| 最終ジャッジ日時 | 2024-11-25 07:26:55 | 
| 合計ジャッジ時間 | 1,194 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 10 | 
ソースコード
N=int(input()) if N%2: print(7, end=''); N-=3 for i in range(N//2): print(1, end='') print()
            
compass19