結果
問題 |
No.531 エヌスクミ島の平和協定
|
ユーザー |
![]() |
提出日時 | 2017-06-23 22:39:58 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 206 bytes |
コンパイル時間 | 220 ms |
コンパイル使用メモリ | 27,520 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 11:39:15 |
合計ジャッジ時間 | 1,240 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 33 WA * 4 |
ソースコード
#include <stdio.h> #include <stdlib.h> int main(){ int n, m; scanf("%d %d", &n, &m); if (n <= m) { printf("1\n"); } else { printf("-1\n"); } return EXIT_SUCCESS; }