結果

問題 No.83 最大マッチング
ユーザー pluto77
提出日時 2016-02-11 13:42:09
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 126 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 13,216 KB
最終ジャッジ日時 2024-09-22 00:33:19
合計ジャッジ時間 7,067 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 3 WA * 4 TLE * 1 -- * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
##yuki_83

n=int(raw_input())

one=n/2
res=0
for i in xrange(one):
 res+=10**(i)

if n%2==1:
 res+=6
print res
0