結果
| 問題 |
No.2216 Pa1indr0me
|
| コンテスト | |
| ユーザー |
chro_96
|
| 提出日時 | 2023-02-17 21:28:33 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 229 bytes |
| コンパイル時間 | 1,281 ms |
| コンパイル使用メモリ | 27,904 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-19 12:29:43 |
| 合計ジャッジ時間 | 516 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 3 |
ソースコード
#include <stdio.h>
int main () {
int t = 0;
int res = 0;
res = scanf("%d", &t);
while (t > 0) {
long long n = 0LL;
res = scanf("%lld", &n);
printf("%lld\n", n*(n+1LL));
t--;
}
return 0;
}
chro_96