結果

問題 No.9000 Hello World! (テスト用)
ユーザー ゆるく
提出日時 2015-01-27 03:10:02
言語 C90
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 114 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 19,456 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 03:19:52
合計ジャッジ時間 450 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main(void)
{
  for (int i = 0; i < 10; i++) {i++;}
  printf("Hello World!\n");
  return 0;
}
0