結果

問題 No.83 最大マッチング
ユーザー rocoderrocoder
提出日時 2017-05-11 04:18:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 111 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 10,548 KB
実行使用メモリ 8,340 KB
最終ジャッジ日時 2023-10-13 10:28:42
合計ジャッジ時間 2,031 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,784 KB
testcase_01 WA -
testcase_02 AC 15 ms
7,772 KB
testcase_03 AC 16 ms
7,832 KB
testcase_04 AC 15 ms
7,772 KB
testcase_05 WA -
testcase_06 AC 15 ms
7,928 KB
testcase_07 WA -
testcase_08 AC 15 ms
7,736 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input ())
Q=N//2
R=N%2
M=0
T=1
for i in range(Q):
    M+=T
    T*=10
if R==1:
    M*=7
    M-=6
print (M)
0