結果

問題 No.83 最大マッチング
ユーザー pluto77pluto77
提出日時 2016-02-11 13:42:09
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 126 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 7,044 KB
実行使用メモリ 10,844 KB
最終ジャッジ日時 2023-10-21 23:04:06
合計ジャッジ時間 7,243 ms
ジャッジサーバーID
(参考情報)
judge14 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,388 KB
testcase_01 AC 11 ms
6,388 KB
testcase_02 AC 10 ms
6,388 KB
testcase_03 WA -
testcase_04 AC 10 ms
6,388 KB
testcase_05 WA -
testcase_06 AC 11 ms
6,388 KB
testcase_07 WA -
testcase_08 AC 10 ms
6,388 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