結果

問題 No.293 4>7の世界
ユーザー takatowintakatowin
提出日時 2018-01-03 23:54:41
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 964 ms
コンパイル使用メモリ 21,504 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-02 07:47:03
合計ジャッジ時間 1,105 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 0 ms
5,376 KB
testcase_05 AC 0 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 0 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 0 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 0 ms
5,376 KB
testcase_12 AC 0 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 0 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 0 ms
5,376 KB
testcase_20 AC 0 ms
5,376 KB
testcase_21 AC 0 ms
5,376 KB
testcase_22 AC 0 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:11: warning: format ‘%s’ expects argument of type ‘char *’, but argument 2 has type ‘char (*)[100]’ [-Wformat=]
    6 |   scanf("%s",&a);
      |          ~^  ~~
      |           |  |
      |           |  char (*)[100]
      |           char *
main.c:7:11: warning: format ‘%s’ expects argument of type ‘char *’, but argument 2 has type ‘char (*)[100]’ [-Wformat=]
    7 |   scanf("%s",&b);
      |          ~^  ~~
      |           |  |
      |           |  char (*)[100]
      |           char *
main.c:6:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |   scanf("%s",&a);
      |   ^~~~~~~~~~~~~~
main.c:7:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |   scanf("%s",&b);
      |   ^~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main(){
  char i,a[100],b[100];
  scanf("%s",&a);
  scanf("%s",&b);
  if(strlen(a)>strlen(b))
    puts(a);
  else if(strlen(a)<strlen(b))
    puts(b);
  else
    for(i=0;i<strlen(a);i++){
      if(a[i]=='7' && b[i]=='4'){
        puts(b);
        break;
      }else if(a[i]=='4' && b[i]=='7'){
        puts(a);
        break;
      }
      else if(a[i]>b[i]){
        puts(a);
        break;
      }else if(a[i]<b[i]){
        puts(b);
        break;
      }
    }
}
0