結果

問題 No.3000 enuemu暗号
ユーザー 👑 p-adicp-adic
提出日時 2022-08-23 14:26:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,756 bytes
コンパイル時間 2,073 ms
コンパイル使用メモリ 196,012 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-19 05:39:04
合計ジャッジ時間 2,513 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

using uint = unsigned int;
using ll = long long;

#define CIN( LL , A ) LL A; cin >> A 
#define GETLINE( A ) string A; getline( cin , A ) 
#define GETLINE_SEPARATE( A , SEPARATOR ) string A; getline( cin , A , SEPARATOR ) 
#define FOR_LL( VAR , INITIAL , FINAL_PLUS_ONE ) for( ll VAR = INITIAL ; VAR < FINAL_PLUS_ONE ; VAR ++ ) 
#define FOR_ITR( ARRAY , ITR , END ) for( auto ITR = ARRAY .begin() , END = ARRAY .end() ; ITR != END ; ITR ++ ) 
#define REPEAT( HOW_MANY_TIMES ) FOR_LL( VARIABLE_FOR_REPEAT , 0 , HOW_MANY_TIMES ) 
#define RETURN( ANSWER ) cout << ( ANSWER ) << endl; return 0 
#define DOUBLE( PRECISION , ANSWER ) cout << fixed << setprecision( PRECISION ) << ( ANSWER ) << endl; return 0 
#define MIN( A , B ) A < B ? A : B;
#define MAX( A , B ) A < B ? B : A;
template <typename T> inline T Distance( const T& a , const T& b ){ return a < b ? b - a : a - b; }

int main(){
  CIN( string , S );
  ll size_S = S.size();
  string sample_imput = "pfnovuaxqwufmbgrihcdejkolsty";
  string sample_output = "orangecipherbqsuftlmdxynzvwj";
  ll size_sample = sample_imput.size();
  FOR_LL( i , 0 , size_S ){
    string c = S.substr( i , 1 );
    bool found = false;
    FOR_LL( j , 0 , size_sample ){
      if( c == sample_imput.substr( j , 1 ) ){
	cout << sample_output.substr( j , 1 );
	j = size_sample;
	found = true;
      }
    }
    if( ! found ){
      FOR_LL( k , 0 , size_sample ){
	found = false;
	string d = sample_imput.substr( k , 1 );
	FOR_LL( j , 0 , size_sample ){
	  if( d == sample_output.substr( j , 1 ) ){
	    j = size_sample;
	    found = true;
	  }
	}
	if( ! found ){
	  cout << d;
	  k = size_sample;
	}
      }
      if( found ){
	cout << c;
      }
    }
  }
  RETURN( "" );
}
0