結果
問題 | No.558 575検出するやつ |
ユーザー |
![]() |
提出日時 | 2017-06-18 13:56:10 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 183 bytes |
コンパイル時間 | 12,695 ms |
コンパイル使用メモリ | 239,868 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 19:57:24 |
合計ジャッジ時間 | 12,538 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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") } }