結果
問題 | No.1367 文字列門松 |
ユーザー | ks2m |
提出日時 | 2021-01-29 21:36:24 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 126 ms / 2,000 ms |
コード長 | 473 bytes |
コンパイル時間 | 2,158 ms |
コンパイル使用メモリ | 74,532 KB |
実行使用メモリ | 41,696 KB |
最終ジャッジ日時 | 2024-06-27 07:45:54 |
合計ジャッジ時間 | 6,532 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); char[] s = sc.next().toCharArray(); sc.close(); char[] t = "kadomatsu".toCharArray(); int j = 0; for (int i = 0; i < t.length; i++) { if (j == s.length) { break; } if (s[j] == t[i]) { j++; } } if (j == s.length) { System.out.println("Yes"); } else { System.out.println("No"); } } }