結果
問題 | No.494 yukicoder |
ユーザー |
|
提出日時 | 2024-03-24 19:38:46 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 230 bytes |
コンパイル時間 | 9,633 ms |
コンパイル使用メモリ | 232,372 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-30 13:54:55 |
合計ジャッジ時間 | 10,552 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 7 |
ソースコード
// No.494 yukicoderpackage mainimport ("fmt""strings")func main() {var s stringfmt.Scan(&s)idx := strings.Index(s, "?")for i, r := range "yukicoder" {if i == idx {fmt.Println(string(r))break}}}