結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | k022c0077 |
提出日時 | 2024-05-17 15:18:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 402 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 29,696 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-17 15:18:57 |
合計ジャッジ時間 | 551 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include <stdio.h> int main() { int num1, num2, sum; // ユーザーに2つの数値の入力を促す printf("Enter first number: "); scanf("%d", &num1); printf("Enter second number: "); scanf("%d", &num2); // 2つの数値を加算する sum = num1 + num2; // 結果を表示する printf("The sum of %d and %d is %d\n", num1, num2, sum); return 0; }