結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー sorchsorch
提出日時 2021-01-01 09:18:00
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 30,740 KB
実行使用メモリ 31,224 KB
最終ジャッジ日時 2024-04-19 03:43:32
合計ジャッジ時間 1,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
30,968 KB
testcase_01 AC 40 ms
30,912 KB
testcase_02 AC 40 ms
30,760 KB
testcase_03 AC 40 ms
30,788 KB
testcase_04 AC 40 ms
30,912 KB
testcase_05 AC 40 ms
31,224 KB
testcase_06 AC 40 ms
30,896 KB
testcase_07 AC 40 ms
30,816 KB
testcase_08 AC 40 ms
30,812 KB
testcase_09 AC 40 ms
31,216 KB
testcase_10 AC 42 ms
31,072 KB
testcase_11 AC 41 ms
31,116 KB
testcase_12 AC 40 ms
30,820 KB
testcase_13 AC 40 ms
31,152 KB
testcase_14 AC 39 ms
30,796 KB
testcase_15 AC 39 ms
31,092 KB
testcase_16 AC 39 ms
30,712 KB
testcase_17 AC 40 ms
31,024 KB
testcase_18 AC 40 ms
30,940 KB
testcase_19 AC 42 ms
30,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

/**
 * @see https://yukicoder.me/problems/no/795
 */

$N = trim(fgets(STDIN)); //100yen coin
$M = trim(fgets(STDIN)); //10yen coin

echo "Yes" . "\n";
0