結果

問題 No.264 じゃんけん
ユーザー sironekotorosironekotoro
提出日時 2018-11-16 14:45:29
言語 Perl
(5.38.2)
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 331 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 5,760 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-06-06 20:19:16
合計ジャッジ時間 696 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

use strict;
use warnings;

# my $line = "2 1";
my $line = <>;
chomp $line;

my ( $self, $rival ) = split / /, $line;

if ( $self == $rival ) {
    print "Drew\n";
}
elsif (( $self == 0 and $rival == 1 )
    or ( $self == 1 and $rival == 2 )
    or ( $self == 2 and $rival == 0 ) )
{
    print "Won\n";
}else {
    print "Lost\n"
}
0