結果

問題 No.9000 Hello World! (テスト用)
ユーザー しめはじめ
提出日時 2019-07-03 12:06:49
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 210 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 28,416 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-14 17:59:47
合計ジャッジ時間 573 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void){
    int cdata[12] = {72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100, 33};
    for( int i = 0; i <= 11; i++ ){
        printf( "%c", cdata[i] );
    }
    printf( "\n" );
}
0