結果

問題 No.2947 Sing a Song
ユーザー ID 21712ID 21712
提出日時 2024-11-02 06:21:31
言語 Go
(1.22.1)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 12,497 ms
コンパイル使用メモリ 223,832 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-02 06:21:53
合計ジャッジ時間 18,661 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 4 ms
6,816 KB
testcase_02 AC 4 ms
6,816 KB
testcase_03 AC 22 ms
6,816 KB
testcase_04 AC 92 ms
6,816 KB
testcase_05 AC 37 ms
6,820 KB
testcase_06 AC 35 ms
6,820 KB
testcase_07 AC 40 ms
6,820 KB
testcase_08 AC 83 ms
6,820 KB
testcase_09 AC 11 ms
6,816 KB
testcase_10 AC 12 ms
6,820 KB
testcase_11 AC 8 ms
6,816 KB
testcase_12 AC 136 ms
6,816 KB
testcase_13 AC 150 ms
6,820 KB
testcase_14 AC 8 ms
6,816 KB
testcase_15 AC 37 ms
6,820 KB
testcase_16 AC 14 ms
6,820 KB
testcase_17 AC 39 ms
6,820 KB
testcase_18 AC 32 ms
6,820 KB
testcase_19 AC 37 ms
6,816 KB
testcase_20 AC 307 ms
6,820 KB
testcase_21 AC 18 ms
6,816 KB
testcase_22 AC 41 ms
6,816 KB
testcase_23 AC 174 ms
6,820 KB
testcase_24 AC 203 ms
6,816 KB
testcase_25 AC 100 ms
6,820 KB
testcase_26 AC 238 ms
6,816 KB
testcase_27 AC 395 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"


func main() {
	var n int
	var s,t string
	Scan(&n,&s,&t)
	b:=make([]int,len(t))
	const K int =2e5
	for i:=K;i>=0;i-- {
		c:=(i*len(s))%len(t)
		b[c]=i
	}
	for ;n>0;n-- {
		var a int
		Scan(&a)
		x:=a/len(s)
		y:=a-x*len(s)
		m:=y%len(t)
		if m!=0 {
			x-=b[len(t)-m]
			if x<0 {
				x=0
			}
			y=a-x*len(s)
		}
		y/=len(t)
		f:=false
		for ;x>0;x-- {
			if f {
				Print(" ")
			}
			f=true
			Print(s)
		}
		for ;y>0;y-- {
			if f {
				Print(" ")
			}
			f=true
			Print(t)
		}
		Println()
	}
	
}
0