結果
| 問題 | No.3006 ベイカーの問題 |
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 19:46:01 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 140 bytes |
| コンパイル時間 | 161 ms |
| コンパイル使用メモリ | 82,184 KB |
| 実行使用メモリ | 66,992 KB |
| 最終ジャッジ日時 | 2025-06-12 19:46:04 |
| 合計ジャッジ時間 | 2,546 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | WA * 13 RE * 11 |
ソースコード
x = input().strip() d1 = int(x[0]) d2 = int(x[1]) d3 = int(x[2]) a = 1058 b = -3414 c = 2599 result = a * d1 + b * d2 + c * d3 print(result)
gew1fw