結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー kuroi_13kuroi_13
提出日時 2017-01-27 21:00:30
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 235 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-06 04:28:02
合計ジャッジ時間 881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,888 KB
testcase_01 AC 6 ms
5,888 KB
testcase_02 AC 5 ms
5,760 KB
testcase_03 WA -
testcase_04 AC 5 ms
5,888 KB
testcase_05 AC 5 ms
5,760 KB
testcase_06 AC 5 ms
5,760 KB
testcase_07 AC 5 ms
5,760 KB
testcase_08 AC 5 ms
5,888 KB
testcase_09 AC 5 ms
5,760 KB
testcase_10 AC 5 ms
5,888 KB
testcase_11 AC 5 ms
5,888 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;

my($a, $b) = (<>, <>);
my $ans = 'OK';

if($a > 12345 or $b > 12345){
    $ans = 'NG';
}
if($a =! m/\d/g or $b =! m/\d/g){
    $ans  = 'NG';
}
if($a =~ m/0\d/ or $b =~ m/0\d/){
    $ans = 'NG';
}

print $ans;
0