結果
| 問題 | No.8124 A+B |
| コンテスト | |
| ユーザー |
npnp
|
| 提出日時 | 2026-04-01 21:50:43 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 211 bytes |
| 記録 | |
| コンパイル時間 | 376 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 41,528 KB |
| 最終ジャッジ日時 | 2026-04-01 21:50:47 |
| 合計ジャッジ時間 | 3,114 ms |
|
ジャッジサーバーID (参考情報) |
judge4_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | RE * 6 |
ソースコード
# s,e,N = input().split(" ")
# if int(N)<=1:
# print(-1)
# else:
# print(s+'a'*(int(N)-2)+e)
import re
A,B = input().split(" ")
result = re.sub(r'\d', '',A+B)
assert(0==len(result))
#print(int(A)+int(B))
npnp