結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー ID 21712ID 21712
提出日時 2024-12-16 10:19:23
言語 Go
(1.22.1)
結果
AC  
実行時間 532 ms / 1,000 ms
コード長 187 bytes
コンパイル時間 12,401 ms
コンパイル使用メモリ 225,428 KB
実行使用メモリ 7,640 KB
最終ジャッジ日時 2024-12-16 10:19:48
合計ジャッジ時間 20,829 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 434 ms
6,816 KB
testcase_14 AC 368 ms
6,816 KB
testcase_15 AC 45 ms
6,816 KB
testcase_16 AC 181 ms
6,816 KB
testcase_17 AC 452 ms
6,820 KB
testcase_18 AC 277 ms
6,816 KB
testcase_19 AC 465 ms
7,640 KB
testcase_20 AC 287 ms
6,820 KB
testcase_21 AC 276 ms
6,820 KB
testcase_22 AC 390 ms
6,820 KB
testcase_23 AC 481 ms
7,636 KB
testcase_24 AC 524 ms
7,640 KB
testcase_25 AC 487 ms
7,640 KB
testcase_26 AC 485 ms
7,636 KB
testcase_27 AC 532 ms
7,636 KB
testcase_28 AC 476 ms
7,636 KB
testcase_29 AC 510 ms
7,636 KB
testcase_30 AC 486 ms
7,636 KB
testcase_31 AC 473 ms
7,636 KB
testcase_32 AC 483 ms
7,640 KB
testcase_33 AC 450 ms
7,636 KB
testcase_34 AC 486 ms
7,636 KB
testcase_35 AC 1 ms
6,824 KB
testcase_36 AC 1 ms
6,816 KB
testcase_37 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "strings"

func main() {
	var s string
	Scan(&s)
	t:=Trim(s,s[:1])
	if len(t)==1 {
		k:=Index(s,t)+1
		Println(k,t)
	} else {
		Println(1,s[:1])
	}
}
0