結果

問題 No.773 コンテスト
ユーザー hirakich1000000007
提出日時 2019-04-01 13:42:59
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 28,160 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-24 23:39:08
合計ジャッジ時間 15,955 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2 TLE * 1
other WA * 17 TLE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
int main(void) {
    if (getpid() % 6 == 0) {
        puts("15");
    } else if (getpid() % 6 == 1) {
        for (;;);
    }
    return 0;
}
0