結果

問題 No.2306 [Cherry 5th Tune C] ウソツキタマシイ
ユーザー horiesinitihoriesiniti
提出日時 2023-07-03 10:20:57
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 192 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 88,508 KB
最終ジャッジ日時 2024-07-17 07:37:30
合計ジャッジ時間 6,847 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
19,228 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 156 ms
14,208 KB
testcase_03 AC 96 ms
12,288 KB
testcase_04 AC 180 ms
15,488 KB
testcase_05 AC 192 ms
16,640 KB
testcase_06 AC 195 ms
17,024 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:7: warning: assigned but unused variable - n
Main.rb:7: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

def f()
	return gets.split(" ").map{|e| e.to_i}
end
def g(xs)
	return xs.map{|e| e**2}.sum
end
n,m=f()
xs=f()
q=gets.to_i
q.times{
	c,k,d=f()
	xs[c-1],xs[d-1]=xs[c-1]-k,xs[d-1]+k
	puts g(xs)
}
0