結果
| 問題 |
No.558 575検出するやつ
|
| コンテスト | |
| ユーザー |
atuk721
|
| 提出日時 | 2017-11-20 01:33:47 |
| 言語 | Go (1.23.4) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 193 bytes |
| コンパイル時間 | 16,230 ms |
| コンパイル使用メモリ | 221,692 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-26 00:42:45 |
| 合計ジャッジ時間 | 15,160 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / 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