結果

問題 No.538 N.G.S.
ユーザー kohei2019kohei2019
提出日時 2022-02-07 22:00:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 82 bytes
コンパイル時間 1,790 ms
コンパイル使用メモリ 86,500 KB
実行使用メモリ 71,380 KB
最終ジャッジ日時 2023-09-04 11:41:56
合計ジャッジ時間 7,405 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,380 KB
testcase_01 AC 76 ms
71,012 KB
testcase_02 AC 75 ms
71,004 KB
testcase_03 AC 74 ms
71,092 KB
testcase_04 AC 75 ms
70,912 KB
testcase_05 AC 74 ms
71,024 KB
testcase_06 AC 74 ms
70,964 KB
testcase_07 AC 74 ms
71,076 KB
testcase_08 AC 74 ms
71,040 KB
testcase_09 AC 74 ms
71,044 KB
testcase_10 AC 75 ms
71,056 KB
testcase_11 AC 75 ms
71,240 KB
testcase_12 AC 75 ms
70,984 KB
testcase_13 AC 76 ms
71,124 KB
testcase_14 AC 74 ms
71,020 KB
testcase_15 AC 76 ms
71,044 KB
testcase_16 AC 75 ms
70,908 KB
testcase_17 AC 74 ms
71,104 KB
testcase_18 AC 74 ms
71,104 KB
testcase_19 AC 75 ms
71,008 KB
testcase_20 AC 75 ms
71,056 KB
testcase_21 AC 74 ms
71,076 KB
testcase_22 AC 74 ms
71,352 KB
testcase_23 AC 76 ms
71,008 KB
testcase_24 AC 76 ms
71,128 KB
testcase_25 AC 76 ms
70,780 KB
testcase_26 AC 74 ms
71,124 KB
testcase_27 AC 75 ms
71,364 KB
testcase_28 AC 75 ms
71,252 KB
testcase_29 AC 72 ms
71,240 KB
testcase_30 AC 73 ms
71,052 KB
testcase_31 AC 74 ms
71,324 KB
testcase_32 AC 73 ms
70,980 KB
testcase_33 AC 74 ms
71,048 KB
testcase_34 AC 73 ms
71,000 KB
testcase_35 AC 75 ms
71,244 KB
testcase_36 AC 76 ms
70,952 KB
testcase_37 AC 74 ms
71,248 KB
testcase_38 AC 74 ms
71,012 KB
testcase_39 AC 74 ms
71,012 KB
testcase_40 AC 75 ms
71,008 KB
testcase_41 AC 73 ms
71,120 KB
testcase_42 AC 75 ms
70,964 KB
testcase_43 AC 75 ms
70,900 KB
testcase_44 AC 73 ms
71,056 KB
testcase_45 AC 74 ms
70,980 KB
testcase_46 AC 75 ms
71,004 KB
testcase_47 AC 73 ms
70,984 KB
testcase_48 AC 74 ms
71,016 KB
testcase_49 AC 75 ms
71,340 KB
testcase_50 AC 74 ms
70,996 KB
testcase_51 AC 74 ms
71,016 KB
testcase_52 AC 78 ms
71,060 KB
testcase_53 AC 74 ms
71,040 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c = map(int,input().split())
r = (c-b)/(b-a)
ans = c + r*(c-b)
print(int(ans))
0