結果

問題 No.83 最大マッチング
ユーザー quaspinSWquaspinSW
提出日時 2017-04-13 20:41:32
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 239 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-07-18 12:58:17
合計ジャッジ時間 6,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#!/usr/bin/env python

num = int(raw_input())
sigma = 0
shou = num / 2
if num % 2 == 0:
    for i in range(shou):
        sigma += 10**i
else:
    sigma += 7 * (10**(shou-1))
    for i in range(shou-1):
        sigma += 10**i
print(sigma)
0