結果
| 問題 | No.1113 二つの整数 / Two Integers |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-07-17 23:09:03 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 163 bytes |
| 記録 | |
| コンパイル時間 | 150 ms |
| コンパイル使用メモリ | 85,168 KB |
| 実行使用メモリ | 109,056 KB |
| 最終ジャッジ日時 | 2026-05-23 19:43:46 |
| 合計ジャッジ時間 | 3,179 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | TLE * 1 -- * 14 |
ソースコード
A,B = map(int, input().split())
ans = 1
for i in range(2, min(A,B)+1):
if A % i == 0 and B % i == 0:
ans += 1
print('Even' if ans % 2 == 0 else 'Odd')