結果
| 問題 |
No.83 最大マッチング
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-02-11 13:50:21 |
| 言語 | Python2 (2.7.18) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 186 bytes |
| コンパイル時間 | 276 ms |
| コンパイル使用メモリ | 7,040 KB |
| 実行使用メモリ | 14,492 KB |
| 最終ジャッジ日時 | 2024-09-22 00:33:33 |
| 合計ジャッジ時間 | 6,923 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 RE * 1 |
| other | AC * 7 TLE * 1 -- * 2 |
ソースコード
#coding: utf-8 ##yuki_83 n=int(raw_input()) one=n/2 res=0 if n%2==0: for i in xrange(one): res+=10**i elif n%2==1: for i in range(one-1): res+=10**i res+=7*10**(i+1) print res