結果

問題 No.2086 A+B問題
ユーザー tamura2004tamura2004
提出日時 2022-10-01 20:13:18
言語 Crystal
(1.11.2)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 70 bytes
コンパイル時間 20,832 ms
コンパイル使用メモリ 263,888 KB
実行使用メモリ 4,932 KB
最終ジャッジ日時 2023-08-25 17:46:22
合計ジャッジ時間 21,966 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,896 KB
testcase_01 AC 3 ms
4,840 KB
testcase_02 AC 2 ms
4,788 KB
testcase_03 AC 2 ms
4,688 KB
testcase_04 AC 2 ms
4,752 KB
testcase_05 AC 2 ms
4,700 KB
testcase_06 AC 2 ms
4,776 KB
testcase_07 AC 3 ms
4,604 KB
testcase_08 AC 3 ms
4,784 KB
testcase_09 AC 2 ms
4,696 KB
testcase_10 AC 2 ms
4,700 KB
testcase_11 AC 2 ms
4,800 KB
testcase_12 AC 2 ms
4,640 KB
testcase_13 AC 2 ms
4,880 KB
testcase_14 AC 2 ms
4,808 KB
testcase_15 AC 2 ms
4,804 KB
testcase_16 AC 2 ms
4,796 KB
testcase_17 AC 3 ms
4,932 KB
testcase_18 AC 2 ms
4,900 KB
testcase_19 AC 3 ms
4,852 KB
testcase_20 AC 3 ms
4,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

require "big"

a = gets.to_s.to_big_i
b = gets.to_s.to_big_i
pp a + b
0