結果
問題 |
No.558 575検出するやつ
|
ユーザー |
|
提出日時 | 2019-03-01 20:22:10 |
言語 | Perl (5.40.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 126 bytes |
コンパイル時間 | 728 ms |
コンパイル使用メモリ | 5,760 KB |
実行使用メモリ | 5,888 KB |
最終ジャッジ日時 | 2024-06-23 12:10:51 |
合計ジャッジ時間 | 1,487 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 15 |
コンパイルメッセージ
Main.pl syntax OK
ソースコード
use strict; use warnings; my $str = <STDIN>; #chomp($str); if ($str =~ /575/) { print "YES"; } else { print "NO"; }