結果
| 問題 |
No.193 筒の数式
|
| コンテスト | |
| ユーザー |
beet
|
| 提出日時 | 2018-08-09 13:49:31 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 85 bytes |
| コンパイル時間 | 97 ms |
| コンパイル使用メモリ | 12,288 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2024-09-23 04:20:52 |
| 合計ジャッジ時間 | 1,369 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 14 RE * 2 |
ソースコード
s = input()
ans = -10 ** 10
if s[0].isdigit() and s[-1].isdigit():
ans = eval(s)
beet