結果
| 問題 | No.83 最大マッチング |
| コンテスト | |
| ユーザー |
rocoder
|
| 提出日時 | 2017-05-11 04:18:51 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 111 bytes |
| 記録 | |
| コンパイル時間 | 438 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 20,568 KB |
| 最終ジャッジ日時 | 2026-04-04 18:17:15 |
| 合計ジャッジ時間 | 3,311 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 4 WA * 2 RE * 4 |
ソースコード
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)
rocoder