結果

問題 No.1113 二つの整数 / Two Integers
ユーザー qibqib
提出日時 2023-04-26 21:56:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 155 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 53,704 KB
最終ジャッジ日時 2024-04-27 22:43:17
合計ジャッジ時間 1,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,944 KB
testcase_01 AC 33 ms
52,640 KB
testcase_02 AC 32 ms
52,792 KB
testcase_03 AC 31 ms
53,684 KB
testcase_04 AC 32 ms
52,660 KB
testcase_05 AC 33 ms
52,136 KB
testcase_06 AC 31 ms
52,208 KB
testcase_07 AC 31 ms
53,704 KB
testcase_08 AC 36 ms
52,008 KB
testcase_09 AC 32 ms
52,232 KB
testcase_10 AC 31 ms
52,196 KB
testcase_11 AC 32 ms
52,552 KB
testcase_12 AC 32 ms
52,484 KB
testcase_13 AC 32 ms
53,432 KB
testcase_14 AC 32 ms
52,864 KB
testcase_15 AC 30 ms
53,388 KB
testcase_16 AC 31 ms
52,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

a, b = map(int, input().split())
g = math.gcd(a, b)

x = int(math.sqrt(g))
if g % x == 0 and x == g // x:
  print("Odd")
else:
  print("Even")
0