結果
| 問題 |
No.558 575検出するやつ
|
| コンテスト | |
| ユーザー |
atuk721
|
| 提出日時 | 2017-11-20 01:34:49 |
| 言語 | Go (1.23.4) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 191 bytes |
| コンパイル時間 | 14,158 ms |
| コンパイル使用メモリ | 236,520 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-26 00:44:07 |
| 合計ジャッジ時間 | 13,680 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 5 |
| other | RE * 15 |
ソースコード
package main
import (
"fmt"
"os"
"strings"
)
func main() {
input := os.Args[1]
if strings.Contains(input, "575") {
fmt.Printf("YES\n")
} else {
fmt.Printf("NO\n")
}
}
atuk721