結果

問題 No.83 最大マッチング
ユーザー kashiwagi513kashiwagi513
提出日時 2019-02-22 23:27:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 350 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-04 13:14:10
合計ジャッジ時間 1,680 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 25 ms
10,496 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

def solve(n):
    result = 0
    digit = 1
    if n % 2 == 0:
        for i in range(0, n // 2):
            result += digit
            digit *= 10
    else:
        for i in range(0, n // 2):
            result += digit if i < (n // 2) - 1 else 7 * digit
            digit *= 10
    print(result)

n = int(input())
solve(n)
0