結果

問題 No.1113 二つの整数 / Two Integers
ユーザー syunsukesyunsuke
提出日時 2020-09-13 18:03:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 129 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 53,644 KB
最終ジャッジ日時 2024-06-13 04:20:09
合計ジャッジ時間 1,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,076 KB
testcase_01 AC 38 ms
52,356 KB
testcase_02 AC 35 ms
53,236 KB
testcase_03 AC 34 ms
52,952 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,496 KB
testcase_06 AC 34 ms
52,968 KB
testcase_07 AC 34 ms
52,492 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 34 ms
52,548 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 36 ms
52,692 KB
testcase_15 AC 36 ms
53,644 KB
testcase_16 AC 37 ms
52,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B=map(int,input().split())

if B>A:
    A,B=B,A

while A%B!=0:
    A,B=B,A%B

if B==1:
    print("Odd")
else:
    print("Even")
0