結果
| 問題 |
No.1113 二つの整数 / Two Integers
|
| コンテスト | |
| ユーザー |
ryo_n
|
| 提出日時 | 2020-07-17 22:02:40 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 320 bytes |
| コンパイル時間 | 207 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-11-29 23:57:12 |
| 合計ジャッジ時間 | 1,503 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 11 WA * 4 |
ソースコード
import sys
import math
import collections
sys.setrecursionlimit(10 ** 8)
input = sys.stdin.readline
def main():
A, B = [int(x) for x in input().split()]
x = math.gcd(A, B)
if x == math.sqrt(x) * math.sqrt(x):
print("Odd")
else:
print("Even")
if __name__ == '__main__':
main()
ryo_n