結果
| 問題 |
No.2776 Bigger image
|
| コンテスト | |
| ユーザー |
hitonanode
|
| 提出日時 | 2024-06-07 21:29:43 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 239 bytes |
| コンパイル時間 | 148 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-12-26 07:03:23 |
| 合計ジャッジ時間 | 2,277 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 19 WA * 6 |
ソースコード
A, B = map(int, input().split())
H, W = map(int, input().split())
SAME = "Same"
if A == B or H == W:
print(SAME)
# elif A * W == H * B:
# print(SAME)
elif (A > H) == (B > W):
print("Non-rotating")
else:
print("Rotating")
hitonanode