結果
問題 | No.83 最大マッチング |
ユーザー | ramendaisuki |
提出日時 | 2020-03-20 22:05:07 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 331 bytes |
コンパイル時間 | 411 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 15,872 KB |
最終ジャッジ日時 | 2024-05-08 22:09:08 |
合計ジャッジ時間 | 8,000 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,624 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | AC | 31 ms
10,752 KB |
testcase_04 | AC | 32 ms
10,496 KB |
testcase_05 | AC | 30 ms
10,624 KB |
testcase_06 | AC | 30 ms
10,624 KB |
testcase_07 | AC | 30 ms
10,624 KB |
testcase_08 | AC | 31 ms
10,624 KB |
testcase_09 | RE | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
n = int(input()) if n % 2 == 0: x = int(n / 2) ans = 0 for i in range(1, x + 1): ans += 10**(x - i) else: ans = 0 if n == 1: pass else: x = int(n // 2) y = int(n % 2) ans = 7 * 10 ** (x-1) for i in range(1, x): ans += 10 ** ((x-1) -i) print(ans)