結果
問題 |
No.1915 Addition
|
ユーザー |
|
提出日時 | 2022-06-04 05:55:53 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 106 bytes |
コンパイル時間 | 632 ms |
コンパイル使用メモリ | 76,680 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-21 03:35:55 |
合計ジャッジ時間 | 1,790 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 10 |
ソースコード
#include<iostream> using namespace std; int main(){ int t,n; cin>>t; while(cin>>n) cout<<n*2<<endl; }