結果
問題 | No.2699 Simple Math (Returned) |
ユーザー | tails |
提出日時 | 2024-03-29 21:05:23 |
言語 | Perl (5.38.2) |
結果 |
OLE
|
実行時間 | - |
コード長 | 113 bytes |
コンパイル時間 | 548 ms |
コンパイル使用メモリ | 5,760 KB |
実行使用メモリ | 35,456 KB |
最終ジャッジ日時 | 2024-09-30 15:24:55 |
合計ジャッジ時間 | 7,164 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
5,888 KB |
testcase_01 | AC | 950 ms
35,456 KB |
testcase_02 | OLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
コンパイルメッセージ
Main.pl syntax OK
ソースコード
<>; for(<>){ ($n,$m)=glob; $n%=$m*2; if($n<$m){ $z=9x$n||0; }else{ $z=9x$m.0 x($n-$m); } print$z,$/; }