結果

問題 No.1926 Sequence of Remainders
ユーザー scrappyscrappy
提出日時 2022-10-18 16:59:06
言語 Go
(1.23.4)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 16,338 ms
コンパイル使用メモリ 229,460 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-06-29 00:29:58
合計ジャッジ時間 28,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 171 ms
5,888 KB
testcase_02 AC 176 ms
5,888 KB
testcase_03 AC 172 ms
5,888 KB
testcase_04 AC 170 ms
5,888 KB
testcase_05 AC 172 ms
5,888 KB
testcase_06 AC 195 ms
6,016 KB
testcase_07 AC 191 ms
6,016 KB
testcase_08 AC 191 ms
6,016 KB
testcase_09 AC 187 ms
6,016 KB
testcase_10 AC 189 ms
6,016 KB
testcase_11 AC 189 ms
6,144 KB
testcase_12 AC 189 ms
6,016 KB
testcase_13 AC 189 ms
6,016 KB
testcase_14 AC 188 ms
6,016 KB
testcase_15 AC 186 ms
6,016 KB
testcase_16 AC 188 ms
6,016 KB
testcase_17 AC 190 ms
6,016 KB
testcase_18 AC 188 ms
6,016 KB
testcase_19 AC 189 ms
6,016 KB
testcase_20 AC 188 ms
6,016 KB
testcase_21 AC 191 ms
6,144 KB
testcase_22 AC 188 ms
6,016 KB
testcase_23 AC 187 ms
6,016 KB
testcase_24 AC 189 ms
6,016 KB
testcase_25 AC 189 ms
6,016 KB
testcase_26 AC 192 ms
6,016 KB
testcase_27 AC 191 ms
6,016 KB
testcase_28 AC 188 ms
6,016 KB
testcase_29 AC 187 ms
6,016 KB
testcase_30 AC 192 ms
6,016 KB
testcase_31 AC 191 ms
6,016 KB
testcase_32 AC 191 ms
6,016 KB
testcase_33 AC 191 ms
6,016 KB
testcase_34 AC 193 ms
6,016 KB
testcase_35 AC 189 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
	"strings"
)

func main() {
	sc := bufio.NewScanner(os.Stdin)
	sc.Scan()
	T, _ := strconv.Atoi(sc.Text())
	for t := 0; t < T; t++ {
		sc.Scan()
		ss := strings.Fields(sc.Text())
		N, _ := strconv.Atoi(ss[0])
		M, _ := strconv.Atoi(ss[1])
		K, _ := strconv.Atoi(ss[2])

		a := K % M
		if N >= M-a {
			a = 0
		}
		fmt.Println(a)
	}
}
0