結果
問題 | No.3032 Unavailability of Inequality Signs |
ユーザー | はむ吉🐹 |
提出日時 | 2018-02-03 22:21:43 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 635 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 66,812 KB |
最終ジャッジ日時 | 2024-06-30 03:54:37 |
合計ジャッジ時間 | 2,301 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
#!/usr/bin/env pypy3 def compare(a, b): if a == b: return 0 else: return (a - b) // abs(a - b) # 入力チェック用 assert つき def main(): n = int(input()) assert compare(1, n) != 1 and compare(n, 10) != 1 for _ in range(n): a, b = (int(x) for x in input().split()) assert compare(1, a) != 1 and compare(a, 10 ** 8) != 1 assert compare(1, b) != 1 and compare(b, 10 ** 8) != 1 c = compare(a, b) if c == 1: print("G") elif c == 0: print("E") else: print("L") if __name__ == '__main__': main()