結果
| 問題 | No.2776 Bigger image |
| コンテスト | |
| ユーザー |
rlangevin
|
| 提出日時 | 2024-06-07 21:32:20 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 168 ms / 2,000 ms |
| コード長 | 239 bytes |
| 記録 | |
| コンパイル時間 | 693 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,708 KB |
| 最終ジャッジ日時 | 2026-06-01 04:06:01 |
| 合計ジャッジ時間 | 5,680 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 25 |
ソースコード
from decimal import *
A, B = map(Decimal, input().split())
H, W = map(Decimal, input().split())
now = min(H/A, W/B)
nex = min(H/B, W/A)
if now > nex:
print("Non-rotating")
elif now == nex:
print("Same")
else:
print("Rotating")
rlangevin