結果
| 問題 |
No.83 最大マッチング
|
| コンテスト | |
| ユーザー |
foumi
|
| 提出日時 | 2019-04-04 23:15:17 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 134 bytes |
| コンパイル時間 | 943 ms |
| コンパイル使用メモリ | 12,288 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-12-26 19:39:47 |
| 合計ジャッジ時間 | 1,986 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 3 WA * 3 RE * 4 |
ソースコード
n = int(input())
num = 1
for i in range(n // 2 - 1):
num = num * 10 + 1
if n % 2 == 1:
print(num + 6)
else:
print(num)
foumi