結果
| 問題 | 
                            No.2776 Bigger image
                             | 
                    
| コンテスト | |
| ユーザー | 
                             detteiuu
                         | 
                    
| 提出日時 | 2024-06-07 21:43:29 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 50 ms / 2,000 ms | 
| コード長 | 296 bytes | 
| コンパイル時間 | 562 ms | 
| コンパイル使用メモリ | 82,176 KB | 
| 実行使用メモリ | 52,352 KB | 
| 最終ジャッジ日時 | 2024-12-26 07:32:26 | 
| 合計ジャッジ時間 | 2,973 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 25 | 
ソースコード
A, B = map(int, input().split())
H, W = map(int, input().split())
def func(h, w):
    MIN = min(H*10**100//h, W*10**100//w)
    ans = (H*MIN)*(W*MIN)
    return ans
if func(A, B) > func(B, A):
    print("Non-rotating")
elif func(B, A) > func(A, B):
    print("Rotating")
else:
    print("Same")
            
            
            
        
            
detteiuu