結果

問題 No.83 最大マッチング
ユーザー IJKTanabeIJKTanabe
提出日時 2019-03-16 00:13:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 192 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 10,512 KB
実行使用メモリ 7,872 KB
最終ジャッジ日時 2023-09-14 14:52:10
合計ジャッジ時間 7,511 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,732 KB
testcase_01 AC 15 ms
7,712 KB
testcase_02 AC 15 ms
7,728 KB
testcase_03 AC 15 ms
7,732 KB
testcase_04 AC 16 ms
7,872 KB
testcase_05 AC 16 ms
7,788 KB
testcase_06 AC 16 ms
7,780 KB
testcase_07 AC 15 ms
7,720 KB
testcase_08 AC 16 ms
7,812 KB
testcase_09 RE -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
if a<2:
    result = 0
else:
    result = 1
    for i in range(1,int(a / 2)):
        result += 10**i
    if a%2 == 1:
        result += (10**(int(a/2)-1)) * 6
print (result)
0