結果
| 問題 | No.9001 標準入出力の練習問題(テスト用) |
| ユーザー |
aaaaa
|
| 提出日時 | 2016-12-22 16:36:27 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 365 bytes |
| 記録 | |
| コンパイル時間 | 182 ms |
| コンパイル使用メモリ | 36,512 KB |
| 実行使用メモリ | 7,972 KB |
| 最終ジャッジ日時 | 2026-05-25 08:19:00 |
| 合計ジャッジ時間 | 771 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 2 |
ソースコード
#include <stdio.h> // scanfとprintfを使うおまじない
int main(int argc, char *argv[]){
int A, B;
char S[11];
// 標準入力から読み込む(空白や改行で勝手に区切ってくれる)
// 逆に空白込みの文字列を読み込む場合は別の方法で読む必要がある。
scanf("%d%d%s", &A, &B, S);
return 0;
}
aaaaa