結果

問題 No.2194 兄弟の掛け引き
ユーザー SchneeSchnee
提出日時 2023-03-11 20:43:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 103 bytes
コンパイル時間 777 ms
コンパイル使用メモリ 11,696 KB
実行使用メモリ 10,096 KB
最終ジャッジ日時 2023-10-18 10:18:21
合計ジャッジ時間 2,474 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,096 KB
testcase_01 AC 29 ms
10,096 KB
testcase_02 AC 29 ms
10,096 KB
testcase_03 AC 28 ms
10,096 KB
testcase_04 AC 30 ms
10,096 KB
testcase_05 AC 30 ms
10,096 KB
testcase_06 AC 29 ms
10,096 KB
testcase_07 AC 30 ms
10,096 KB
testcase_08 WA -
testcase_09 AC 30 ms
10,096 KB
testcase_10 AC 29 ms
10,096 KB
testcase_11 AC 28 ms
10,096 KB
testcase_12 WA -
testcase_13 AC 29 ms
10,096 KB
testcase_14 AC 28 ms
10,096 KB
testcase_15 AC 29 ms
10,096 KB
testcase_16 AC 29 ms
10,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c=map(int,input().split())
if d:=[i//a for i in (c,c+b)if i%a==0]:print(*d,sep="\n")
else:print(-1)
0