結果

問題 No.83 最大マッチング
ユーザー pluto77pluto77
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
6,272 KB
testcase_01 AC 14 ms
6,272 KB
testcase_02 AC 16 ms
6,144 KB
testcase_03 WA -
testcase_04 AC 11 ms
6,144 KB
testcase_05 WA -
testcase_06 AC 11 ms
6,016 KB
testcase_07 WA -
testcase_08 AC 11 ms
6,144 KB
testcase_09 WA -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

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