結果

問題 No.1113 二つの整数 / Two Integers
ユーザー first_vilfirst_vil
提出日時 2020-07-18 17:10:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 1,000 ms
コード長 181 bytes
コンパイル時間 1,465 ms
コンパイル使用メモリ 87,028 KB
実行使用メモリ 71,648 KB
最終ジャッジ日時 2023-08-20 17:45:37
合計ジャッジ時間 3,008 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
71,156 KB
testcase_01 AC 63 ms
71,280 KB
testcase_02 AC 60 ms
71,156 KB
testcase_03 AC 60 ms
71,348 KB
testcase_04 AC 59 ms
71,380 KB
testcase_05 AC 59 ms
71,408 KB
testcase_06 AC 60 ms
71,176 KB
testcase_07 AC 60 ms
71,280 KB
testcase_08 AC 59 ms
71,408 KB
testcase_09 AC 59 ms
71,420 KB
testcase_10 AC 61 ms
71,492 KB
testcase_11 AC 61 ms
71,248 KB
testcase_12 AC 60 ms
71,488 KB
testcase_13 AC 59 ms
71,648 KB
testcase_14 AC 60 ms
71,124 KB
testcase_15 AC 60 ms
71,548 KB
testcase_16 AC 59 ms
71,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a,b=map(int,input().split())
g=math.gcd(a,b)
for i in range(int(math.sqrt(g)-10),int(math.sqrt(g))+10):
    if i*i==g:
        print("Odd")
        exit(0)
print("Even")
0