結果
| 問題 | No.83 最大マッチング |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-04-05 16:52:37 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 238 bytes |
| 記録 | |
| コンパイル時間 | 562 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 30,720 KB |
| 最終ジャッジ日時 | 2026-03-05 01:51:28 |
| 合計ジャッジ時間 | 21,313 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 RE * 1 TLE * 3 |
ソースコード
import math
nyuuryoku = input()
match = int(nyuuryoku)
digit = math.floor(match/2)
result = int(0)
i = int(0)
while match > 1:
result += 10**i
i += 1
match -= 2
if match == 1:
result += 6*10**(i-1)
print(result)