結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | FF256grhy |
提出日時 | 2016-10-24 06:03:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 333 bytes |
コンパイル時間 | 213 ms |
コンパイル使用メモリ | 23,040 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-03 05:22:34 |
合計ジャッジ時間 | 705 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include <stdio.h> const int l = 50000; const int m = 5000; int main() { for(int i = 0; i < l; i++) { printf(i % 2 == 0 ? "A" : "B"); } printf("\n%d\n", m); char s[] = "ABABABABAB"; int c = 0; while(c < m) { printf("%s\n", s); int d = 9; while(s[d] == 'Z') { s[d] = 'A'; d--; } s[d]++; c++; } return 0; }