結果

問題 No.1088 A+B Problem
ユーザー Falcon_
提出日時 2020-12-13 00:21:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 70 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 63,296 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-19 22:35:31
合計ジャッジ時間 1,061 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 10
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:1:2: warning: #import is a deprecated GCC extension [-Wdeprecated]
    1 | #import<iostream>
      |  ^~~~~~
main.cpp:2:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    2 | main(){int a,b;std::cin>>a>>b;std::cout<<a+b<<"\n";}
      | ^~~~

ソースコード

diff #

#import<iostream>
main(){int a,b;std::cin>>a>>b;std::cout<<a+b<<"\n";}
0