結果

問題 No.3062 A + B
ユーザー shi-moshi-mo
提出日時 2020-10-01 01:44:36
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 46 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 11,352 KB
実行使用メモリ 15,316 KB
最終ジャッジ日時 2023-09-20 22:02:50
合計ジャッジ時間 1,851 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 79 ms
15,112 KB
testcase_04 AC 81 ms
15,132 KB
testcase_05 WA -
testcase_06 AC 81 ms
15,176 KB
testcase_07 WA -
testcase_08 AC 81 ms
15,032 KB
testcase_09 AC 82 ms
15,088 KB
testcase_10 AC 81 ms
15,172 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a, b = gets.chomp.split
puts eval("#{a}+#{b}")
0