結果

問題 No.3032 Unavailability of Inequality Signs
ユーザー IL_mstaIL_msta
提出日時 2018-04-02 14:58:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-26 06:36:11
合計ジャッジ時間 1,164 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 35 ms
10,880 KB
testcase_02 AC 38 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 34 ms
10,880 KB
testcase_05 AC 52 ms
10,880 KB
testcase_06 AC 50 ms
10,752 KB
testcase_07 AC 44 ms
10,752 KB
testcase_08 AC 47 ms
10,752 KB
testcase_09 AC 46 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

first = input()
N = int(first)
flag = False
while N!=0:
	str = input().split()
	A = int(str[0])
	B = int(str[1])
	bit = int(67108864)
	flag = False
	while(bit!=0):
		AA = int(A/bit)
		BB = int(B/bit)
		if( AA and BB==0 ):
			print(chr(62))
			
			flag = True
			break
		elif( AA==0 and BB ):
			print(chr(60))
			flag = True
			break
		A = A%bit
		B = B%bit
		bit = bit/2
	if(flag==False):
		print(chr(61))
	N=N-1
0