結果
| 問題 |
No.83 最大マッチング
|
| コンテスト | |
| ユーザー |
rocoder
|
| 提出日時 | 2017-05-11 04:18:51 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 111 bytes |
| コンパイル時間 | 116 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-09-15 07:33:48 |
| 合計ジャッジ時間 | 1,834 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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