結果
問題 |
No.83 最大マッチング
|
ユーザー |
|
提出日時 | 2015-02-21 23:38:54 |
言語 | PyPy2 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 136 bytes |
コンパイル時間 | 214 ms |
コンパイル使用メモリ | 76,960 KB |
実行使用メモリ | 75,708 KB |
最終ジャッジ日時 | 2024-06-23 21:48:28 |
合計ジャッジ時間 | 1,812 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 4 WA * 6 |
ソースコード
N = int(raw_input()) use = ((N - 2) / 2) ans = "1" * use remain = N - use if remain == 3: ans += "7" else: ans += "1" print ans