結果

問題 No.1699 Unfair RPS
ユーザー harurunharurun
提出日時 2021-09-13 21:26:52
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 68 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 137,340 KB
実行使用メモリ 146,884 KB
最終ジャッジ日時 2024-07-23 03:35:10
合計ジャッジ時間 5,353 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 362 ms
146,756 KB
testcase_01 AC 362 ms
146,508 KB
testcase_02 AC 365 ms
146,760 KB
testcase_03 AC 355 ms
146,884 KB
testcase_04 AC 360 ms
146,628 KB
testcase_05 AC 356 ms
146,764 KB
testcase_06 AC 359 ms
146,632 KB
testcase_07 AC 355 ms
146,752 KB
testcase_08 AC 357 ms
146,756 KB
testcase_09 AC 355 ms
146,760 KB
testcase_10 AC 365 ms
146,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

my ($b,$c)=get.words;
if $b==$c {
  say "Yes";
}else {
  say "No";
}
0