結果

問題 No.664 超能力者Aと株価予測
ユーザー 37zigen37zigen
提出日時 2018-03-09 23:10:11
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 1,541 ms
コンパイル使用メモリ 31,304 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-19 02:02:59
合計ジャッジ時間 3,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 RE -
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
      implicit none
      Integer::i,j,k,n,m
      Integer::arr(0:4)
      read*,n
      do i=0,n-1
            read*,arr(i)
            if(MOD(arr(i),80)==0)then
                  print*,"ikisugi"
            else if(MOD(arr(i),8)==0)then
                  print*,"iki"
            else if(MOD(arr(i),10)==0)then
                  print*,"sugi"
            else
                  print*,arr(i)/3
            end if
      end do
      
end program main
0