結果
問題 | No.1113 二つの整数 / Two Integers |
ユーザー | mkawa2 |
提出日時 | 2020-07-17 21:23:16 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 984 bytes |
コンパイル時間 | 277 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 18,592 KB |
最終ジャッジ日時 | 2024-05-07 06:27:49 |
合計ジャッジ時間 | 2,860 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
18,592 KB |
testcase_01 | AC | 34 ms
11,648 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
from operator import itemgetter from itertools import * from bisect import * from collections import * from heapq import * from fractions import Fraction import sys sys.setrecursionlimit(10 ** 6) def II(): return int(sys.stdin.readline()) def MI(): return map(int, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def SI(): return sys.stdin.readline()[:-1] def LLI(rows_number): return [LI() for _ in range(rows_number)] def LLI1(rows_number): return [LI1() for _ in range(rows_number)] int1 = lambda x: int(x) - 1 def MI1(): return map(int1, sys.stdin.readline().split()) def LI1(): return list(map(int1, sys.stdin.readline().split())) p2D = lambda x: print(*x, sep="\n") dij = [(1, 0), (0, 1), (-1, 0), (0, -1)] def gcd(a,b): while b:a,b=b,a%b return a def issquare(a): for d in range(1,a+1): if d**2==a:return True if d**2>a:return False a,b=MI() g=gcd(a,b) if issquare(g):print("Odd") else:print("Even")