結果
問題 |
No.558 575検出するやつ
|
ユーザー |
|
提出日時 | 2021-03-19 22:08:13 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 387 bytes |
コンパイル時間 | 4,432 ms |
コンパイル使用メモリ | 74,432 KB |
実行使用メモリ | 50,376 KB |
最終ジャッジ日時 | 2024-11-18 22:39:59 |
合計ジャッジ時間 | 6,407 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 WA * 1 |
other | AC * 14 WA * 1 |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No00000558_Main { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); public static void main(String[] args) throws IOException { if(br.readLine().indexOf("575") > 0) { System.out.println("YES"); } else { System.out.println("NO"); } } }