結果

問題 No.1218 Something Like a Theorem
ユーザー yutayuta
提出日時 2020-09-06 16:49:11
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 274 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-05-06 21:13:57
合計ジャッジ時間 2,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 86 ms
12,288 KB
testcase_02 AC 87 ms
12,032 KB
testcase_03 AC 92 ms
12,288 KB
testcase_04 AC 88 ms
12,288 KB
testcase_05 AC 85 ms
12,288 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 87 ms
12,288 KB
testcase_14 AC 86 ms
12,288 KB
testcase_15 AC 87 ms
12,160 KB
testcase_16 AC 85 ms
12,032 KB
testcase_17 AC 84 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a = gets.split(' ').map(&:to_i)
if a[0] >= 3
	puts 'No'
	exit
end
if a[0] == 1
	if a[1] == 1
		puts 'No'
	else
		puts 'Yes'
	end
	exit
end
for z in a[1]
	next if z == 0
	for j in a[1]
		next if j == 0
		if z * z + j * j == a[1]
			puts 'Yes'
			exit
		end
	end
end
puts 'No'
0