結果
| 問題 | 
                            No.2776 Bigger image
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2024-06-07 21:32:47 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 52 ms / 2,000 ms | 
| コード長 | 173 bytes | 
| コンパイル時間 | 199 ms | 
| コンパイル使用メモリ | 82,432 KB | 
| 実行使用メモリ | 52,096 KB | 
| 最終ジャッジ日時 | 2024-12-26 07:11:02 | 
| 合計ジャッジ時間 | 2,775 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 25 | 
ソースコード
A,B=map(int,input().split())
H,W=map(int,input().split())
nr=min(H/A*B,W/B*A)
r=min(H/B*A,W/A*B)
if nr>r:print("Non-rotating")
elif nr<r:print("Rotating")
else:print("Same")