結果

問題 No.1699 Unfair RPS
ユーザー harurunharurun
提出日時 2021-09-13 21:26:52
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 68 bytes
コンパイル時間 1,535 ms
コンパイル使用メモリ 118,120 KB
実行使用メモリ 127,192 KB
最終ジャッジ日時 2023-09-30 09:32:10
合計ジャッジ時間 6,460 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 356 ms
126,892 KB
testcase_01 AC 380 ms
126,592 KB
testcase_02 AC 369 ms
127,156 KB
testcase_03 AC 363 ms
126,716 KB
testcase_04 AC 365 ms
126,608 KB
testcase_05 AC 367 ms
127,192 KB
testcase_06 AC 375 ms
127,076 KB
testcase_07 AC 366 ms
126,872 KB
testcase_08 AC 364 ms
126,772 KB
testcase_09 AC 358 ms
126,940 KB
testcase_10 AC 364 ms
127,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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