結果
問題 | No.558 575検出するやつ |
ユーザー |
![]() |
提出日時 | 2019-09-02 13:22:50 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 175 bytes |
コンパイル時間 | 11,125 ms |
コンパイル使用メモリ | 225,604 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-15 04:56:11 |
合計ジャッジ時間 | 11,109 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 15 |
ソースコード
package main import ( "fmt" "strings" ) func main() { var s string fmt.Scan(&s) if strings.Contains(s, "575") { fmt.Println("YES") } else { fmt.Println("NO") } }