結果

問題 No.2194 兄弟の掛け引き
ユーザー グミグミ
提出日時 2023-01-20 21:44:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 270 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 62,644 KB
最終ジャッジ日時 2024-06-23 09:40:27
合計ジャッジ時間 1,402 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,092 KB
testcase_01 AC 38 ms
53,360 KB
testcase_02 AC 41 ms
52,196 KB
testcase_03 AC 34 ms
53,540 KB
testcase_04 AC 35 ms
52,308 KB
testcase_05 AC 36 ms
52,580 KB
testcase_06 AC 36 ms
52,240 KB
testcase_07 AC 38 ms
52,424 KB
testcase_08 AC 37 ms
53,372 KB
testcase_09 AC 43 ms
52,912 KB
testcase_10 AC 35 ms
52,560 KB
testcase_11 AC 36 ms
52,948 KB
testcase_12 AC 36 ms
53,180 KB
testcase_13 AC 36 ms
52,956 KB
testcase_14 AC 42 ms
62,644 KB
testcase_15 AC 37 ms
52,084 KB
testcase_16 AC 36 ms
53,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
	a,b,c=map(int,input().split())
	ans = []
	for n in range(1,(c+b)//a+1):
		an = a*n
		anb = an-b
		c0 = anb if anb > 0 else an
		if c0 == c:
			ans.append(n)
	if len(ans) > 0:
		for n in ans:
			print(n)
	else:
		print(-1)

if __name__ == "__main__":
	main()
0