結果

問題 No.360 増加門松列
コンテスト
ユーザー yfujita0929
提出日時 2016-04-18 00:02:32
言語 C90(gcc12)
(gcc 12.4.0)
コンパイル:
gcc-12 -O2 -std=c90 -DONLINE_JUDGE -o a.out _filename_ -lm
実行:
./a.out
結果
WA  
実行時間 -
コード長 276 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 143 ms
コンパイル使用メモリ 27,592 KB
最終ジャッジ日時 2026-02-23 21:08:39
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8 WA * 14
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <stdio.h>
#include <stdlib.h>

#define SIZE 7

void swap(int shift, int *arr, int size);
void sort(int *arr, int size);
int max(int a, int b, int c);
int min(int a, int b, int c);
int isIncKadomatsu(int a, int b, int c);

int main(void) {
printf("YES\n");
return 0;
}
0