結果
| 問題 |
No.2776 Bigger image
|
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2024-06-07 21:59:08 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 42 ms / 2,000 ms |
| コード長 | 296 bytes |
| コンパイル時間 | 279 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 52,224 KB |
| 最終ジャッジ日時 | 2024-12-26 07:58:18 |
| 合計ジャッジ時間 | 2,229 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 25 |
ソースコード
A, B = map(int, input().split())
H, W = map(int, input().split())
def f(h, w):
z1 = H / h
a1 = H * z1 * w
z2 = W / w
a2 = W * z2 * h
return min(a1, a2)
s = f(A, B)
t = f(B, A)
if s > t:
print('Non-rotating')
elif s < t:
print('Rotating')
else:
print('Same')
norioc