結果

問題 No.2879 Range Flip Queries
ユーザー ID 21712ID 21712
提出日時 2024-11-03 21:25:45
言語 Go
(1.22.1)
結果
AC  
実行時間 737 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 11,617 ms
コンパイル使用メモリ 221,108 KB
実行使用メモリ 26,612 KB
最終ジャッジ日時 2024-11-03 21:26:15
合計ジャッジ時間 29,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 257 ms
7,836 KB
testcase_04 AC 258 ms
7,840 KB
testcase_05 AC 258 ms
7,840 KB
testcase_06 AC 264 ms
7,836 KB
testcase_07 AC 259 ms
7,840 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 547 ms
18,340 KB
testcase_14 AC 586 ms
18,324 KB
testcase_15 AC 417 ms
10,020 KB
testcase_16 AC 172 ms
9,868 KB
testcase_17 AC 409 ms
18,100 KB
testcase_18 AC 701 ms
26,608 KB
testcase_19 AC 723 ms
26,604 KB
testcase_20 AC 711 ms
26,612 KB
testcase_21 AC 716 ms
26,600 KB
testcase_22 AC 721 ms
26,608 KB
testcase_23 AC 696 ms
26,604 KB
testcase_24 AC 733 ms
26,604 KB
testcase_25 AC 718 ms
26,600 KB
testcase_26 AC 707 ms
26,600 KB
testcase_27 AC 737 ms
26,600 KB
testcase_28 AC 705 ms
26,604 KB
testcase_29 AC 536 ms
26,608 KB
testcase_30 AC 540 ms
26,600 KB
testcase_31 AC 561 ms
26,596 KB
testcase_32 AC 538 ms
26,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	wr:=bf.NewWriter(Stdout)
	var n,q int
	Fscan(rd,&n,&q)
	a:=make([]int,n)
	for i:=range a {
		Fscan(rd,&a[i])
	}
	s:=make([]int,n)
	e:=make([]int,n)
	for ;q>0;q-- {
		var l,r int
		Fscan(rd,&l,&r)
		s[l-1]++
		e[r-1]++
	}
	c:=0
	for i,v:=range a {
		c+=s[i]
		if i>0 {
			Fprint(wr," ")
		}
		Fprint(wr,(v+c)%2)
		c-=e[i]
	}
	Fprintln(wr)
	wr.Flush()
}
0