結果

問題 No.632 穴埋め門松列
ユーザー motimoti
提出日時 2018-05-20 08:21:59
言語 Perl
(5.40.0)
結果
AC  
実行時間 7 ms / 1,000 ms
コード長 207 bytes
コンパイル時間 32 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 14:33:09
合計ジャッジ時間 525 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,816 KB
testcase_01 AC 6 ms
6,940 KB
testcase_02 AC 6 ms
6,944 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 7 ms
6,940 KB
testcase_05 AC 6 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/env perl

use strict;
use warnings;

my @cs = split / /,<>;
chomp$cs[2];
if ($cs[0] eq '?' || $cs[2] eq '?'){
  if ($cs[1] eq '2') {
    print 4;
  } else {
    print 1;
  }
}
else {
  print 14
}
0